2×2 determinants, matrix inverses, solving equations using matrices, and transformation matrices.
Matrices give a compact way to perform several calculations at once. In the optional CSEC section on Vectors and Matrices, you may be asked to use matrices to undo operations, solve simultaneous equations, or transform points on a plane.
The key idea is that matrix work is highly procedural, but it still needs interpretation. A determinant tells you whether an inverse exists; an inverse matrix reverses the effect of another matrix; a transformation matrix moves points in a predictable way. State what the matrix is doing before you start multiplying.
What is an Inverse?
An inverse matrix reverses the effect of a matrix multiplication, similar to how division reverses multiplication with ordinary numbers.
The inverse of matrix A is matrix A−1 such that:
AA−1=A−1A=I
Think of it like division: A−1 "undoes" what A does.
When Does an Inverse Exist?
Only when det(A)=0 (called a non-singular matrix)
Formula for 2×2 Inverse
The formula swaps the diagonal entries, changes the signs of the other diagonal, and divides by the determinant. The determinant check comes first because division by zero is impossible.
For A=(acbd):
A−1=ad−bc1(d−c−ba)
Steps:
Calculate determinant: ad−bc
Swap a and d
Negate b and c
Divide by determinant
2×2 Inverse Example
Find the inverse of A=(3214)
Step 1: Find determinant
det(A)=3(4)−1(2)=12−2=10
Step 2: Apply formula
A−1=101(4−2−13)=(0.4−0.2−0.10.3)
Step 3: Verify (multiply A⋅A−1)
(3214)(0.4−0.2−0.10.3)
Position (1,1): 3(0.4)+1(−0.2)=1.2−0.2=1 ✓
Position (1,2): 3(−0.1)+1(0.3)=−0.3+0.3=0 ✓
Position (2,1): 2(0.4)+4(−0.2)=0.8−0.8=0 ✓
Position (2,2): 2(−0.1)+4(0.3)=−0.2+1.2=1 ✓
Result: I=(1001) ✓
Exam Tip
Always verify your inverse by multiplying A⋅A−1 to check you get the identity matrix.
No Inverse When Determinant = 0
A=(2142)
det(A)=2(2)−4(1)=4−4=0
Since determinant is 0, this matrix has no inverse. (Its columns are proportional,row 1 is exactly 2× row 2.)
Solving Systems Using Matrices
Converting a System to Matrix Form
Matrix form separates coefficients, unknowns, and constants. This makes a pair of simultaneous equations look like one compact equation: AX=B.
System:2x+3yx−y=8=1
Matrix Form:AX=B
(213−1)(xy)=(81)
Where:
A = coefficient matrix
X = variable column vector
B = constants column vector
Solving Using Matrix Inverse
If AX=B, multiplying by A−1 undoes the coefficient matrix. The result is the unknown vector X.
If AX=B, then:
X=A−1B
(Multiply both sides by A−1 on the left)
Complete Example
Problem: Solve (213−1)(xy)=(81)
Step 1: Find det(A)
det(213−1)=2(−1)−3(1)=−2−3=−5
Step 2: Find A−1
A−1=−51(−1−1−32)=(0.20.20.6−0.4)
Step 3: Multiply A−1B
(xy)=(0.20.20.6−0.4)(81)
x=0.2(8)+0.6(1)=1.6+0.6=2.2
y=0.2(8)−0.4(1)=1.6−0.4=1.2
Answer:x=2.2, y=1.2
Check:2(2.2)+3(1.2)=4.4+3.6=8 ✓ and 2.2−1.2=1 ✓
Remember
Matrix method works when det(A)=0. If determinant is 0, the system either has no solution or infinitely many solutions.
Transformation Matrices
What Transformations Do Matrices Represent?
Transformation matrices describe movement on the coordinate plane. Each point is written as a column vector, multiplied by the matrix, and changed into its image.
Matrices can represent:
Rotation: Turn a shape around origin
Reflection: Mirror a shape
Scaling: Enlarge or reduce
Shear: Skew a shape
How it Works: To transform point (x,y), multiply by transformation matrix
Scale by factor k (same in both directions):S(k)=(k00k)
Scale different in each direction (x by a, y by b):S(a,b)=(a00b)
Example
Double the size of point (2,3):
(2002)(23)=(46)
Composite Transformations
Composite transformations are performed in sequence. In matrix form, the matrix nearest the point acts first, so the written order must be handled carefully.
Apply multiple transformations by multiplying matrices
To apply transformation T2 after T1:
Result=T2⋅T1⋅(xy)
(Work right to left: apply T1 first, then T2)
ANIMATION: Composite transformations
- Show original triangle
- Apply first transformation (e.g., rotation)
- Show intermediate result
- Apply second transformation (e.g., scaling)
- Show final result
- Show that multiplying matrices in order gives same result
Non-Commutativity of Matrix Multiplication
Matrix Multiplication is Not Commutative
Critical Rule:AB=BA in general
Unlike multiplication of numbers, matrix multiplication depends on order.
Example
A=(1021),B=(0110)
AB=(1021)(0110)=(2110)
BA=(0110)(1021)=(0112)
Notice: AB=BA
Why It Matters: In transformations, the order you apply them matters completely. Rotating then scaling gives a different result than scaling then rotating.
Exam Tip
When composing two transformations represented by matrices T1 and T2:
To apply T1first, then T2: multiply as T2⋅T1 (right to left)
Never assumeT1⋅T2=T2⋅T1,they're different transformations