Skip to content

FP3 Chapter 5: Vectors

Before we begin, let’s review some key concepts from our previous study of vectors:

The scalar (dot) product of two vectors provides a scalar quantity that relates to the projection of one vector onto another. However, we often need a way to represent quantities that have both magnitude and direction that are perpendicular to both input vectors. The vector product (or cross product) fulfills this need.

Cross product geometric illustration

Definition (Vector Product): The vector (or cross) product of two vectors a\mathbf{a} and b\mathbf{b} is defined as:

a×b=absinθn^\mathbf{a} \times \mathbf{b} = |\mathbf{a}||\mathbf{b}|\sin\theta\, \hat{\mathbf{n}}

where θ\theta is the angle between a\mathbf{a} and b\mathbf{b}, and n^\hat{\mathbf{n}} is the unit vector perpendicular to both a\mathbf{a} and b\mathbf{b}, with direction determined by the right-hand rule.

  • b×a=a×b\mathbf{b} \times \mathbf{a} = -\mathbf{a} \times \mathbf{b} (not commutative)
  • a×(b+c)=a×b+a×c\mathbf{a} \times (\mathbf{b} + \mathbf{c}) = \mathbf{a} \times \mathbf{b} + \mathbf{a} \times \mathbf{c} (distributive)
  • a×b=0\mathbf{a} \times \mathbf{b} = \mathbf{0} if and only if a=0\mathbf{a} = \mathbf{0}, b=0\mathbf{b} = \mathbf{0}, or a\mathbf{a} and b\mathbf{b} are parallel

The component form of the cross product can be derived from its geometric definition and the properties of unit vector products.

Starting with vectors a=a1i+a2j+a3k\mathbf{a} = a_1\mathbf{i} + a_2\mathbf{j} + a_3\mathbf{k} and b=b1i+b2j+b3k\mathbf{b} = b_1\mathbf{i} + b_2\mathbf{j} + b_3\mathbf{k}, and using the distributive property:

a×b=(a1i+a2j+a3k)×(b1i+b2j+b3k)=a1b1(i×i)+a1b2(i×j)+a1b3(i×k)+a2b1(j×i)+a2b2(j×j)+a2b3(j×k)+a3b1(k×i)+a3b2(k×j)+a3b3(k×k)\begin{aligned} \mathbf{a} \times \mathbf{b} &= (a_1\mathbf{i} + a_2\mathbf{j} + a_3\mathbf{k}) \times (b_1\mathbf{i} + b_2\mathbf{j} + b_3\mathbf{k})\\ &= a_1b_1(\mathbf{i} \times \mathbf{i}) + a_1b_2(\mathbf{i} \times \mathbf{j}) + a_1b_3(\mathbf{i} \times \mathbf{k})\\ &\quad + a_2b_1(\mathbf{j} \times \mathbf{i}) + a_2b_2(\mathbf{j} \times \mathbf{j}) + a_2b_3(\mathbf{j} \times \mathbf{k})\\ &\quad + a_3b_1(\mathbf{k} \times \mathbf{i}) + a_3b_2(\mathbf{k} \times \mathbf{j}) + a_3b_3(\mathbf{k} \times \mathbf{k}) \end{aligned}

Substituting the unit vector products:

a×b=a1b2ka1b3ja2b1k+a2b3i+a3b1ja3b2i=(a2b3a3b2)i+(a3b1a1b3)j+(a1b2a2b1)k\begin{aligned} \mathbf{a} \times \mathbf{b} &= a_1b_2\mathbf{k} - a_1b_3\mathbf{j} - a_2b_1\mathbf{k} + a_2b_3\mathbf{i} + a_3b_1\mathbf{j} - a_3b_2\mathbf{i}\\ &= (a_2b_3 - a_3b_2)\mathbf{i} + (a_3b_1 - a_1b_3)\mathbf{j} + (a_1b_2 - a_2b_1)\mathbf{k} \end{aligned}

This can be written in determinant form:

a×b=ijka1a2a3b1b2b3\mathbf{a} \times \mathbf{b} = \begin{vmatrix} \mathbf{i} & \mathbf{j} & \mathbf{k} \\ a_1 & a_2 & a_3 \\ b_1 & b_2 & b_3 \end{vmatrix}

