We will discuss mostly three dimensions here, but what we have will be applicable to any number of dimensions (greater than or equal to 1). We want to be able to describe a straight line – a one dimensional object, infinitely long in both directions. We will see that vectors give us a perfect language with which to do this.

Remember that in three dimensions, a line can be defined by the intersection of two planes as in the intersection of the blue and the green planes defining the red line:

int

Each plane is specified by a single equation, and thus a line is specified by two equations (one for each plane). Here we will see that sometimes you just need one equation to specify a line, if you are using vectors, and sometimes it will seem that you need three equations, if you are using a parametric equation.

Let’s take a line, and specify some point on it. Let’s call that point the point P(x_0,y_0,z_0). We can define a vector which goes from the origin to that point, and it will have components: \vec{x}=\left<x_0,y_0,z_0\right>. We will also specify some vector which is pointing in a direction parallel to the line. Let’s call this \vec{v}=\left<v_1,v_2,v_3\right>.

We can see thus that if we go along the vector \vec{x} from the origin, and then go any multiple of \vec{v} we will be taken to some point on the line. In fact let’s think about where the vector:

 

\vec{x}+t\vec{v}

 

will take us to if we start from the origin, and allow t to vary. We can plot this in the following animation. Here, the black arrow is an arrow which points to some place on the line (ie. a single point that we’ve specified). The green line is a vector which is parallel to the line, and the blue dot which you see moving is the position of the point given by going from the origin to the point \vec{x}+t\vec{v} for varying t. We can see that it takes us along the line, as we would hope.
line

We can also ask about the position of the point for various values of t. Of course because we’re starting from the origin, the value of the components of the vector is precisely the position of the point. So, the coordinates of the point on the line for a given t are:

 

(x,y,z)=(x_0+tv_1,y_0+tv_2,z_0+tv_3)

 

The parameter t can take us to any point on the line. Note that two things about this equation for the coordinates are not unique. We could have chosen any point on the line to be our starting position, and we could have chosen any non-zero multiple of \vec{v} to be the vector parallel to the line.

We can take the above equation and write it down as three equations for the three coordinates:

 

x=x_0+t v_1
y=y_0+t v_2
z=z_0+t v_3

 

Hang on, but didn’t we say that a line was specified by 2 equations, and we seem to have 3? Well, in fact what we have are three equations which are dependent on a parameter. We can actually cancel the parameter t in the above to get:

 

t=\frac{x-x_0}{v_1}
t=\frac{y-y_0}{v_2}
t=\frac{z-z_0}{v_3}

 

(though you have to be careful if any of the components of \vec{v} are zero – this simply means that that coordinate will remain unchanged as t changes, and thus you can’t solve that component equation for t.). But if all of these equal the same thing, then that are all the same, and thus:

 

\frac{x-x_0}{v_1}=\frac{y-y_0}{v_2}=\frac{z-z_0}{v_3}

 

But this is really two equations, written in a strange form. This is:

 

\frac{x-x_0}{v_1}=\frac{y-y_0}{v_2}

 

and

 

\frac{y-y_0}{v_2}=\frac{z-z_0}{v_3}

 

Naively there is a third equation with the first and last expressions being equated, but that doesn’t give you any new information. If I tell you that a=b and b=c then I don’t teach you anything new if I also tell you that a=c.

So the vector equation really is equivalent to two equations which each correspond to the equation for a plane. We said that the vector equation wasn’t unique, but this makes sense because the line itself could be specified by an infinite number of different planes that intersect at the same line.

Play around with different initial points, and parallel vectors and see what you get.

How clear is this post?