2 Three-dimensional coordinate frames

The real world is three-dimensional and in order to solve many engineering problems it is necessary to develop expertise in the mathematics of three-dimensional space. An important application of vectors is their use to locate points in three dimensions. When two distinct points are known we can draw a unique straight line between them. Three distinct points which do not lie on the same line form a unique plane. Vectors can be used to describe points, lines, and planes in three dimensions. These mathematical foundations underpin much of the technology associated with computer graphics and the control of robots. In this Section we shall introduce the vector methods which underlie these applications.

Figure 28

No alt text was set. Please request alt text from the person who provided you with this resource.

Figure 28(a) shows a three-dimensional coordinate frame. Note that the third dimension requires the addition of a third axis, the z -axis. Although these three axes are drawn in the plane of the paper you should remember that we are now thinking of three-dimensional situations. Just as in two-dimensions the x and y axes are perpendicular, in three dimensions the x , y and z axes are all perpendicular to each other. We say they are mutually perpendicular. There is no reason why we could not have chosen the z -axis in the opposite direction. However, it is conventional to choose the directions shown in Figure 28(a).

Any point in the three dimensional space can be defined in terms of its x , y and z coordinates. Consider the point P with coordinates ( a , b , c ) as shown in Figure 28(b). The vector from the origin to the point P is known as the position vector of P , denoted O P or r ̲ . To arrive at P from O we can think of moving a units in the x direction, b units in the y direction and c units in the z direction.

A unit vector pointing in the positive direction of the z -axis is denoted by k ̲ . See the Figure 28(c). Noting that O Q = a i ̲ + b j ̲ and that Q P = c k ̲ we can state

r ̲ = O P = O Q + Q P = a i ̲ + b j ̲ + c k ̲

We conclude that the position vector of the point with coordinates ( a , b , c ) is r ̲ = a i ̲ + b j ̲ + c k ̲ . (We might, for convenience, sometimes use a subscript notation. For example we might refer to the position vector r ̲ as r ̲ = r x i ̲ + r y j ̲ + r z k ̲ in which ( r x , r y , r z ) have taken the place of ( a , b , c ).)

Key Point 7

If P has coordinates ( a , b , c ) then its position vector is

r ̲ = O P = a i ̲ + b j ̲ + c k ̲
Task!

State the position vector of the point with coordinates ( 9 , 8 , 6 ) .

9 i ̲ 8 j ̲ + 6 k ̲

The modulus of the vector O P is equal to the distance O P , which can be obtained by Pythagoras’ theorem:

Key Point 8

If r ̲ = a i ̲ + b j ̲ + c k ̲ then

r ̲ = a 2 + b 2 + c 2
Task!

Find the modulus of the vector r ̲ = 4 i ̲ + 2 j ̲ + 3 k ̲ .

r ̲ = 4 2 + 2 2 + 3 2 = 16 + 4 + 9 = 29

Example 7

Points A , B and C have coordinates ( 1 , 1 , 4 ) , ( 8 , 0 , 2 ) and ( 5 , 2 , 11 ) respectively.

  1. Find the position vectors of A , B and C .
  2. Find A B and B C .
  3. Find | A B | and | B C | .
Solution
  1. Denoting the position vectors of A , B and C by a ̲ , b ̲ and c ̲ respectively, we find

    a ̲ = i ̲ + j ̲ + 4 k ̲ , b ̲ = 8 i ̲ + 2 k ̲ , c ̲ = 5 i ̲ 2 j ̲ + 11 k ̲

  2. A B = b ̲ a ̲ = 9 i ̲ j ̲ 2 k ̲ . B C = c ̲ b ̲ = 3 i ̲ 2 j ̲ + 9 k ̲ .
  3. A B = 9 2 + ( 1 ) 2 + ( 2 ) 2 = 86 . B C = ( 3 ) 2 + ( 2 ) 2 + 9 2 = 94 .
Exercises
  1. State the position vector of the point with coordinates ( 4 , 4 , 3 ) .
  2. Find the modulus of each of the following vectors.
    1. 7 i ̲ + 2 j ̲ + 3 k ̲ ,
    2. 7 i ̲ 2 j ̲ + 3 k ̲ ,
    3. 2 j ̲ + 8 k ̲ ,
    4. i ̲ 2 j ̲ + 3 k ̲ ,
    5. a i ̲ + b j ̲ + c k ̲
  3. Points P , Q and R have coordinates ( 9 , 1 , 0 ) , ( 8 , 3 , 5 ) , and (5,5,7) respectively.
    1. Find the position vectors p ̲ , q ̲ , r ̲ of P , Q and R ,
    2. Find P Q and Q R
    3. Find | P Q | and | Q R | .
  1. 4 i ̲ 4 j ̲ + 3 k ̲
    1. 62 ,
    2. 62 ,
    3. 68 ,
    4. 14 ,
    5. a 2 + b 2 + c 2 .
    1. p ̲ = 9 i ̲ + j ̲ , q ̲ = 8 i ̲ 3 j ̲ + 5 k ̲ , r ̲ = 5 i ̲ + 5 j ̲ + 7 k ̲ .
    2. P Q = i ̲ 4 j ̲ + 5 k ̲ , Q R = 3 i ̲ + 8 j ̲ + 2 k ̲
    3. P Q = 42 , Q R = 77