Study Guide

Matrices

CIE A-Level Further MathematicsΒ· Unit 1: Further Pure 1, Topic 4: MatricesΒ· 15 min read

1. Determinants of 3Γ—3 Matricesβ˜…β˜…β˜†β˜†β˜†β± 5 min

🚫 No Calculator

πŸ“˜ Definition

Determinant

det⁑(A) or βˆ£A∣\det(A) \text{ or } |A|

A scalar value calculated from a square matrix. A non-zero determinant means the matrix is invertible, while a determinant of zero means the matrix is singular (non-invertible).

Example:

For 2Γ—2 matrix , .

To calculate the determinant of a 3Γ—3 matrix, we use cofactor expansion. For any entry , the cofactor is , where (the minor) is the determinant of the 2Γ—2 submatrix obtained by deleting row and column . We can expand along any row or column.

πŸ“ Worked Example

Find for

  1. 1

    Expand along the first row, which has a zero to reduce computation:

  2. 2
    det⁑(A)=a11C11+a12C12+a13C13C11=(βˆ’1)1+1∣1βˆ’103∣=1(3βˆ’0)=3C12=(βˆ’1)1+2∣3βˆ’1βˆ’23∣=βˆ’1(9βˆ’2)=βˆ’7C13=(βˆ’1)1+3∣31βˆ’20∣=1(0+2)=2\det(A) = a_{11}C_{11} + a_{12}C_{12} + a_{13}C_{13} \\ C_{11} = (-1)^{1+1} \begin{vmatrix} 1 & -1 \\ 0 & 3 \end{vmatrix} = 1(3 - 0) = 3 \\ C_{12} = (-1)^{1+2} \begin{vmatrix} 3 & -1 \\ -2 & 3 \end{vmatrix} = -1(9 - 2) = -7 \\ C_{13} = (-1)^{1+3} \begin{vmatrix} 3 & 1 \\ -2 & 0 \end{vmatrix} = 1(0 + 2) = 2
  3. 3

    Substitute back to get the final determinant:

  4. 4
    det⁑(A)=(1)(3)+(2)(βˆ’7)+(0)(2)=3βˆ’14=βˆ’11\det(A) = (1)(3) + (2)(-7) + (0)(2) = 3 - 14 = -11

Exam tip:

Always expand along the row or column with the most zeros to reduce arithmetic and cut down on calculation time.

2. Inverse Matrices and Matrix Rankβ˜…β˜…β˜…β˜†β˜†β± 8 min

🚫 No Calculator

πŸ“˜ Definition

Rank of a Matrix

rank(A)\text{rank}(A)

The maximum number of linearly independent rows (or columns) of A. For a 3Γ—3 matrix: rank = 3 if , rank = 2 if but at least one non-zero 2Γ—2 minor, rank = 1 if all 2Γ—2 minors are zero.

Example:

A 3Γ—3 singular matrix has rank less than 3.

To find the inverse of a 3Γ—3 matrix, we use the adjugate method: , where (the adjugate) is the transpose of the cofactor matrix of A.

πŸ“ Worked Example

Find for

  1. 1

    We already know , so the inverse exists. First, construct the full cofactor matrix C:

  2. 2
    C=(3βˆ’72βˆ’63βˆ’4βˆ’21βˆ’5)C = \begin{pmatrix} 3 & -7 & 2 \\ -6 & 3 & -4 \\ -2 & 1 & -5 \end{pmatrix}
  3. 3

    The adjugate matrix is the transpose of C:

  4. 4
    adj(A)=CT=(3βˆ’6βˆ’2βˆ’7312βˆ’4βˆ’5)\text{adj}(A) = C^T = \begin{pmatrix} 3 & -6 & -2 \\ -7 & 3 & 1 \\ 2 & -4 & -5 \end{pmatrix}
  5. 5

    Divide by to get the inverse:

  6. 6
    Aβˆ’1=1βˆ’11(3βˆ’6βˆ’2βˆ’7312βˆ’4βˆ’5)=(βˆ’311611211711βˆ’311βˆ’111βˆ’211411511)A^{-1} = \frac{1}{-11} \begin{pmatrix} 3 & -6 & -2 \\ -7 & 3 & 1 \\ 2 & -4 & -5 \end{pmatrix} = \begin{pmatrix} -\frac{3}{11} & \frac{6}{11} & \frac{2}{11} \\ \frac{7}{11} & -\frac{3}{11} & -\frac{1}{11} \\ -\frac{2}{11} & \frac{4}{11} & \frac{5}{11} \end{pmatrix}
  7. 7

    Verify by multiplying to confirm you get the identity matrix, to catch errors.

Exam tip:

Always transpose the cofactor matrix to get the adjugate. This is one of the most common errors in inverse matrix calculations.

3. Solving Systems of Linear Equationsβ˜…β˜…β˜…β˜†β˜†β± 7 min

🚫 No Calculator

Any system of 3 linear equations in 3 unknowns can be written as , where A is the coefficient matrix, is the vector of unknowns, and is the constant vector. The number of solutions depends on the determinant and rank of A and the augmented matrix .

  1. If : rank(A) = 3, unique solution

  2. If : either no solution (inconsistent, rank(A) < rank(augmented)) or infinitely many solutions (rank(A) = rank(augmented) < 3)

πŸ“ Worked Example

