Matrix Multiplication Properties And Identity Matrix in machine learning

Hritika Agarwal
2 min readJul 18, 2020

--

The identity matrix, when multiplied by any matrix of the same dimensions, results in the original matrix. It’s just like multiplying numbers by 1.

The identity matrix simply has 1’s on the diagonal (upper left to lower right diagonal) and 0’s elsewhere. When multiplying the identity matrix after some matrix (A∗I), the square identity matrix’s dimension should match the other matrix’s columns. When multiplying the identity matrix before some other matrix (I∗A), the square identity matrix’s dimension should match the other matrix’s rows.

Output:

--

--

No responses yet