Chapter 3: Functions of Several Variables
Section 3.1: Functions and Their Graphs
Example 3.1.10
On the domain −2≤s,t≤2, graph the surface defined parametrically by the equations
x=3 t+s2,y=5 s−t2,z=s2+t2
Solution
Maple Solution - Interactive
The surface is defined parametrically via equations. Maple's tools for graphing a surface defined parametrically require a list of three expressions. The required graph can be obtained interactively in a syntax-free way by first constructing the list of three expressions. Then the Plot Builder can be invoked to draw a "3-D plot (parametric)".
Control-drag the sequence of equations. Context Panel: Substitute Into≻x,y,z
Context Panel: Plots≻Plot Builder≻3-D plot (parametric) Click "Edit" In "Basic Options", set −2≤s,t≤2 In "Axes and Text", set the label for axis[1] to x, for axis[2] to y, and for axis[3] to z
x=3 t+s2,y=5 s−t2,z=s2+t2→substitute intos2+3⁢t,−t2+5⁢s,s2+t2→
The resulting graph is Figure 3-1-10(a).
Maple Solution - Coded
The graph in Figure 3.1.10(b) is drawn with Maple's plot3d command.
The first argument to plot3d must be a list of expressions when the surface to be drawn is given parametrically.
The commands for obtaining Figure 3.1.10(b) via the plot3d command appear in Table 3.1.10(a). The eval command is first used to "convert" the sequence of equations into a list of expressions.
Specifying the number of tickmarks per axis leads to less clutter, as does specifying the frame option for the axes.
Figure 3.1.10(b) Graph of parametric surface
q≔evalx,y,z,x=3 t+s2,y=5 s−t2,z=s2+t2:plot3dq,s=−2..2,t=−2..2,labels=x,y,z,tickmarks=5,5,10,axes=frame,orientation=−40,70,0
Table 3.1.10(a) Syntax for obtaining Figure 3.1.10(b)
<< Previous Example Section 3.1 Next Example >>
© Maplesoft, a division of Waterloo Maple Inc., 2024. All rights reserved. This product is protected by copyright and distributed under licenses restricting its use, copying, distribution, and decompilation.
For more information on Maplesoft products and services, visit www.maplesoft.com
Download Help Document