Matrix Multiplication
- Let Am×n,Bn×p
- The product AB (m×p) is given by the following
- (AB)ij=∑k=1nAikBkj for 1≤i≤m, 1≤j≤p
- dot product of row i of A with column j in B

Properties
- For:
- A(B+C)=AB+AC and (D+E)A=DA+EA
- a(AB)=(aA)B=A(aB)
- ImA=A=AIn
- (AB)t=BtAt
- A(BC)=(AB)C
- The n×n identity matrix, In, is defined by (In)ij=δij (the kronecker delta)
- V, n-dim vector space with ordered basis β then [I]β=In
- Theorem 2.13
- Let uj and vj denote the jth column of AB and B respectively
- uj=Avj
- vj=Bej (jth standard vector of Fp)
Powers
- A0=In×n
- A1=A
- Ak=Ak−1⋅A for k>1
- Left multiplication by A can be represented as LA:Fn→Fm defined by La(x)=Ax
- Properties
- [LA]βγ=A
- LA+B=LA+LB
- LaA=aLA ∀a∈F
- LAE=LALE
- If m=n then LIn is the identity function IFn