Here is the proof of the statemengt that the dot product of n-vectors satisfies the following properties:
  1. <A,B>=<B,A> ;
  2. <(A+B),C=<A,C>+<B,C> ;
  3. <(kA),B=<A,(kB)>=<k,(A,B)> ;
  4. <A,A> is greater than or equal to 0. <A,A> is 0 if and only if A=0.
Notice that the dot product of vectors can be viewed as the product of matrices:

<A,B>=ABT

that is the dot product of the row vector A and a row vector B is equal to the matrix product of A and the column vector BT. This observation helps to prove our properties.

1. Notice that the dot product <A,B>=ABT is a scalar, that is a 1 by 1 matrix. Thus <A,B> is a symmetric matrix (every 1 by 1 matrix is obviously symmetric). So

<A,B>=(ABT)=(ABT)T=(BT)T AT=BAT=<B,A>

Here we used several times the theorem about transposes. Of course, this statement could be easily proved without the theorem about transposes (just use the definition of the dot product of n-vectors) but I wanted to demonstrate the relationship between the dot product and the matrix product.

2. Again we use the properties of the matrix product:

(A+B)*C=(A+B)CT=ACT + BCT= <A,C>+<B,C>.

We leave property 3 as an exercise.

In order to prove property 4, we need to use the definition of the dot product: Let A=(a1,...,an). Then

<A,A>=a1a1+...+anan
Thus <A,A> is the sum of squares of the coordinates of A. It is clear now that <A,A> is always non-negative and <A,A>=0 if and only if all coordinates are equal to 0.
Return


Index Concepts Cover Page