Parametric Polar and Conic Curves
Parametric, polar, and conic descriptions give alternatives to writing a curve as . Parametric equations use a third variable, often time, to describe motion along a curve. Polar coordinates describe points by distance and angle. Conics describe curves such as parabolas, ellipses, and hyperbolas through geometric focus-directrix or algebraic relationships.
These descriptions are useful because many curves fail the vertical line test, loop back on themselves, or are naturally described by rotation. Calculus still applies, but derivatives, area, and arc length must be translated into the coordinate system being used.
Definitions
A parametrized plane curve is given by
where lies in an interval. The point on the curve is
If , then the slope of the tangent line is
The second derivative is
Polar coordinates represent a point by
A polar curve has form . Its area over is
Conic sections can be defined as sets of points whose distances from a focus and a directrix have constant ratio , the eccentricity. If , the conic is a parabola. If , it is an ellipse. If , it is a hyperbola.
Key results
For parametric curves, the tangent line at uses the point
and slope
when . If and , the tangent may be vertical.
Parametric arc length is
This is the integral of speed along the curve.
For polar curves, tangent slope can be found by treating and as parametric functions of :
Then
Polar area comes from sectors. A small sector with radius and angle has approximate area
which leads to the integral formula.
Standard conic equations centered at the origin include:
for an ellipse, and
for a horizontal hyperbola. A parabola with vertex at the origin and focus has equation
In polar form, a conic with focus at the pole can often be written
depending on the directrix orientation.
The slope formula for parametric curves follows directly from the chain rule. If is viewed as a function of along the curve and , then
When , solving gives
This also explains the vertical tangent case: if while , the curve is moving vertically in the plane.
Parametric equations can trace the same geometric curve more than once. The interval for is therefore part of the curve description. For example, , traces the unit circle once on , twice on , and only an arc on a shorter interval. When computing arc length or area, overtracing changes the accumulated value.
Polar symmetry can reduce work. If replacing by gives the same equation, the curve is symmetric about the polar axis. If replacing by gives the same equation, it is symmetric about the vertical axis. If replacing by gives the same equation, there is symmetry about the pole. Symmetry is helpful, but it should be verified against the actual tracing interval.
Conics connect algebra and geometry. Completing the square can reveal a shifted center or vertex. Eccentricity describes shape independent of scale: ellipses have eccentricity less than , circles have , parabolas have , and hyperbolas have eccentricity greater than . In orbital models, this eccentricity measures how far an orbit deviates from circular.
Arc length formulas also depend on the coordinate system. For a polar curve,
This comes from differentiating and , then using the parametric arc length formula with parameter .
Area for parametric curves can be computed from
when the orientation and region are appropriate. If the curve is closed, Green's Theorem later gives symmetric formulas such as
Even in single-variable calculus, the key is that becomes .
For conics, completing the square is the main algebraic skill. An equation such as
should be rewritten as
before classification. The center is , and the different coefficients reveal the semi-axis lengths. Without completing the square, shifted conics are easy to misread.
Polar equations can also represent the same point in multiple ways:
This nonuniqueness is useful but can create tracing errors. A table of key angles, zeros, and maximum radii often prevents double-counting.
Parameter orientation also affects signed quantities. If a curve is traversed in the opposite direction, a signed area integral such as may change sign, even though the geometric area is unchanged. Arc length is different because speed is nonnegative, so reversing the parameter interval does not change total length when handled with the correct bounds.
For conics, focus and directrix definitions are not just historical. They explain reflective properties: rays parallel to a parabola's axis reflect through the focus, and ellipses reflect rays from one focus to the other. These geometric properties are why conics appear in optics, satellite dishes, planetary motion, and whispering galleries.
Visual
| Representation | Coordinates | Strength | Calculus formula |
|---|---|---|---|
| Cartesian | single-output graphs | ||
| Parametric | motion and loops | ||
| Polar | rotation and radial symmetry | ||
| Conic | focus/directrix or quadratic equation | parabolas, ellipses, hyperbolas | tangents from implicit or parametric methods |
Worked example 1: tangent and concavity for a parametric curve
Problem. For
find and the tangent line at .
Method.
- Differentiate both coordinate functions:
- Form the parametric slope:
- Evaluate the point at :
- Evaluate the slope:
- Use point-slope form:
Checked answer. The tangent line is . Since at , the slope formula is valid there.
If we also want concavity at , differentiate the slope with respect to :
Then
Now divide by :
At , this equals
The curve is concave up at the tangent point.
Worked example 2: polar area
Problem. Find the area inside one petal of
Method.
- One petal is traced while between consecutive zeros:
- Use the polar area formula:
- Substitute :
- Use
Then
- Integrate:
- Evaluate:
Checked answer. One petal has area . The full curve has three petals, so the total area is .
The bounds are the most important part of this example. Integrating from to would count the three-petal rose more than once for some rose equations. A reliable approach is to find consecutive zeros of that enclose one traced loop and then use symmetry only after confirming how many distinct loops occur.
The maximum radius of this petal occurs when , so and . At that angle, , matching the midpoint of the interval .
Checking a midpoint angle is a quick way to confirm that the selected interval traces a full petal rather than only half of one.
Code
from math import sin, cos, pi
def polar_to_cartesian(r, theta):
return r * cos(theta), r * sin(theta)
def rose(theta):
return 2 * sin(3 * theta)
for k in range(4):
theta = k * pi / 9
print(theta, polar_to_cartesian(rose(theta), theta))
Common pitfalls
- Using as the slope of a parametric curve. The Cartesian slope is .
- Dividing by when without checking for a vertical tangent.
- Forgetting the factor in polar area.
- Integrating a polar curve over too large an interval and counting petals or loops more than once.
- Treating negative values as impossible. In polar coordinates, negative plots in the opposite direction.
- Classifying conics from equations without completing the square when the center is shifted.
Connections
- Derivatives and Rates: parametric tangents still come from derivative ratios.
- Applications of Integrals: polar area and parametric arc length are integral applications.
- Vectors and Geometry of Space: parametrized curves lead naturally to vector functions.
- Vector Functions and Motion: vector motion generalizes parametric curves to space.