0% found this document useful (0 votes)
131 views11 pages

Parametric Curves & Polar Coordinates

This document discusses parametric curves and polar coordinates. It introduces the parametric curve x(t)=cos(t) and y(t)=sin(t) as an example. Some key topics covered include graphing parametric curves, finding the slope of a parametric curve, finding points with a given slope, calculating the arc length and enclosed area of a parametric curve. It also discusses representing curves in polar coordinates and calculating the slope of a polar curve at a given point. Examples are provided throughout to illustrate each concept.

Uploaded by

Aleksandar Micic
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
131 views11 pages

Parametric Curves & Polar Coordinates

This document discusses parametric curves and polar coordinates. It introduces the parametric curve x(t)=cos(t) and y(t)=sin(t) as an example. Some key topics covered include graphing parametric curves, finding the slope of a parametric curve, finding points with a given slope, calculating the arc length and enclosed area of a parametric curve. It also discusses representing curves in polar coordinates and calculating the slope of a polar curve at a given point. Examples are provided throughout to illustrate each concept.

Uploaded by

Aleksandar Micic
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as PDF, TXT or read online on Scribd
You are on page 1/ 11

Parametric Curves and Polar Coordinates

Math 251, Fall 2011


J. Gerlach

Parametric Curves
We will investigate several aspects of parametric curves in the plane. The curve given by

and

will serve as an example throughout, and we begin by defining the curve once and for all.

(1.1)

Graphing
A simple modification of the plot command lets us graph a parametric curve: Enclose the two
curves and the range of the parameter in a single bracket.

0 1

The option scaling=constrained was added to obtain equal spacing on the coordinate axes.

Slope

Problem:

Solution: Finding the derivative is easily accomplished using the formula .


(1.2.1)

(1.2.3)

Thus the slope at is -2.

Graph of the Parametric Curve with a Tangent Line

Problem: in a common
figure.

Solution: The solution requires several steps. First we denote the point which corresponds to t=

(1.3.1)

that m was determined above)

(1.3.2)

(1.3.3)
Thus the tangent line has slope m=-2.

We have several options to obtain the curve and the tangent line in a common figure. For one we
could plot the curve and the tangent line separately and then superimpose the two with the
display command. This approach requires uploading the plots package, and we will not apply this
method here. As an alternative we can express the tangent line in parametric form and plot the
two curves simultaneously, and we will take this route. A third option will be shown below.
The tangent line y -Y = M(x-X) can be expressed in parametric form by setting x = t, and we get
y = Y +M(t-X)

This formula can be directly substituted into the plotting command. Result:

0 1

Note that in the plotting command the two parametric curves were enclosed by brackets and that
the command has the structure plot( [ [first curve] , [second curve] ], options);

The third option is more elegant. We compute the tangent lines for the two functions x(t) and y(t)

curve. Here are the details:

(1.3.4)

(1.3.5)

The next two pictures show that we indeed calculated ordinary tangent lines.

0
0 1 2 3
t
1

0
1 2 3
t

Viewed as parametric curve, the pair lx(t) and ly(t) becomes the tangent line of our curve.

0 1

Find Points with a Given Slope


Problem: Find the point in the first quadrant where the slope equals -1.

Solution: We set the slope dy/dx = m, and solve the equation m=-1 for t.

(1.4.1)

(1.4.2)

The first value appears to be the desired value for t, and we name it T (copy-and-paste)

(1.4.3)
Then the point with slope m=-1 is located at x(T) and y(T). These points are

(1.4.4)

(1.4.5)

Numerically the coordinates of the point with slope -1 are

0.8660254040
0.9550219348 (1.4.6)
Clearly, this point belongs to the first quadrant.

Find the Slopes at the Origin

Problem: What are the slopes as the curve passes through the origin?

Solution: First we need to find the value of the parameter when the curve passes through the
origin, that is, we must solve x(t)=0 and y(t)= 0 simultaneously.

(1.5.1)
We find two values. Check:

(1.5.2)
For the slopes we find:

2 (1.5.3)

(1.5.4)
Thus the slopes are +2 and -2.

Arc Length
Problem: What is the arc length of the curve?

Solution: We can implement the arc length formula directly, and we obtain using the templates on
the left

(1.6.1)
at 5 digits

9.4294
Maple couldn't find an analytic solution, and we accept a numerical approximation in its place.

Area
Problem: Find the area enclosed by the curve.

Solution: The area between a parametric curve and the x-axis can be computed as follows:

where and are to be selected to match the endpoints.


In our example we use symmetry, and multiply the area in the first quadrant by 4 to get the total

8
(1.7.1)
3

Polar Coordinates

curve. First, we define r once and for all

(2.1)

(2.2)

Polar Graphs
Plotting in polar coordinates requires the option coords=polar, everything else is pretty much the
same. This is the equivalent of setting your calculator to the polar function mode. Here is the
graph:
8
7
6
5
4
3
2
1

0 1 2 3 4
The plots package offers a nice alternative. In order to use it, we need to activate it first with the
command

Use a colon to avoid unnecessary output. Now we are ready to plot.

4 4

0
01234567

4 4

Slope at a Given Point


Problem: What is the slope of the curve at the point (x,y)=(3,0)?

Solution:
dy/dx we follow the usual procedure for parametric curves, this time with the diff command

(2.2.1)
(2.2.2)

And now we set t = 0

(2.2.3)

3
(2.2.4)
5
Thus the desired slope is 3/5.

Graph of the Polar Curve with a Tangent Line


Problem: Graph the curve along with its tangent line at the point (3,0) in a common figure.

Solution: We know from the last problem that the slope is 3/5, and using the point-slope form of a
line, the tangent line is given by

For the graph we have two alternatives: Either express the line in polar coordinates and use a
single ploting statement, or graph the two pieces separately and superimpose the graphs. We will
demonstrate both.

In polar coordinates the line becomes

(2.3.1)

and solving this equation for r we find

(2.3.2)

This is an expression for the tangent line in polar coordinates, and with a simple copy-and-paste
we obtain
8

0 2 4 6

The alternative requires the plotting package (which is already activated).

4 4

0
0 1 2 3 4 5 6 7
x

4 4

Slopes at the Origin


Problem: What are the slopes of the curve as it passes though the origin?

Solution: First we set r=0 to find the points where the curve passes through the origin.

(2.4.1)

This result is of limited use. But applying our knowledge of trigonometry we conclude that r(t)=0
for

Let's confirm this:

0 (2.4.2)

0 (2.4.3)
Now we calculate the slope at these points.

(2.4.4)

(2.4.5)

3
(2.4.6)
4

(2.4.7)

(2.4.8)

There is a Much easier way to determine the slope. We know from class that the slope is the
tangent of the respective angles.

3
4

(2.4.9)
Arc Length
Problem: Find the arc length of the curve.

Solution: Here we implement the familiar formula for the arc length of a polar curve directly, and
let maple do the work.

(2.5.1)

at 10 digits

34.31368713 (2.5.2)

The result involves special functions, but numerical evaluation leads to an acceptable result.

Area
Problem: Compute the area enclosed by the inner loop of the curve.

Solution: The inner part of the curve is traced when T1 < t < T2 (the numbers T1 and T2 were
found above). Using the area formula for polar curves we find that

(2.6.1)

1.93684719 (2.6.2)
The area is roughly two square units.

You might also like