1.2 The Dot Product
Key Concepts
A vector may be multiplied by a scalar. Can two vectors may be multiplied together? Yes, one way is through the dot product: If a = < a 1 , b 1 > and b = < a 2 , b 2 >, then the dot product (or scalar product, or inner product) of a and b is given by a.b = a 1 a 2 + b 1 b 2.

The magnitude of the vector a can be computed in terms of by a.a = | a | 2

The angle between two vectors a and b can be computed by cos(theta) = a.b / | a || b |

Two vectors are orthogonal (perpindicular) if and only if the dot product vanishes, a.b =0.

The projection of a vector gives the component of a vector in a certain direction. The scalar projection of b onto a is given by

comp a b = a.b / |a|
and the vector projection of b onto a is given by
proja = (comp a b) a /|a|

In physics, Work is given by the inner product of a force with a displacement vector. (The component of force perpindicular, or orthogonal, to the displacement does not generate work!)

If a = < a1, a2 >, then the orthogonal complement of a is given by a perp = < -a2, a1 >.



This site maintained by mpilant@math.tamu.edu

Last modified Mon Sep 9 21:22:37 CDT 1996