Parametric Equations

In standard rectangular (Cartesian) and polar coordinate systems, mathematical equations usually lock one variable dependently to another (e.g., yy is purely a function of xx, written as y=f(x)y = f(x), or r=f(θ)r = f(\theta)). While this is useful for static shapes, it is highly restrictive when trying to model dynamic real-world scenarios. Many complex geometric curves and kinematic motions (like a projectile flying through the air or a point on a spinning tire) are far better described by completely separating the horizontal and vertical axes. We achieve this by independently expressing both the xx position and the yy position as individual, separate functions of a third, completely independent control variable. This controlling variable is formally known as a parameter (most commonly denoted by tt to represent time, or θ\theta to represent a sweeping angle).

Parametric Curve: Ellipse

x = 5 cos(t), y = 3 sin(t)

Definition

A set of parametric equations defines the explicit geometric coordinates xx and yy of a moving point on a curve as two distinct, independent mathematical functions of a shared, underlying parameter tt.

Parametric Form

The standard notation for a parametrically defined 2D curve.

x=f(t),y=g(t)x = f(t), \quad y = g(t)

Variables

SymbolDescriptionUnit
x,yx, yThe Cartesian coordinates of the point-
ttThe independent parameter (often time or angle)-
f,gf, gIndependent mathematical functions-

Concept

As the parameter tt continuously varies over a specified bounded or unbounded interval (e.g., atba \le t \le b), the resulting calculated coordinate pairs (x,y)(x, y) physically trace out the shape of the curve on the coordinate plane. The specific direction in which this geometric curve is actively traced as the value of tt increases from its minimum to its maximum is formally called the orientation of the curve.

Eliminating the Parameter

While parametric equations are uniquely excellent for graphing complex motion dynamically over time, we sometimes desperately need to understand the static, fundamental geometric shape of the resulting curve strictly in the standard xyxy-plane without the arbitrary influence of the time variable. To successfully convert a given dynamic set of parametric equations back into a single, unified rectangular algebraic equation involving only the traditional xx and yy spatial variables, we perform a rigorous algebraic substitution process formally called eliminating the parameter.

Common Elimination Methods

  • Algebraic Substitution: Mathematically isolate and solve one of the parametric equations explicitly for the parameter tt, then carefully substitute that resulting expression directly into the other parametric equation.
  • Trigonometric Identities: If the given parametric equations heavily involve cyclical trigonometric functions like sine and cosine, isolate the trig terms and aggressively utilize the fundamental Pythagorean identity sin2t+cos2t=1\sin^2 t + \cos^2 t = 1 to completely eliminate the parameter tt.
  • Hyperbolic Identities: For hyperbolic parametrizations involving secant and tangent, isolate the terms and utilize the identity sec2ttan2t=1\sec^2 t - \tan^2 t = 1.

Domain Restrictions

When successfully eliminating the parameter algebraically, the resulting unified rectangular equation might actually describe a vastly larger, infinite geometric curve than what the original, bounded parametric equations allowed. You must carefully determine if the mathematical domain of xx or the functional range of yy is artificially restricted by the inherent limits of the original parameter functions (such as x=tx = \sqrt{t}, which strictly mandates that x0x \ge 0).

Parametric Forms of Conic Sections

Every standard geometric conic section can be expressed elegantly and dynamically using specialized sets of parametric equations, primarily involving cyclical trigonometric functions for closed loops (circles, ellipses) and specialized parameters for open curves (parabolas, hyperbolas).

Standard Parametrizations

  • Circle: For a circle centered at (h,k)(h, k) with a rigid radius rr, the parametric equations are x=h+rcostx = h + r \cos t and y=k+rsinty = k + r \sin t, where the parameter bounds are 0t<2π0 \le t \lt 2\pi.
  • Ellipse: For an ellipse perfectly centered at (h,k)(h, k) with horizontal semi-major axis aa and vertical semi-minor axis bb, the equations are x=h+acostx = h + a \cos t and y=k+bsinty = k + b \sin t, where 0t<2π0 \le t \lt 2\pi.
  • Parabola: For a standard parabola uniquely defined by the form y2=4axy^2 = 4ax (vertex resting at the origin, opening to the right), the simplest parametric equations are x=at2x = at^2 and y=2aty = 2at, where tt spans all possible real numbers (<t<-\infty \lt t \lt \infty).
  • Hyperbola: For a horizontal hyperbola structurally defined by x2a2y2b2=1\frac{x^2}{a^2} - \frac{y^2}{b^2} = 1, the parametric equations utilize the secant/tangent identity: x=asectx = a \sec t and y=btanty = b \tan t, where the parameter tt must avoid vertical asymptotes at tπ2+nπt \neq \frac{\pi}{2} + n\pi.

Applications of Parametric Equations

Parametric equations are not just mathematical curiosities; they are foundational tools used extensively across physics, engineering, and computer science.

Real-World Uses

  • Projectile Motion: Tracking the parabolic arc of a thrown object, where x(t)=(v0cosθ)tx(t) = (v_0 \cos \theta) t and y(t)=h0+(v0sinθ)t12gt2y(t) = h_0 + (v_0 \sin \theta) t - \frac{1}{2}gt^2. Time (tt) separates horizontal constant velocity from vertical gravitational acceleration.
  • Cycloids: Modeling the complex, looping path traced by a specific point on the rim of a rapidly spinning wheel as it rolls linearly along a flat surface. Impossible to write cleanly as y=f(x)y=f(x).
  • Computer Graphics: Rendering smooth curves in vector graphics and CAD software using Bézier curves and splines, which are entirely built upon parametric polynomial equations.
Key Takeaways
  • Parametric Equations: Express xx and yy completely independently as mathematical functions of a shared control parameter tt.
  • Eliminating the Parameter: A rigorous algebraic technique to find the corresponding Cartesian equation, almost always using algebraic substitution or trigonometric identities.
  • Orientation: The specific geometric direction the resulting curve is visibly traced out as the value of parameter tt increases.
  • Conic Parametrizations: Efficiently using sint\sin t and cost\cos t for closed loops like circles and ellipses, and sect\sec t and tant\tan t for open branches like hyperbolas.