Lesson 5: Cross Product & Triple Product

1. Cross Product (3D Only)

The cross product \(\vec{a} × \vec{b}\) is a vector perpendicular to both \(\vec{a}\) and \(\vec{b}\).

Magnitude = \(\|\vec{a}\| \|\vec{b}\| \sin \theta\) (area of parallelogram)

Direction: right-hand rule (fingers from a to b, thumb shows direction of result).

Formula:

\[ \vec{a} × \vec{b} = \begin{vmatrix} \mathbf{i} & \mathbf{j} & \mathbf{k} \\ a_x & a_y & a_z \\ b_x & b_y & b_z \end{vmatrix} = \begin{pmatrix} a_y b_z - a_z b_y \\ a_z b_x - a_x b_z \\ a_x b_y - a_y b_x \end{pmatrix} \]

Exercise 1

Compute \(\begin{pmatrix} 1 \\ 0 \\ 0 \end{pmatrix} × \begin{pmatrix} 0 \\ 1 \\ 0 \end{pmatrix} = \begin{pmatrix} x \\ y \\ z \end{pmatrix}\)
x = , y = , z =

2. Properties of Cross Product

Exercise 2

Which statements are true about cross product? (Select all that apply)

3. Scalar Triple Product

The scalar triple product \(\vec{a} \cdot (\vec{b} × \vec{c})\) gives the volume of the parallelepiped formed by the three vectors.

It is zero if the vectors are coplanar (lie in the same plane).

Formula: equals the determinant of the matrix formed by the three vectors as rows or columns.

Exercise 3

What does \(\vec{a} \cdot (\vec{b} × \vec{c}) = 0\) mean geometrically?
← Previous Lesson (4) Next Lesson (6) →