Study Vault
All PostsFlashcardsResourcesAI ChatBlog
  1. Home
  2. /↳All Posts
  3. /↳Math
  4. /↳Determinants, Inverses & Matrix Transformations
Study VaultStudy Vault

Free, comprehensive study notes for CSEC students.

matthewlloydw@gmail.com

Navigate

  • Home
  • All Posts
  • Flashcards
  • Resources
  • AI Chat

Community

  • Contributors
  • Changelog
  • Suggest a Feature
  • My Suggestions
  • Bookmarks

Mathematics and Science

  • Mathematics
  • Additional Mathematics
  • Biology
  • Chemistry
  • Physics

Arts and Humanities

  • Caribbean History
  • Geography

Business and Human Development Studies

  • Principles of Accounts
  • Principles of Business
  • Economics

Modern Languages

  • English A (Language)
  • English B (Literature)
  • French
  • Spanish

Technical Studies and Creative Arts

  • Electrical & Electronic Technology
  • Information Technology

© 2026 Matthew Williams. Made with other contributors for all.

Mathematics

Determinants, Inverses & Matrix Transformations

PDF
Matthew Williams
|May 6, 2026|8 min read
DeterminantsInversesMatricesPaper 01Paper 02Transformations

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 AAA is matrix A−1A^{-1}A−1 such that: AA−1=A−1A=IAA^{-1} = A^{-1}A = IAA−1=A−1A=I

Think of it like division: A−1A^{-1}A−1 "undoes" what AAA does.

When Does an Inverse Exist?

