Fiveable

๐Ÿ“ˆCollege Algebra Unit 10 Review

QR code for College Algebra practice questions

10.6 Parametric Equations

10.6 Parametric Equations

Written by the Fiveable Content Team โ€ข Last updated August 2025
Written by the Fiveable Content Team โ€ข Last updated August 2025
๐Ÿ“ˆCollege Algebra
Unit & Topic Study Guides

Parametric equations let you describe curves by defining xx and yy separately as functions of a third variable (usually tt). Instead of writing yy directly in terms of xx, you let both coordinates depend on a parameter, which makes it much easier to represent motion, direction, and curves that loop or cross themselves.

This approach is especially useful for modeling projectile motion, orbits, and other situations where position changes over time. It also shows up in computer graphics and animation. For a College Algebra course, the focus is on understanding what parametric equations are, how to graph them, and how to convert between parametric and rectangular form.

Parametric Equations

Parametric vs rectangular equations

A rectangular equation relates xx and yy directly, like y=x2+3y = x^2 + 3 or x2+y2=25x^2 + y^2 = 25. You get one equation connecting the two variables.

A parametric equation introduces a third variable, the parameter tt, and defines each coordinate as its own function:

  • x=f(t)x = f(t)
  • y=g(t)y = g(t)

As tt changes, the pair (x,y)(x, y) traces out a curve. The parameter tt often represents time, but it can also represent an angle or any other quantity.

Why bother? Some curves are awkward or impossible to write as a single rectangular equation. A circle like x2+y2=9x^2 + y^2 = 9 isn't a function of xx (it fails the vertical line test), but parametrically it's clean: x=3cosโก(t)x = 3\cos(t), y=3sinโก(t)y = 3\sin(t). Parametric form also naturally encodes direction, telling you which way the curve is traced as tt increases.

Parametric vs rectangular equations, Parametric Equations โ€“ Algebra and Trigonometry OpenStax

Graphing parametric curves

The most reliable way to graph a parametric curve by hand:

  1. Build a table. Choose several values of tt (often evenly spaced). Plug each into the equations for xx and yy to get coordinate pairs.
  2. Plot the points. Place each (x,y)(x, y) pair on the coordinate plane.
  3. Connect in order. Draw the curve by connecting points in the order of increasing tt. Add arrows to show the direction of travel.

For example, given x=t+1x = t + 1 and y=t2y = t^2:

ttxxyy
โˆ’2-2โˆ’1-144
โˆ’1-10011
001100
112211
223344

Plotting these gives a parabola opening upward, traced from left to right as tt increases.

A few things to watch for:

  • Direction: The arrows matter. For x=cosโก(t)x = \cos(t), y=sinโก(t)y = \sin(t), the circle is traced counterclockwise.
  • Self-intersections: The curve can cross itself if different tt values produce the same (x,y)(x, y) point.
  • Restricted domain: Sometimes tt is limited to an interval, so you only get part of the curve.
Parametric vs rectangular equations, Parametric Equations: Graphs ยท Algebra and Trigonometry

Eliminating the parameter

Converting from parametric to rectangular form is called eliminating the parameter. This helps you recognize the shape of the curve.

  1. Solve one equation for tt. Pick whichever equation is simpler. For x=t+1x = t + 1, you get t=xโˆ’1t = x - 1.

  2. Substitute into the other equation. Replace tt in the yy equation: y=(xโˆ’1)2y = (x - 1)^2.

  3. Simplify. Now you have a rectangular equation you can analyze directly.

For trig parametrics, use identities instead of solving for tt. If x=3cosโก(t)x = 3\cos(t) and y=3sinโก(t)y = 3\sin(t), you know cosโก2(t)+sinโก2(t)=1\cos^2(t) + \sin^2(t) = 1. So:

(x3)2+(y3)2=1\left(\frac{x}{3}\right)^2 + \left(\frac{y}{3}\right)^2 = 1

which simplifies to x2+y2=9x^2 + y^2 = 9, a circle of radius 3.

When you eliminate the parameter, you lose the direction and timing information. The rectangular equation tells you the shape but not how or when the curve is traced.

Applications of parametric equations

Parametric equations are a natural fit for any situation where position changes over time.

Projectile motion is the classic example. An object launched at speed v0v_0 and angle ฮธ\theta from ground level has:

  • x(t)=v0cosโก(ฮธ)โ‹…tx(t) = v_0 \cos(\theta) \cdot t
  • y(t)=v0sinโก(ฮธ)โ‹…tโˆ’12(32)t2y(t) = v_0 \sin(\theta) \cdot t - \frac{1}{2}(32)t^2

(using 32ย ft/s232 \text{ ft/s}^2 for gravity). At any time tt, you can find the object's exact position. You can also find when it hits the ground by setting y(t)=0y(t) = 0 and solving for tt.

Other applications include:

  • Planetary orbits: Elliptical paths are cleanly described with parametric trig equations
  • Lissajous figures: Curves formed by x=Asinโก(at)x = A\sin(at), y=Bsinโก(bt+ฮด)y = B\sin(bt + \delta), which model oscillations
  • Computer graphics: Curves in animation software and CAD programs are built from parametric equations (Bรฉzier curves, for instance)

Motion analysis with parametrics

If your course covers derivatives with parametric equations, here's how motion analysis works.

Velocity comes from the first derivatives:

  • Horizontal velocity: vx=dxdtv_x = \frac{dx}{dt}
  • Vertical velocity: vy=dydtv_y = \frac{dy}{dt}
  • Speed (how fast, regardless of direction): (dxdt)2+(dydt)2\sqrt{\left(\frac{dx}{dt}\right)^2 + \left(\frac{dy}{dt}\right)^2}

Acceleration comes from the second derivatives:

  • ax=d2xdt2a_x = \frac{d^2x}{dt^2}
  • ay=d2ydt2a_y = \frac{d^2y}{dt^2}

To analyze motion at a specific moment, plug that tt value into the position, velocity, and acceleration expressions. For instance, if x(t)=2tx(t) = 2t and y(t)=โˆ’16t2+48ty(t) = -16t^2 + 48t, then at t=1t = 1: position is (2,32)(2, 32), horizontal velocity is 22, and vertical velocity is โˆ’32(1)+48=16-32(1) + 48 = 16.

The slope of the tangent line to a parametric curve is:

dydx=dy/dtdx/dt\frac{dy}{dx} = \frac{dy/dt}{dx/dt}

This is useful for finding the direction of motion at any point along the curve.

Note: Arc length, tangential/normal acceleration components, and vector-valued functions are typically covered in calculus courses rather than College Algebra. If your course includes them, check with your instructor on the expected depth.