Determinants, Inverses & Matrix Transformations
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 is matrix such that:
Think of it like division: "undoes" what does.
When Does an Inverse Exist?
Only when (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 :
Steps:
- Calculate determinant:
- Swap and
- Negate and
- Divide by determinant
2×2 Inverse Example
Find the inverse of
Step 1: Find determinant
Step 2: Apply formula
Step 3: Verify (multiply )
Position (1,1): ✓
Position (1,2): ✓
Position (2,1): ✓
Position (2,2): ✓
Result: ✓
Always verify your inverse by multiplying to check you get the identity matrix.
No Inverse When Determinant = 0
Since determinant is 0, this matrix has no inverse. (Its columns are proportional—row 1 is exactly 2× row 2.)
Part 10: 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: .
System:
Matrix Form:
Where:
- = coefficient matrix
- = variable column vector
- = constants column vector
Solving Using Matrix Inverse
If , multiplying by undoes the coefficient matrix. The result is the unknown vector .
If , then:
(Multiply both sides by on the left)
Complete Example
Problem: Solve
Step 1: Find
Step 2: Find
Step 3: Multiply
Answer: ,
Check: ✓ and ✓
Matrix method works when . If determinant is 0, the system either has no solution or infinitely many solutions.
Part 11: 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 , multiply by transformation matrix
Rotation Matrix
Rotate counterclockwise by angle :
Rotate 90° counterclockwise: ,
Transform :
Point → (rotated 90°) ✓
Reflection Matrix
Reflect across x-axis:
Reflect across y-axis:
Reflect across line :
Scaling Matrix
Scale by factor (same in both directions):
Scale different in each direction (x by , y by ):
Double the size of point :
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 after :
(Work right to left: apply first, then )
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
Part 12: Non-Commutativity of Matrix Multiplication
Matrix Multiplication is Not Commutative
Critical Rule: in general
Unlike multiplication of numbers, matrix multiplication depends on order.
Notice:
Why It Matters: In transformations, the order you apply them matters completely. Rotating then scaling gives a different result than scaling then rotating.
When composing two transformations represented by matrices and :
- To apply first, then : multiply as (right to left)
- Never assume —they're different transformations
Summary: Key Concepts
| Concept | Definition | Key Formula |
|---|---|---|
| Vector | Object with magnitude and direction | |
| Vector Addition | Combine vectors head-to-tail | component-wise |
| Matrix | Rectangular array of numbers | rows × columns |
| Matrix Product | Row × Column combination | |
| 2×2 Determinant | Scalar value of matrix | |
| 2×2 Inverse | Undoes matrix multiplication | |
| Rotation Matrix | Rotates by angle |