Parametric Equations Formula
The Formula
Slope of tangent: \frac{dy}{dx} = \frac{dy/dt}{dx/dt} (when dx/dt \neq 0).
When to use: Instead of saying 'y depends on x,' parametric equations say 'both x and y depend on time t.' Imagine an ant walking on a table—at each moment t, the ant has an x-position and a y-position. The path it traces is the parametric curve, and t is the clock ticking forward.
Quick Example
A line: x = 1 + 2t, y = 3 - t.
A parabola: x = t, y = t^2.
Notation
What This Formula Means
A way of defining a curve by expressing both x and y as separate functions of a third variable (parameter), typically t: x = f(t), y = g(t).
Instead of saying 'y depends on x,' parametric equations say 'both x and y depend on time t.' Imagine an ant walking on a table—at each moment t, the ant has an x-position and a y-position. The path it traces is the parametric curve, and t is the clock ticking forward.
Formal View
Worked Examples
Example 1
easySolution
- 1 Solve the x-equation for t: t = \frac{x - 1}{2}.
- 2 Substitute into the y-equation: y = \frac{x - 1}{2} - 3.
- 3 Simplify: y = \frac{x - 1}{2} - 3 = \frac{x - 1 - 6}{2} = \frac{x - 7}{2}.
Answer
Example 2
mediumCommon Mistakes
- Confusing the parameter t with a spatial coordinate: t is not a third dimension—it's an auxiliary variable that generates the (x, y) curve.
- Forgetting that the derivative \frac{dy}{dx} = \frac{dy/dt}{dx/dt}, NOT \frac{dy}{dt}. You must divide the two rates to get the slope of the curve.
- Ignoring the parameter range: x = \cos t, y = \sin t for t \in [0, \pi] is only a semicircle, not a full circle.
Why This Formula Matters
Parametric equations describe motion (projectiles, orbits, animation paths), allow curves that aren't functions (circles, figure-eights), and are essential for computer graphics, robotics, and physics simulations.
Frequently Asked Questions
What is the Parametric Equations formula?
A way of defining a curve by expressing both x and y as separate functions of a third variable (parameter), typically t: x = f(t), y = g(t).
How do you use the Parametric Equations formula?
Instead of saying 'y depends on x,' parametric equations say 'both x and y depend on time t.' Imagine an ant walking on a table—at each moment t, the ant has an x-position and a y-position. The path it traces is the parametric curve, and t is the clock ticking forward.
What do the symbols mean in the Parametric Equations formula?
The parameter is usually t (for time) but can be any variable. The curve is described by the pair (x(t), y(t)).
Why is the Parametric Equations formula important in Math?
Parametric equations describe motion (projectiles, orbits, animation paths), allow curves that aren't functions (circles, figure-eights), and are essential for computer graphics, robotics, and physics simulations.
What do students get wrong about Parametric Equations?
The same curve can have many different parametrizations. x = \cos t, y = \sin t and x = \cos(2t), y = \sin(2t) trace the same circle but at different speeds.
What should I learn before the Parametric Equations formula?
Before studying the Parametric Equations formula, you should understand: function definition, trigonometric functions.