Chapter 3: Functions of Several Variables
Section 3.3: Quadric Surfaces
|
Example 3.3.5
|
|
Put the equation into standard form for a quadric surface, identify the surface, draw its graph, and discuss the nature of the level curves and plane sections.
|
|
|
|
Solution
|
|
|
Mathematical Solution
|
|
•
|
The final frames in the animations in Figures 3.3.2(a, b) show a graph of the surface defined by the given equation,
|
whose standard form is
obtained by completing the square in and . The standard form is the equation of an ellipsoid with center .
•
|
The level curves, drawn on the surface of the ellipsoid, are the ellipses
|
•
|
The cross sections and are also ellipses, shown in Figures 3.3.5(a, b) where the animation sliders control the values of . Indeed, if , then the equation
|
defines ellipses in the -plane, seen in Figure 3.3.5(a). Likewise, the cross sections are the ellipses
defined in the -plane, and shown in Figure 3.3.5(b).
>
|
use plots in
module()
local q,p;
q:=(x-1)^2/9+(y+1)^2/16+(z-2)^2/4=1;
p:=animate(implicitplot3d,[q,x=-2.01..c,y=-5..3,z=0..4,style=surfacecontour],c=-2..4,frames=13,scaling=constrained,tickmarks=[8,8,5],orientation=[-50,60,0],axes=frame);
print(p);
end module:
end use:
|
|
Figure 3.3.5(a) Ellipsoid with cross sections
|
|
|
|
>
|
use plots in
module()
local q,p;
q:=(x-1)^2/9+(y+1)^2/16+(z-2)^2/4=1;
p:=animate(implicitplot3d,[q,x=-2...4,y=-5.01..c,z=0..4,style=surfacecontour],c=-5..3,frames=13,scaling=constrained,tickmarks=[8,8,5],orientation=[-50,60,0],axes=frame);
print(p);
end module:
end use:
|
|
Figure 3.3.5(b) Ellipsoid with cross sections
|
|
|
|
|
|
|
|
Maple Solution - Interactive
|
|
Obtain the standard form
|
•
|
Control-drag the given equation.
|
•
|
Context Panel: Manipulate Equation
|
•
|
Check the "Show steps stacked vertically" box.
|
•
|
Click the "Complete the square" button.
|
•
|
Add to both sides and multiply both sides as per the actions shown in the figure below.
|
•
|
Click the "Return Steps" button.
|
|
|
|
|
|
Obtain the equivalent of the surfaces in Figures 3.3.5(a, b)
|
•
|
Control-drag the given equation.
|
•
|
Context Panel: Plots≻Plot Builder≻3-D implicit plot
|
•
|
Set the ranges
style → surfacecontour
|
•
|
3-D Options≻grid → [25, 25, 25]
scaling → constrained
lightmodel → none
|
|
|
|
|
|
|
Maple Solution - Coded
|
|
Define so that the graph of is a quadric surface
|
|
Complete the square and put into standard form
|
| (1) |
| (2) |
| (3) |
|
Obtain the equivalent of the surfaces drawn in Figures 3.3.2(a, b)
|
|
|
|
|
|
|
<< Previous Example Section 3.3
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
|