Find the solution to the system: , ,

  1. 1

    Write the system in matrix form , where A is the matrix from earlier examples, and .

  2. 2

    We know , so there is a unique solution. Use :

  3. 3
    x=(βˆ’311611211711βˆ’311βˆ’111βˆ’211411511)(50βˆ’11)=(βˆ’37114611βˆ’6511)\mathbf{x} = \begin{pmatrix} -\frac{3}{11} & \frac{6}{11} & \frac{2}{11} \\ \frac{7}{11} & -\frac{3}{11} & -\frac{1}{11} \\ -\frac{2}{11} & \frac{4}{11} & \frac{5}{11} \end{pmatrix} \begin{pmatrix}5 \\ 0 \\ -11\end{pmatrix} = \begin{pmatrix} -\frac{37}{11} \\ \frac{46}{11} \\ -\frac{65}{11} \end{pmatrix}
  4. 4

    The unique solution is , , .

Exam tip:

If asked to show a system is inconsistent, eliminate variables and look for a contradiction of the form where .

4. Eigenvalues and Eigenvectorsβ˜…β˜…β˜…β˜†β˜†β± 6 min

🚫 No Calculator

πŸ“˜ Definition

Eigenvalue and Eigenvector

(eigenvalue), (eigenvector)

For a square matrix A, a non-zero vector is an eigenvector if for some scalar , which is the corresponding eigenvalue. To find eigenvalues, solve the characteristic equation .

πŸ“ Worked Example

Find the eigenvalues and eigenvectors of

  1. 1

    Form the characteristic equation:

  2. 2
    det⁑(Aβˆ’Ξ»I)=∣2βˆ’Ξ»112βˆ’Ξ»βˆ£=(2βˆ’Ξ»)2βˆ’1=Ξ»2βˆ’4Ξ»+3=0\det(A - \lambda I) = \begin{vmatrix} 2-\lambda & 1 \\ 1 & 2-\lambda \end{vmatrix} = (2-\lambda)^2 - 1 = \lambda^2 - 4\lambda + 3 = 0
  3. 3

    Factor the quadratic to find eigenvalues:

  4. 4
    (Ξ»βˆ’1)(Ξ»βˆ’3)=0β€…β€ŠβŸΉβ€…β€ŠΞ»=1 and Ξ»=3(\lambda - 1)(\lambda - 3) = 0 \implies \lambda = 1 \text{ and } \lambda = 3
  5. 5

    Find eigenvector for by solving :

  6. 6
    (1111)(xy)=(00)β€…β€ŠβŸΉβ€…β€Šy=βˆ’x\begin{pmatrix} 1 & 1 \\ 1 & 1 \end{pmatrix} \begin{pmatrix} x \\ y \end{pmatrix} = \begin{pmatrix} 0 \\ 0 \end{pmatrix} \implies y = -x
  7. 7

    Eigenvectors for are all non-zero scalar multiples of . Repeat for :

  8. 8
    (Aβˆ’3I)v=0β€…β€ŠβŸΉβ€…β€Šy=xβ€…β€ŠβŸΉβ€…β€Šeigenvectors=k(11),kβ‰ 0(A - 3I)\mathbf{v} = \mathbf{0} \implies y = x \implies \text{eigenvectors} = k\begin{pmatrix}1 \\ 1\end{pmatrix}, kβ‰ 0

Exam tip:

Never accept the zero vector as an eigenvector. Always state that the scalar multiple must be non-zero in your answer.

5. Common Pitfalls

Wrong move:

Forgetting the sign when calculating cofactors

Why:

Sign errors are the most common mistake in determinant and inverse calculations

Correct move:

Write the cofactor sign matrix next to your work to check each entry's sign

Wrong move:

Forgetting to transpose the cofactor matrix to get the adjugate

Why:

Many students use the cofactor matrix directly as the adjugate, leading to an incorrect inverse

Correct move:

Always transpose the cofactor matrix before dividing by the determinant to get

Wrong move:

Claiming means the system has no solutions

Why:

A zero determinant only means there is no unique solution, not that there are no solutions

Correct move:

Check the rank of the augmented matrix: if rank(A) < rank(augmented), no solution; if ranks are equal, infinitely many solutions

Wrong move:

Accepting the zero vector as an eigenvector

Why:

The definition of an eigenvector requires it to be non-zero, and zero satisfies for any

Correct move:

Always state that eigenvectors are non-zero scalar multiples of your basis vector

Wrong move:

Expanding a 3x3 determinant along a row with no zeros

Why:

This increases the number of calculations you need to do, raising the chance of arithmetic error and wasting time

Correct move:

Always pick the row or column with the most zeros to expand the determinant

6. Quick Reference Cheatsheet

Concept

Key Rule/Formula

3Γ—3 Determinant

Expand along row/column with most zeros:

Inverse Matrix

,

Singular Matrix

, no inverse exists

Linear System

unique solution ; check rank for no/infinitely many solutions

Characteristic Equation

, solve for eigenvalues

Eigenvector

Solve ,

When this came up on past exams

AI-estimated based on syllabus patterns β€” cross-check with official past papers for accuracy. Use only as revision-focus signals.

  • 2022 Β· 1

    3x3 inverse, system of linear equations

  • 2023 Β· 1

    Eigenvalues of 2x2 matrix

  • 2024 Β· 1

    Rank and consistency of linear system

Going deeper

What's Next

Matrices are the foundational building block for all linear algebra topics in CIE A-Level Further Mathematics. The skills you master here β€” calculating determinants, finding inverses, solving linear systems, and working with eigenvalues β€” are applied repeatedly in advanced topics across all Further Pure units. Understanding core matrix properties is essential to scoring full marks on linear transformation, diagonalization, and differential system questions later in your course. Building fluency with matrix arithmetic now will reduce cognitive load for more complex topics in future units.