Chapter 7: Additional Applications of Integration
Section 7.1: Polar Coordinates
|
Example 7.1.12
|
|
Graph the ellipse , and obtain the standard form of its Cartesian representation.
|
|
|
|
Solution
|
|
|
Mathematical Solution
|
|
•
|
If , the equation defines an ellipse.
|
•
|
Writing the given equation as
|
the values and can be immediately deduced. Hence, it follows that
|
|
|
|
|
|
>
|
use plots in
module()
local p1,p2,p3,p4,p5;
p1:=display(implicitplot(r = 5/(2+cos(t)),r=0..5,t=-Pi..Pi,coords=polar,gridrefine=3,color=red),labels=[x,y]):
p2:=plot([[-10/3,0],[0,0],[-5/3,0]],style=point,symbol=solidcircle,symbolsize=15,color=green):
p3:=plot([[-5/3,0]],style=point,symbol=solidcircle,symbolsize=15,color=blue):
p4:=textplot({[-10/3,.3,typeset(F[2])],[.15,.3,typeset(F[1])],[-5/3,.3,typeset(C)]}):
p5:=display(p1,p2,p3,p4,scaling=constrained);
print(p5);
end module:
end use:
|
|
Figure 7.1.12(a) Ellipse
|
|
|
|
|
|
•
|
Figure 7.1.12(a), a graph of this ellipse, includes the center as the blue dot, and (as green dots) the two foci: at the origin, and at . The standard form of the Cartesian representation of this ellipse, namely,
|
can be deduced from the figure and the computed values of , and .
|
|
Maple Solution
|
|
•
|
Figure 7.1.12(b) contains the relevant portion of the
tutor in which a graph and significant details of a conic are obtained.
|
•
|
The graph in Figure 7.1.12(b) has been modified by selecting Constrained Scaling. The vertical line on the right is the directrix, whose equation is .
|
•
|
The standard form for the Cartesian representation is provided, along with the values of the parameters , where is the center of the ellipse.
|
•
|
Note that the values of , and agree with those found in the Mathematical Solution. The latus rectum is the length of a focal chord perpendicular to the major axis.
|
•
|
The tutor, housed in the Student Precalculus package, can be obtained from the Tools/Tutors menu.
|
|
|
Figure 7.1.12(b) Conic Sections tutor
|
|
|
|
|
|
Figure 7.1.12(a), or the graph in Figure 7.1.12(b), can be obtained interactively with the Plot Builder, or with the following command. (Select Evaluate in the Context Panel.)
|
|
|
The direct algebraic conversion of the polar form of the ellipse to the standard form of the Cartesian representation is a tedious affair, made somewhat easier with two of Maple's tools, namely, the Context Panel and the Equation Manipulator (an Assistant).
•
|
Enter the polar form of the ellipse.
Press the Enter key.
|
•
|
Context Panel: Evaluate at a Point
r = sqrt(x^2+y^2)
theta = arctan(y,x)
|
•
|
Context Panel: Cross Multiply
|
•
|
Context Panel:
See Figure 7.1.12(c)
|
|
|
|
|
|
Figure 7.1.12(c) The Equation Manipulator
|
|
|
Table 7.1.12(a) lists the steps to perform in the Equation Manipulator.
Step
|
Result
|
Multiply equation by
|
|
Add to both sides
|
|
Square both sides
|
|
Group terms on left side
|
|
Apply simplify to left side
|
|
Complete the square on the left side
|
|
Add to equation
|
|
Multiply equation by
|
|
Table 7.1.12(a) Application of the Equation Manipulator
|
|
|
At this point, only pencil-and-paper suffices to obtain the final form, namely, .
|
|
|
<< Previous Example Section 7.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
|