Facebook Pixel
Mathos AI logo

Parametric Equations

Parametric Equations

In standard algebra, we usually describe a curve using a single equation relating xx and yy, such as y=f(x)y = f(x). However, sometimes it is more useful to describe both xx and yy in terms of a third, independent variable called a parameter (usually denoted as tt).

Instead of one equation, a parametric curve is defined by a pair of equations: x=f(t)x = f(t) y=g(t)y = g(t)

As the parameter tt changes, it generates a set of (x,y)(x, y) coordinates that trace out a curve. This is especially useful in physics for modeling projectile motion or circular paths, where tt represents time. Parametric equations tell us not just where an object goes, but when it gets there.

Eliminating the Parameter

To understand the shape of a parametric curve, it often helps to convert it back into a standard rectangular (Cartesian) equation containing only xx and yy. This process is called eliminating the parameter.

Example: Eliminate the parameter from x=2t+1x = 2t + 1 and y=t23y = t^2 - 3.

Step 1: Solve for tt in one of the equations. It is usually easiest to pick the simpler linear equation. Let's solve the xx equation for tt: x=2t+1x = 2t + 1 x1=2tx - 1 = 2t t=x12t = \frac{x - 1}{2}

Step 2: Substitute this expression for tt into the other equation. y=(x12)23y = \left(\frac{x - 1}{2}\right)^2 - 3

Step 3: Simplify. y=(x1)243y = \frac{(x - 1)^2}{4} - 3

By eliminating the parameter, we can easily see that this curve is a parabola opening upwards.

Parametric Equations for Circles

Parametric equations are incredibly powerful for defining shapes that fail the vertical line test, like circles. We can model a circular path using trigonometric functions.

The general parametric equations for a circle centered at the origin (0,0)(0,0) with radius rr are: x=rcos(t)x = r \cos(t) y=rsin(t)y = r \sin(t) (where 0t2π0 \le t \le 2\pi to trace the full circle once)

Example: Write parametric equations for a circle of radius 44 centered at the origin.

Simply plug the radius r=4r = 4 into the general formulas: x=4cos(t)x = 4 \cos(t) y=4sin(t)y = 4 \sin(t)

We can verify this represents a circle by eliminating the parameter using the Pythagorean identity cos2(t)+sin2(t)=1\cos^2(t) + \sin^2(t) = 1:

  1. Isolate the trig functions: cos(t)=x4\cos(t) = \frac{x}{4} and sin(t)=y4\sin(t) = \frac{y}{4}.
  2. Substitute into the identity: (x4)2+(y4)2=1\left(\frac{x}{4}\right)^2 + \left(\frac{y}{4}\right)^2 = 1 x216+y216=1\frac{x^2}{16} + \frac{y^2}{16} = 1 x2+y2=16x^2 + y^2 = 16

This matches the standard rectangular equation for a circle of radius 4!