01. Matrix Multiplication (4 ways)
02. Inverse Matrix
03. Gaussian - Jordan Method (find inverse matrix)
01. Matrix Multiplication (4 ways)
a. Element Way
b. Column Way
Columns of C is combination of columns of A.
c. Row Way
Rows of C is combination of rows of B
d. Matrix Overlay
e.Block Way
Divide A and B into blocks. Notice that the element of A and B is sub matrix and the counterpart of C is also sub matrix with corresponding shape. The element way still stands for matrix multiplication in blocks.
02. Inverse Matrix
a. Definition
The inverse matrix of squared matrix A is a matrix that has property below.
b.Singular
For a matrix A, if there exists a non zero vector s.t. Ax = 0, then A is singular and has no inverse matrix.