Same Properties
The dot product between column matrices has the same properties as the dot
product between vectors.
Here is another example:
- p = ( -2, 5 )T
- q = ( 3, -1 )T
- then p · q = (-2)*3 + 5*( -1) = -6 + -5 = -11
Here is a more realistic example:
- s = ( 1.082, -3.224 )T
- t = ( 2.381, 7.009 )T
- then s · t = 1.082*2.381 + -3.224*7.009 =
2.576242 + -22.597016 =  -20.020774
In all cases the dot product takes two column matrix operands and yields one scalar value.
QUESTION 10:
Form the dot product of: ( -1, 3)T and (2, 4)T.
Form the dot product of: (2, 4)T and ( -1, 3)T.