01 Key Concepts
Matrix Multiplication Rule
To multiply A (m x n) by B (n x p), the number of columns in A must equal the number of rows in B; the result is an m x p matrix.
How to Multiply Matrices
Each entry in the result is the sum of products of a row from A and a column from B (the 'dot product' of that row and column).
Matrix Multiplication is NOT Commutative
In general, A*B does not equal B*A โ order matters, unlike with ordinary numbers.
Inverse of a Matrix (A^-1)
A matrix that 'undoes' A, so that A * A^-1 = I (the identity matrix). Only square matrices with nonzero determinant have an inverse.
Inverse of a 2x2 Matrix
For A=[[a,b],[c,d]], A^-1 = (1/det(A)) * [[d,-b],[-c,a]], where det(A) = ad-bc.
02 Key Formulas
- (A*B)_ij = sum over k of A_ik * B_kj
- For A=[[a,b],[c,d]]: A^-1 = (1/(ad-bc)) * [[d,-b],[-c,a]]
03 Solved Examples
- Top-left: (1*5)+(2*7) = 5+14 = 19.
- Top-right: (1*6)+(2*8) = 6+16 = 22.
- Bottom-left: (3*5)+(4*7) = 15+28 = 43.
- Bottom-right: (3*6)+(4*8) = 18+32 = 50.
- Find det = (2*1)-(1*1) = 2-1 = 1.
- Apply the formula: A^-1 = (1/1)*[[1,-1],[-1,2]].
- A has 3 columns; B has 1 row.
- For A*B to be valid, A's columns must equal B's rows: 3 does not equal 1.
04 Practice Questions
๐ Matrix Operations โ Downloadable Worksheet
10 questions with a full answer key. Grab the PDF to print, or try the interactive version in your browser.