Example (Vector Product in Component Form): Given that a=2i3j\mathbf{a} = 2\mathbf{i} - 3\mathbf{j} and b=4i+jk\mathbf{b} = 4\mathbf{i} + \mathbf{j} - \mathbf{k}, find a×b\mathbf{a} \times \mathbf{b}:

(a) directly

(b) by a method involving a determinant

(c) Verify that a×b\mathbf{a} \times \mathbf{b} is perpendicular to both a\mathbf{a} and b\mathbf{b}

2. Geometric Applications of Vector Product

Section titled “2. Geometric Applications of Vector Product”

Theorem (Area of a Triangle): If a\mathbf{a} and b\mathbf{b} are position vectors of points A and B relative to an origin O, then:

Area of triangle OAB=12a×b\text{Area of triangle OAB} = \frac{1}{2}|\mathbf{a} \times \mathbf{b}|

Proof. The area of triangle OAB is 12absinθ\frac{1}{2}|\mathbf{a}||\mathbf{b}|\sin\theta, where θ\theta is the angle between a\mathbf{a} and b\mathbf{b}. But this is exactly 12a×b\frac{1}{2}|\mathbf{a} \times \mathbf{b}|. \square

Triangle area illustration

Example (Area of a Triangle): Find the area of triangle ABC, where the position vectors of A, B and C are 4i2j+k4\mathbf{i} - 2\mathbf{j} + \mathbf{k}, 12i+14j+k-12\mathbf{i} + 14\mathbf{j} + \mathbf{k} and 4i2j+k-4\mathbf{i} - 2\mathbf{j} + \mathbf{k} respectively.

Definition (Scalar Triple Product): The scalar triple product of three vectors a\mathbf{a}, b\mathbf{b}, and c\mathbf{c} is defined as:

a(b×c)\mathbf{a} \cdot (\mathbf{b} \times \mathbf{c})

Example (Computing Scalar Triple Product): Calculate the scalar triple product a(b×c)\mathbf{a} \cdot (\mathbf{b} \times \mathbf{c}) for the vectors:

a=2ij+3k,b=i+2jk,c=3ij+2k\mathbf{a} = 2\mathbf{i} - \mathbf{j} + 3\mathbf{k}, \quad \mathbf{b} = \mathbf{i} + 2\mathbf{j} - \mathbf{k}, \quad \mathbf{c} = 3\mathbf{i} - \mathbf{j} + 2\mathbf{k}

Solution:

Method 1: First compute the cross product b×c\mathbf{b} \times \mathbf{c}, then take the dot product with a\mathbf{a}.

b×c=ijk121312=i2112j1132+k1231=i(41)j(2+3)+k(16)=3i5j7k\begin{aligned} \mathbf{b} \times \mathbf{c} &= \begin{vmatrix} \mathbf{i} & \mathbf{j} & \mathbf{k} \\ 1 & 2 & -1 \\ 3 & -1 & 2 \end{vmatrix}\\ &= \mathbf{i}\begin{vmatrix} 2 & -1 \\ -1 & 2 \end{vmatrix} - \mathbf{j}\begin{vmatrix} 1 & -1 \\ 3 & 2 \end{vmatrix} + \mathbf{k}\begin{vmatrix} 1 & 2 \\ 3 & -1 \end{vmatrix}\\ &= \mathbf{i}(4 - 1) - \mathbf{j}(2 + 3) + \mathbf{k}(-1 - 6)\\ &= 3\mathbf{i} - 5\mathbf{j} - 7\mathbf{k} \end{aligned}

Now we compute the dot product:

a(b×c)=(2ij+3k)(3i5j7k)=6+521=10\begin{aligned} \mathbf{a} \cdot (\mathbf{b} \times \mathbf{c}) &= (2\mathbf{i} - \mathbf{j} + 3\mathbf{k}) \cdot (3\mathbf{i} - 5\mathbf{j} - 7\mathbf{k})\\ &= 6 + 5 - 21 = -10 \end{aligned}

Method 2: Use the determinant formula directly.

a(b×c)=213121312=2(41)+1(2+3)+3(16)=6+521=10\begin{aligned} \mathbf{a} \cdot (\mathbf{b} \times \mathbf{c}) &= \begin{vmatrix} 2 & -1 & 3 \\ 1 & 2 & -1 \\ 3 & -1 & 2 \end{vmatrix}\\ &= 2(4 - 1) + 1(2 + 3) + 3(-1 - 6)\\ &= 6 + 5 - 21 = -10 \end{aligned}

