[Linear Algebra] Vector Matrix Multiplication
Vector / Matrix Additions and Multiplications
- Element-wise addition : C=A+B, Cij=Aij+Bij
- A, B, C should have the same size : A,B,C∈Rm×n
- Scalar multiple of vector/matrix : ca, cA
- Matrix-matrix multiplication : C=AB, Cij=∑kAi,kBk,j
- constraint : A∈R?×n,B∈Rn×?
Matrix Multiplication is NOT commutative
- Matrix multiplication is NOT commutative : AB=BA
Other Properties
- Distributive : A(B+C)=AB+AC
- Associative : A(BC)=(AB)C
- Property of transpose : (AB)T=BTAT