Logo
Published on

Parametric and Bézier Curves using Vectors

Authors
  • avatar
    Name
    Vu Hung
    Twitter

Problem Statement

When a particle moves through space, its xx and yy coordinates often change independently over time. We can model this by defining both xx and yy in terms of a third variable, or parameter, usually time tt or an angle θ\theta.

Vectors provide the perfect container for these parametric equations: r(t)=x(t)i+y(t)j\mathbf{r}(t) = x(t)\mathbf{i} + y(t)\mathbf{j}. While parametric forms are excellent for calculating velocity and acceleration, we often want to know the physical shape of the path the particle took. To do this, we must eliminate the parameter to find the Cartesian equation (an equation involving only xx and yy).

Furthermore, this concept of parametric vector generation is the foundation of Bézier curves—the mathematical curves used in computer graphics, game design, and font rendering to draw smooth, scalable shapes.

Consider a particle whose position vector at time tt is given by: r(t)=(t2+1)i+(t2)j\mathbf{r}(t) = (t^2 + 1)\mathbf{i} + (t - 2)\mathbf{j} for all real values of tt.

(a) Write down the parametric equations for xx and yy.

(b) Eliminate the parameter tt to find the Cartesian equation of the curve traced by the particle.

(c) Describe the geometric shape of this Cartesian curve and determine its vertex.


Hints

  • Part (a): Simply extract the components of the i\mathbf{i} and j\mathbf{j} vectors.
  • Part (b): Look at your two parametric equations. One of them is linear (degree 1). Rearrange this linear equation to make tt the subject. Then, substitute this expression for tt into the other, non-linear equation. Expand and simplify to get an equation with only xx and yy.
  • Part (c): Look at the final Cartesian equation. Is it linear? Is it a circle (x2+y2=r2x^2 + y^2 = r^2)? Is it a parabola (y=x2y = x^2 or x=y2x = y^2)? Compare it to standard conic forms to find the vertex.

Solutions

Part (a): Parametric Equations

  1. From the position vector r(t)=(t2+1)i+(t2)j\mathbf{r}(t) = (t^2 + 1)\mathbf{i} + (t - 2)\mathbf{j}, we extract the components:
    • x=t2+1x = t^2 + 1
    • y=t2y = t - 2

Part (b): Eliminating the Parameter

  1. We want an equation linking xx and yy directly. We use the linear equation y=t2y = t - 2 to isolate tt: t=y+2t = y + 2
  2. Substitute this expression for tt into the xx equation: x=(y+2)2+1x = (y + 2)^2 + 1
  3. Expand the perfect square: x=(y2+4y+4)+1x = (y^2 + 4y + 4) + 1 x=y2+4y+5x = y^2 + 4y + 5
  4. This is the Cartesian equation of the curve. Alternatively, leaving it in vertex form x=(y+2)2+1x = (y + 2)^2 + 1 is often more useful for graphing.

Part (c): Identifying the Curve

  1. The equation x=y2+4y+5x = y^2 + 4y + 5 features a y2y^2 term and an xx term. This indicates that it is a horizontal parabola (opening to the right, since the coefficient of y2y^2 is positive).
  2. To find the vertex, we look at the completed square form: x=(y+2)2+1x = (y + 2)^2 + 1.
  3. Standard horizontal parabola vertex form is (xh)=a(yk)2(x - h) = a(y - k)^2, where the vertex is (h,k)(h, k).
  4. Comparing the two: (x1)=1(y(2))2(x - 1) = 1(y - (-2))^2.
  5. Therefore, the vertex of the parabola is (1,2)(1, -2).

Takeaways

  • The Power of Parameters: Vector equations naturally encapsulate parametric paths. They tell you not just where a curve is, but when a particle is at a specific point on that curve.
  • Elimination Strategy: Always look for the simplest parametric equation (usually the linear one, or one involving basic trig identities like sin2θ+cos2θ=1\sin^2\theta + \cos^2\theta = 1) to eliminate the parameter.
  • Real-World Application: The curves drawn in Adobe Illustrator, the smooth edges of the fonts you are reading right now, and the paths of animated characters in video games are all constructed using advanced parametric vector equations known as Bézier curves.

Further Readings


Connect with me

Mastering parametric conversions is essential for both Extension 1 and Extension 2 HSC Mathematics. If you need more practice, check out the booklets on Vu's Maths Hub. You can also watch my video explanations on my YouTube channel. Follow my Instagram for bite-sized tips, and read my extended thoughts on the syllabus on Substack. Let's connect!