Theorem (Volume of a Parallelepiped): The volume of a parallelepiped with edges a\mathbf{a}, b\mathbf{b}, and c\mathbf{c} from a common vertex is:

Volume=a(b×c)\text{Volume} = |\mathbf{a} \cdot (\mathbf{b} \times \mathbf{c})|

Parallelepiped volume illustration

Theorem (Volume of a Tetrahedron): The volume of a tetrahedron with vertices at the origin and at points with position vectors a\mathbf{a}, b\mathbf{b}, and c\mathbf{c} is:

Volume=16a(b×c)\text{Volume} = \frac{1}{6}|\mathbf{a} \cdot (\mathbf{b} \times \mathbf{c})|

Tetrahedron volume illustration

Example (Volume of a Tetrahedron): Find the volume of the tetrahedron with vertices at A(1, 3, 0), B(3, 2, -1), C(2, -1, -1) and D(-1, 3, 6).

Solution:

AB=(2,1,1)AC=(1,4,1)AD=(2,0,6)\begin{aligned} \overrightarrow{AB} &= (2, -1, -1) \\ \overrightarrow{AC} &= (1, -4, -1) \\ \overrightarrow{AD} &= (-2, 0, 6) \end{aligned}

The volume is given by:

V=16AB(AC×AD)=16211141206=1636=6\begin{aligned} V &= \frac{1}{6}|\overrightarrow{AB} \cdot (\overrightarrow{AC} \times \overrightarrow{AD})| \\ &= \frac{1}{6}\left|\begin{vmatrix} 2 & -1 & -1 \\ 1 & -4 & -1 \\ -2 & 0 & 6 \end{vmatrix}\right| \\ &= \frac{1}{6}|36| = 6 \end{aligned}

A line in three-dimensional space can be represented in several equivalent forms. We’ll start with the parametric form and then explore the vector equation.

Definition (Parametric Form of a Line): If a line passes through a point with coordinates (x1,y1,z1)(x_1, y_1, z_1) and has direction vector b=(l,m,n)\mathbf{b} = (l, m, n), then any point (x,y,z)(x, y, z) on the line can be represented parametrically as:

x=x1+λly=y1+λmz=z1+λn\begin{aligned} x &= x_1 + \lambda l\\ y &= y_1 + \lambda m\\ z &= z_1 + \lambda n \end{aligned}

where λ\lambda is a scalar parameter.

This can be equivalently written in the form:

xx1l=yy1m=zz1n=λ\frac{x-x_1}{l} = \frac{y-y_1}{m} = \frac{z-z_1}{n} = \lambda

Definition (Vector Equation of a Line): For a line passing through point AA with position vector a\mathbf{a} and parallel to vector b\mathbf{b}, the parametric vector form is:

r=a+λb\mathbf{r} = \mathbf{a} + \lambda\mathbf{b}

where r\mathbf{r} is the position vector of any point on the line and λ\lambda is a scalar parameter.

Note that this can also be expressed using the cross product:

(ra)×b=0(\mathbf{r} - \mathbf{a}) \times \mathbf{b} = \mathbf{0}

Line equation illustration

Example (Finding the Equation of a Line): Find the vector equation of the line through the points (1, 2, -1) and (3, -2, 2) in the form (ra)×b=0(\mathbf{r} - \mathbf{a}) \times \mathbf{b} = \mathbf{0}.

Definition (Vector Equation of a Plane): A plane can be represented in several forms:

  • Scalar product form: rn=p\mathbf{r} \cdot \mathbf{n} = p where n\mathbf{n} is normal to the plane and pp is a scalar.
  • Point-normal form: (ra)n=0(\mathbf{r} - \mathbf{a}) \cdot \mathbf{n} = 0 where a\mathbf{a} is the position vector of a point on the plane.
  • Parametric form: r=a+λb+μc\mathbf{r} = \mathbf{a} + \lambda\mathbf{b} + \mu\mathbf{c} where b\mathbf{b} and c\mathbf{c} are non-parallel vectors in the plane, and λ\lambda and μ\mu are scalar parameters.
  • Cartesian form: ax+by+cz+d=0ax + by + cz + d = 0

Plane equation illustrations

