How to Parametrize a Line

Two intersecting lines inside a coordinate system

Parametrization is a new way to describe lines and curves in the plane. Normal coordinates are just expressed by numbers for the x- and y-coordinates. When you parametrize a line, you find a parametric equation that expresses the coordinates as functions of new variables like s, t and so on.

One of the main reasons to use parametrization is that it makes it much easier to find out whether two objects are in the same place at the same time. Why is that important? Imagine that you’re going on an airplane. It’s nice to know whether two planes are in the same place at the same time or not, because if they are, it would be catastrophic!

Theory

Parametrization of a Line

Given a point (x0,y0) on the line, a vector r = (a,b) along the line and a variable t, the parametric equation of the line looks like this:

On vector form:

(x,y) = (x0,y0) + t (a,b)

On coordinate form:

x (t) = x0 + at y (t) = y0 + bt

x (t) = x0 + at y (t) = y0 + bt

You can see that the two ways of expressing the parametric equation are closely related. If you set up an equation with all the x-coordinates of the vector form and an equation with all the y-coordinates of the vector form, you will get the parametric equation on coordinate form.

Example 1

Given the parametric equations

l : x (t) = 1 + t y (t) = 2 2t m : x (s) = 3 + s y (s) = 5 + 2s,

l : x (t) = 1 + t y (t) = 2 2t m : x (s) = 3 + s y (s) = 5 + 2s,

find the point where the lines l and m intersect.

To find the intersection, create a system of equations where the x-coordinate of l is equal to the x-coordinate of m, and the y-coordinate of l is equal to the y-coordinate of m:

1 + t = 3 + s t = 4 + s 2 2t = 5 + 2s 2 (4 + s) = 5 + 2s 8 2s = 5 + 2s 13 = 4s s = 13 4 t = 4 + s t = 4 + 13 4 t = 3 4

1 + t = 3 + s 2 2t = 5 + 2s t = 4 + s 2 (4 + s) = 5 + 2s 8 2s = 5 + 2s 13 = 4s s = 13 4 t = 4 + 13 4 t = 3 4

You can find the intersection by inserting the values you found for s or t back into one of the parametric equations:

x ( 3 4 ) = 1 + 3 4 = 1 4 y ( 3 4 ) = 2 2 3 4 = 7 2

That means the lines l and m intersect in the point (1 4, 7 2 ).

Note! You can also insert for s in the other parametric equation, which will give you the same point. If you have the time, it’s always smart to do that just to check whether you have made any mistakes or not!

Want to know more?Sign UpIt's free!