The Dot Product

So far we have added two vectors and multiplied a vector by a scalar. The question arises: is it possible to multiply two vectors so that their product is a useful quantity? One such product is the dot product, whose definition follows. Another is the cross product, which is discussed in the next section.


Definition 1 If \(\mathbf{a} = \langle a_1, a_2, a_3 \rangle\) and \(\mathbf{b} = \langle b_1, b_2, b_3 \rangle\), then the dot product of a and b is the number \(\mathbf{a} \cdot \mathbf{b}\) given by \[ \mathbf{a} \cdot \mathbf{b} = a_1b_1 + a_2b_2 + a_3b_3 \]


Thus, to find the dot product of a and b, we multiply corresponding components and add. The result is not a vector. It is a real number, that is, a scalar. For this reason, the dot product is sometimes called the scalar product (or inner product). Although Definition 1 is given for three-dimensional vectors, the dot product of two-dimensional vectors is defined in a similar fashion: \[ \langle a_1, a_2 \rangle \cdot \langle b_1, b_2 \rangle = a_1b_1 + a_2b_2 \]


EXAMPLE 1 \[ \langle 2, 4 \rangle \cdot \langle 3, -1 \rangle = 2(3) + 4(-1) = 2 \] \[ \langle -1, 7, 4 \rangle \cdot \langle 6, 2, -\frac{1}{2} \rangle = (-1)(6) + 7(2) + 4(-\frac{1}{2}) = 6 \] \[ (\mathbf{i} + 2\mathbf{j} - 3\mathbf{k}) \cdot (2\mathbf{j} - \mathbf{k}) = 1(0) + 2(2) + (-3)(-1) = 7 \]