Example (Converting Between Plane Representations): Find different forms of the equation of a plane passing through the point P(2,1,3)P(2,1,3) with normal vector n=(3,2,1)\mathbf{n} = (3,2,-1).

Solution:

(a) Point-normal form:

The point-normal form is:

(ra)n=0(\mathbf{r} - \mathbf{a}) \cdot \mathbf{n} = 0

where a=2i+j+3k\mathbf{a} = 2\mathbf{i} + \mathbf{j} + 3\mathbf{k} and normal vector n=3i+2jk\mathbf{n} = 3\mathbf{i} + 2\mathbf{j} - \mathbf{k}.

(b) Scalar product form:

Expanding the point-normal form:

(ra)n=0rn=an\begin{aligned} (\mathbf{r} - \mathbf{a}) \cdot \mathbf{n} &= 0\\ \mathbf{r} \cdot \mathbf{n} &= \mathbf{a} \cdot \mathbf{n} \end{aligned}

Computing the constant term:

an=(2i+j+3k)(3i+2jk)=6+23=5\mathbf{a} \cdot \mathbf{n} = (2\mathbf{i} + \mathbf{j} + 3\mathbf{k}) \cdot (3\mathbf{i} + 2\mathbf{j} - \mathbf{k}) = 6 + 2 - 3 = 5

Therefore, the scalar product form is rn=5\mathbf{r} \cdot \mathbf{n} = 5 where n=3i+2jk\mathbf{n} = 3\mathbf{i} + 2\mathbf{j} - \mathbf{k}.

(c) Cartesian form:

Setting r=xi+yj+zk\mathbf{r} = x\mathbf{i} + y\mathbf{j} + z\mathbf{k}, we expand the scalar product form:

3x+2yz=53x + 2y - z = 5

(d) Parametric form:

To find this form, we need to find two non-parallel vectors that lie in the plane. Since these vectors must be perpendicular to the normal vector n=(3,2,1)\mathbf{n} = (3,2,-1), we can choose b=(2,3,0)\mathbf{b} = (-2,3,0) and c=(1,0,3)\mathbf{c} = (1,0,3).

Verification:

nb=3(2)+2(3)+(1)(0)=0nc=3(1)+2(0)+(1)(3)=0\begin{aligned} \mathbf{n} \cdot \mathbf{b} &= 3(-2) + 2(3) + (-1)(0) = 0\\ \mathbf{n} \cdot \mathbf{c} &= 3(1) + 2(0) + (-1)(3) = 0 \end{aligned}

The parametric form is:

r=(2i+j+3k)+λ(2i+3j)+μ(i+3k)\mathbf{r} = (2\mathbf{i} + \mathbf{j} + 3\mathbf{k}) + \lambda(-2\mathbf{i} + 3\mathbf{j}) + \mu(\mathbf{i} + 3\mathbf{k})

Plane-plane intersection

Example (Line-Plane Intersection): Find the point of intersection between the line r=(2,1,3)+t(1,2,1)\mathbf{r} = (2, 1, 3) + t(1, 2, -1) and the plane 2xy+3z=82x - y + 3z = 8.

Example (Plane-Plane Intersection): Find the line of intersection between the planes 2x+yz=32x + y - z = 3 and xy+2z=4x - y + 2z = 4.

Example (Angle Between Line and Plane): Find the acute angle between the line r=2i+j5k+λ(3i+4j12k)\mathbf{r} = 2\mathbf{i} + \mathbf{j} - 5\mathbf{k} + \lambda(3\mathbf{i} + 4\mathbf{j} - 12\mathbf{k}) and the plane with equation r(2i2jk)=2\mathbf{r}\cdot(2\mathbf{i} - 2\mathbf{j} - \mathbf{k}) = 2.

Example (Distance Between Skew Lines): Find the shortest distance between the two skew lines with equations r=i+λ(j+k)\mathbf{r} = \mathbf{i} + \lambda(\mathbf{j} + \mathbf{k}) and r=i+3jk+μ(2ijk)\mathbf{r} = -\mathbf{i} + 3\mathbf{j} - \mathbf{k} + \mu(2\mathbf{i} - \mathbf{j} - \mathbf{k}), where λ\lambda and μ\mu are scalars.

Example (Distance from Point to Plane): Find the distance from the point P(3,1,2)P(3, 1, -2) to the plane with equation 2xy+2z=52x - y + 2z = 5.