Only when det⁡(A)≠0\det(A) \neq 0det(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=(abcd)A = \begin{pmatrix} a & b \\ c & d \end{pmatrix}A=(ac​bd​):

A−1=1ad−bc(d−b−ca)A^{-1} = \frac{1}{ad - bc} \begin{pmatrix} d & -b \\ -c & a \end{pmatrix}A−1=ad−bc1​(d−c​−ba​)

Steps:

  1. Calculate determinant: ad−bcad - bcad−bc
  2. Swap aaa and ddd
  3. Negate bbb and ccc
  4. Divide by determinant

2×2 Inverse Example

Find the inverse of A=(3124)A = \begin{pmatrix} 3 & 1 \\ 2 & 4 \end{pmatrix}A=(32​14​)

Step 1: Find determinant

det⁡(A)=3(4)−1(2)=12−2=10\det(A) = 3(4) - 1(2) = 12 - 2 = 10det(A)=3(4)−1(2)=12−2=10

Step 2: Apply formula

A−1=110(4−1−23)=(0.4−0.1−0.20.3)A^{-1} = \frac{1}{10} \begin{pmatrix} 4 & -1 \\ -2 & 3 \end{pmatrix} = \begin{pmatrix} 0.4 & -0.1 \\ -0.2 & 0.3 \end{pmatrix}A−1=101​(4−2​−13​)=(0.4−0.2​−0.10.3​)

Step 3: Verify (multiply A⋅A−1A \cdot A^{-1}A⋅A−1)

(3124)(0.4−0.1−0.20.3)\begin{pmatrix} 3 & 1 \\ 2 & 4 \end{pmatrix} \begin{pmatrix} 0.4 & -0.1 \\ -0.2 & 0.3 \end{pmatrix}(32​14​)(0.4−0.2​−0.10.3​)

Position (1,1): 3(0.4)+1(−0.2)=1.2−0.2=13(0.4) + 1(-0.2) = 1.2 - 0.2 = 13(0.4)+1(−0.2)=1.2−0.2=1 ✓

Position (1,2): 3(−0.1)+1(0.3)=−0.3+0.3=03(-0.1) + 1(0.3) = -0.3 + 0.3 = 03(−0.1)+1(0.3)=−0.3+0.3=0 ✓

Position (2,1): 2(0.4)+4(−0.2)=0.8−0.8=02(0.4) + 4(-0.2) = 0.8 - 0.8 = 02(0.4)+4(−0.2)=0.8−0.8=0 ✓

Position (2,2): 2(−0.1)+4(0.3)=−0.2+1.2=12(-0.1) + 4(0.3) = -0.2 + 1.2 = 12(−0.1)+4(0.3)=−0.2+1.2=1 ✓

Result: I=(1001)I = \begin{pmatrix} 1 & 0 \\ 0 & 1 \end{pmatrix}I=(10​01​) ✓

Exam Tip

Always verify your inverse by multiplying A⋅A−1A \cdot A^{-1}A⋅A−1 to check you get the identity matrix.

No Inverse When Determinant = 0

A=(2412)A = \begin{pmatrix} 2 & 4 \\ 1 & 2 \end{pmatrix}A=(21​42​)

det⁡(A)=2(2)−4(1)=4−4=0\det(A) = 2(2) - 4(1) = 4 - 4 = 0det(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=BAX = BAX=B.

System: 2x+3y=8x−y=1\begin{aligned} 2x + 3y &= 8 \\ x - y &= 1 \end{aligned}2x+3yx−y​=8=1​

Matrix Form: AX=BAX = BAX=B

(231−1)(xy)=(81)\begin{pmatrix} 2 & 3 \\ 1 & -1 \end{pmatrix} \begin{pmatrix} x \\ y \end{pmatrix} = \begin{pmatrix} 8 \\ 1 \end{pmatrix}(21​3−1​)(xy​)=(81​)

Where:

  • AAA = coefficient matrix
  • XXX = variable column vector
  • BBB = constants column vector

Solving Using Matrix Inverse

If AX=BAX = BAX=B, multiplying by A−1A^{-1}A−1 undoes the coefficient matrix. The result is the unknown vector XXX.

If AX=BAX = BAX=B, then:

X=A−1BX = A^{-1}BX=A−1B

(Multiply both sides by A−1A^{-1}A−1 on the left)

Complete Example

Problem: Solve (231−1)(xy)=(81)\begin{pmatrix} 2 & 3 \\ 1 & -1 \end{pmatrix} \begin{pmatrix} x \\ y \end{pmatrix} = \begin{pmatrix} 8 \\ 1 \end{pmatrix}(21​3−1​)(xy​)=(81​)

Step 1: Find det⁡(A)\det(A)det(A)

det⁡(231−1)=2(−1)−3(1)=−2−3=−5\det \begin{pmatrix} 2 & 3 \\ 1 & -1 \end{pmatrix} = 2(-1) - 3(1) = -2 - 3 = -5det(21​3−1​)=2(−1)−3(1)=−2−3=−5

Step 2: Find A−1A^{-1}A−1

A−1=1−5(−1−3−12)=(0.20.60.2−0.4)A^{-1} = \frac{1}{-5} \begin{pmatrix} -1 & -3 \\ -1 & 2 \end{pmatrix} = \begin{pmatrix} 0.2 & 0.6 \\ 0.2 & -0.4 \end{pmatrix}A−1=−51​(−1−1​−32​)=(0.20.2​0.6−0.4​)

Step 3: Multiply A−1BA^{-1}BA−1B

(xy)=(0.20.60.2−0.4)(81)\begin{pmatrix} x \\ y \end{pmatrix} = \begin{pmatrix} 0.2 & 0.6 \\ 0.2 & -0.4 \end{pmatrix} \begin{pmatrix} 8 \\ 1 \end{pmatrix}(xy​)=(0.20.2​0.6−0.4​)(81​)

x=0.2(8)+0.6(1)=1.6+0.6=2.2x = 0.2(8) + 0.6(1) = 1.6 + 0.6 = 2.2x=0.2(8)+0.6(1)=1.6+0.6=2.2

y=0.2(8)−0.4(1)=1.6−0.4=1.2y = 0.2(8) - 0.4(1) = 1.6 - 0.4 = 1.2y=0.2(8)−0.4(1)=1.6−0.4=1.2

Answer: x=2.2x = 2.2x=2.2, y=1.2y = 1.2y=1.2

Check: 2(2.2)+3(1.2)=4.4+3.6=82(2.2) + 3(1.2) = 4.4 + 3.6 = 82(2.2)+3(1.2)=4.4+3.6=8 ✓ and 2.2−1.2=12.2 - 1.2 = 12.2−1.2=1 ✓

Remember

Matrix method works when det⁡(A)≠0\det(A) \neq 0det(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)(x, y)(x,y), multiply by transformation matrix

(x′y′)=(abcd)(xy)\begin{pmatrix} x' \\ y' \end{pmatrix} = \begin{pmatrix} a & b \\ c & d \end{pmatrix} \begin{pmatrix} x \\ y \end{pmatrix}(x′y′​)=(ac​bd​)(xy​)

Rotation Matrix

Rotate counterclockwise by angle θ\thetaθ:

R(θ)=(cos⁡(θ)−sin⁡(θ)sin⁡(θ)cos⁡(θ))R(\theta) = \begin{pmatrix} \cos(\theta) & -\sin(\theta) \\ \sin(\theta) & \cos(\theta) \end{pmatrix}R(θ)=(cos(θ)sin(θ)​−sin(θ)cos(θ)​)

Example

Rotate 90° counterclockwise: cos⁡(900˘0b0)=0\cos(90\u00b0) = 0cos(900˘0b0)=0, sin⁡(900˘0b0)=1\sin(90\u00b0) = 1sin(900˘0b0)=1

R(900˘0b0)=(0−110)R(90\u00b0) = \begin{pmatrix} 0 & -1 \\ 1 & 0 \end{pmatrix}R(900˘0b0)=(01​−10​)

Transform (1,0)(1, 0)(1,0): (0−110)(10)=(01)\begin{pmatrix} 0 & -1 \\ 1 & 0 \end{pmatrix} \begin{pmatrix} 1 \\ 0 \end{pmatrix} = \begin{pmatrix} 0 \\ 1 \end{pmatrix}(01​−10​)(10​)=(01​)

Point (1,0)(1, 0)(1,0) → (0,1)(0, 1)(0,1) (rotated 90°) ✓

Reflection Matrix

Reflect across x-axis: Rx=(100−1)R_x = \begin{pmatrix} 1 & 0 \\ 0 & -1 \end{pmatrix}Rx​=(10​0−1​)

Reflect across y-axis: Ry=(−1001)R_y = \begin{pmatrix} -1 & 0 \\ 0 & 1 \end{pmatrix}Ry​=(−10​01​)

Reflect across line y=xy = xy=x: Ry=x=(0110)R_{y=x} = \begin{pmatrix} 0 & 1 \\ 1 & 0 \end{pmatrix}Ry=x​=(01​10​)

Scaling Matrix

Scale by factor kkk (same in both directions): S(k)=(k00k)S(k) = \begin{pmatrix} k & 0 \\ 0 & k \end{pmatrix}S(k)=(k0​0k​)

Scale different in each direction (x by aaa, y by bbb): S(a,b)=(a00b)S(a,b) = \begin{pmatrix} a & 0 \\ 0 & b \end{pmatrix}S(a,b)=(a0​0b​)

Example

Double the size of point (2,3)(2, 3)(2,3):

(2002)(23)=(46)\begin{pmatrix} 2 & 0 \\ 0 & 2 \end{pmatrix} \begin{pmatrix} 2 \\ 3 \end{pmatrix} = \begin{pmatrix} 4 \\ 6 \end{pmatrix}(20​02​)(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 T2T_2T2​ after T1T_1T1​: Result=T2⋅T1⋅(xy)\text{Result} = T_2 \cdot T_1 \cdot \begin{pmatrix} x \\ y \end{pmatrix}Result=T2​⋅T1​⋅(xy​)

(Work right to left: apply T1T_1T1​ first, then T2T_2T2​)

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≠BAAB \neq BAAB=BA in general

Unlike multiplication of numbers, matrix multiplication depends on order.

Example

A=(1201),B=(0110)A = \begin{pmatrix} 1 & 2 \\ 0 & 1 \end{pmatrix}, \quad B = \begin{pmatrix} 0 & 1 \\ 1 & 0 \end{pmatrix}A=(10​21​),B=(01​10​)

AB=(1201)(0110)=(2110)AB = \begin{pmatrix} 1 & 2 \\ 0 & 1 \end{pmatrix} \begin{pmatrix} 0 & 1 \\ 1 & 0 \end{pmatrix} = \begin{pmatrix} 2 & 1 \\ 1 & 0 \end{pmatrix}AB=(10​21​)(01​10​)=(21​10​)

BA=(0110)(1201)=(0112)BA = \begin{pmatrix} 0 & 1 \\ 1 & 0 \end{pmatrix} \begin{pmatrix} 1 & 2 \\ 0 & 1 \end{pmatrix} = \begin{pmatrix} 0 & 1 \\ 1 & 2 \end{pmatrix}BA=(01​10​)(10​21​)=(01​12​)

Notice: AB≠BAAB \neq BAAB=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 T1T_1T1​ and T2T_2T2​:

  • To apply T1T_1T1​ first, then T2T_2T2​: multiply as T2⋅T1T_2 \cdot T_1T2​⋅T1​ (right to left)
  • Never assume T1⋅T2=T2⋅T1T_1 \cdot T_2 = T_2 \cdot T_1T1​⋅T2​=T2​⋅T1​,they're different transformations

Summary: Key Concepts

ConceptDefinitionKey Formula
VectorObject with magnitude and direction∣v⃗∣=x2+y2\lvert\vec{v}\rvert = \sqrt{x^2 + y^2}∣v∣=x2+y2​
Vector AdditionCombine vectors head-to-tailu⃗+v⃗\vec{u} + \vec{v}u+v component-wise
MatrixRectangular array of numbersA=(aij)A = (a_{ij})A=(aij​) rows × columns
Matrix ProductRow × Column combinationABij=row i⋅col jAB_{ij} = \text{row } i \cdot \text{col } jABij​=row i⋅col j
2×2 DeterminantScalar value of matrixdet⁡(A)=ad−bc\det(A) = ad - bcdet(A)=ad−bc
2×2 InverseUndoes matrix multiplicationA−1=1ad−bc(d−b−ca)A^{-1} = \frac{1}{ad-bc}\begin{pmatrix} d & -b \\ -c & a \end{pmatrix}A−1=ad−bc1​(d−c​−ba​)
Rotation MatrixRotates by angle θ\thetaθ(cos⁡θ−sin⁡θsin⁡θcos⁡θ)\begin{pmatrix} \cos\theta & -\sin\theta \\ \sin\theta & \cos\theta \end{pmatrix}(cosθsinθ​−sinθcosθ​)
Previous
Matrices & Basic Operations
Next
Sectors, Surface Area & Volume