Is it possible to plot several parametric surfaces simultaneously using Maxima?
2026-03-25 09:47:02.1774432022
Plottong several parametric surface in Maxima
864 Views Asked by Bumbble Comm https://math.techqa.club/user/bumbble-comm/detail At
1
There are 1 best solutions below
Related Questions in GRAPHING-FUNCTIONS
- Lower bound of bounded functions.
- Do Irrational Conjugates always come in pairs?
- Graph rotation: explanation of equation
- Plot function y = tan(yx)
- Sketching a lemniscate curve with a max function?
- 3 points on a graph
- show $f(x)=f^{-1}(x)=x-\ln(e^x-1)$
- What is this method of sketching a third degree curve?
- Getting a sense of $f(x) = x (\log x)^6$
- Can I describe an arbitrary graph?
Related Questions in PARAMETRIC
- Suggest parametric equations for a given curve
- Parametric Circle equations and intersections
- Is it possible to construct the equation of a surface from its line element?
- Finding the equation of aline in implicit form
- Finding whether a parametric curve has a well defined tangent at the origin
- Parametric representation of a cylinder generated by a straight line
- Converting circle parametric equation
- Finding the major and minor axes lengths of an ellipse given parametric equations
- Draw (2, 3) torus knot on the unwrapped torus surface
- Question about parametric, implicit equation and vector equation
Related Questions in MATH-SOFTWARE
- What do you think of this visual category theory tool? See any issues? Would you use it?
- Which software can check whether two algebras are isomorphic?
- Entry systems for math that are simpler than LaTeX
- Guess formula for sequence in FriCAS
- Projectile motion prolem
- Combine 3 items to total specific amounts
- Software to Draw Figures in Algebraic Topology
- Statistics Inverse Method in Rstudio
- Recommendation for math software?
- Are there Graph Theory Programs for generating graphs based on a set of constraints?
Related Questions in MAXIMA-SOFTWARE
- Wx Maxima output format
- Plotting a set in wxMaxima
- Generate a mathematical sequence of real numbers in Maxima
- Sagemath logarithm simplification
- Confusion about Heun's method for integration (or differentiation).
- Determining initial conditions for 2nd order non-homogenous differential equation
- solve an Isoperimetric problem in calculus of variation using Maxima open source.
- Maxima CAS Simplifying
- How to get Maxima to collapse expressions with i^2
- Attempting to solve a linear program using Maxima, but problem unbounded.
Trending Questions
- Induction on the number of equations
- How to convince a math teacher of this simple and obvious fact?
- Find $E[XY|Y+Z=1 ]$
- Refuting the Anti-Cantor Cranks
- What are imaginary numbers?
- Determine the adjoint of $\tilde Q(x)$ for $\tilde Q(x)u:=(Qu)(x)$ where $Q:U→L^2(Ω,ℝ^d$ is a Hilbert-Schmidt operator and $U$ is a Hilbert space
- Why does this innovative method of subtraction from a third grader always work?
- How do we know that the number $1$ is not equal to the number $-1$?
- What are the Implications of having VΩ as a model for a theory?
- Defining a Galois Field based on primitive element versus polynomial?
- Can't find the relationship between two columns of numbers. Please Help
- Is computer science a branch of mathematics?
- Is there a bijection of $\mathbb{R}^n$ with itself such that the forward map is connected but the inverse is not?
- Identification of a quadrilateral as a trapezoid, rectangle, or square
- Generator of inertia group in function field extension
Popular # Hahtags
second-order-logic
numerical-methods
puzzle
logic
probability
number-theory
winding-number
real-analysis
integration
calculus
complex-analysis
sequences-and-series
proof-writing
set-theory
functions
homotopy-theory
elementary-number-theory
ordinary-differential-equations
circles
derivatives
game-theory
definite-integrals
elementary-set-theory
limits
multivariable-calculus
geometry
algebraic-number-theory
proof-verification
partial-derivative
algebra-precalculus
Popular Questions
- What is the integral of 1/x?
- How many squares actually ARE in this picture? Is this a trick question with no right answer?
- Is a matrix multiplied with its transpose something special?
- What is the difference between independent and mutually exclusive events?
- Visually stunning math concepts which are easy to explain
- taylor series of $\ln(1+x)$?
- How to tell if a set of vectors spans a space?
- Calculus question taking derivative to find horizontal tangent line
- How to determine if a function is one-to-one?
- Determine if vectors are linearly independent
- What does it mean to have a determinant equal to zero?
- Is this Batman equation for real?
- How to find perpendicular vector to another vector?
- How to find mean and median from histogram
- How many sides does a circle have?
Yes it is possible to plot several parametric surfaces with Maxima.
Let be $3N$ parametric functions:
$f_{i,w}(u,v), i =1..N, w =x,y,z.$
and $2N$ ranges:
$[t,t_{min,i},t_{max,i}], i =1..N, t=u,v$
For plotting just the $ith$ parametric surface (you know) you have to
$plot3d( [f_{i,x}(u,v), f_{i,y}(u,v), f_{i,z}(u,v)$],$[u,u_{min,i},u_{max,i}], [v,v_{min,i},v_{max,i}]$ ).
Well, for plotting the $N$ parametric surfaces, just enclose them into square brackets separated by commas:
$plot3d( [ [f_{1,x}(u,v), f_{1,y}(u,v), f_{1,z}(u,v)],[u,u_{min,1},u_{max,1}], [v,v_{min,1},v_{max,1}], [f_{2,x}(u,v), f_{2,y}(u,v), f_{2,z}(u,v)],[u,u_{min,2},u_{max,2}], [v,v_{min,2},v_{max,2}],...,[f_{N,x}(u,v), f_{N,y}(u,v), f_{N,z}(u,v)],[u,u_{min,N},u_{max,N}], [v,v_{min,N},v_{max,N}]]$ )