# Further Matrix Algebra (FP3)

> Edexcel International A-Level Further Mathematics · IAL FMATHS FP3
> Source: https://www.owlsprep.com/study/edexcel-ial-further-math-fp3-further-matrix-algebra/

This guide covers all Edexcel IAL FP3 further matrix algebra content, including 3D linear transformations, 3x3 determinant/inverse calculations, eigenvalues/eigenvectors, and orthogonal diagonalisation of symmetric matrices, aligned to the 2018 specification.

**Prerequisites:** [Proficiency with 2x2 matrix arithmetic, 2x2 determinants/inverses, and 2D matrix transformations (FP1 content)](https://www.owlsprep.com/study/edexcel-ial-further-math-fp1-matrix-algebra/); Ability to solve systems of linear equations

## Learning objectives

- Represent 2D and 3D linear transformations using matrices, and combine transformations via matrix multiplication
- Calculate the transpose of matrices and apply the product transpose rule (AB)ᵀ = BᵀAᵀ
- Evaluate 3x3 determinants, classify matrices as singular/non-singular, and compute 3x3 inverses
- Find eigenvalues and eigenvectors of 2x2 and 3x3 matrices, including normalised eigenvectors
- Diagonalise symmetric matrices using orthogonal matrices such that PᵀAP is diagonal
- Find the inverse of linear transformations and combined transformations where they exist

## 3D Linear Transformations & Combined Matrices

**3D Linear Transformation** — A transformation T of 3D column vectors such that $T(a\mathbf{x} + b\mathbf{y}) = aT(\mathbf{x}) + bT(\mathbf{y})$ for all scalars $a,b$ and vectors $\mathbf{x},\mathbf{y}$, represented by a 3x3 matrix $M$ where $T(\mathbf{x}) = M\mathbf{x}$.

This extends FP1 2D transformation work: each column of the 3x3 transformation matrix is the image of the standard basis vectors $\mathbf{i}, \mathbf{j}, \mathbf{k}$ respectively. For combined transformations, the first transformation applied is the right-hand matrix in the product: performing transformation B then A is represented by $AB$, per Edexcel specification.

**Worked example:** Let transformation B be a reflection in the xy-plane, and transformation A be a 90° anticlockwise rotation about the x-axis. Find the matrix representing B followed by A.

1. Matrix B (reflection in xy-plane) maps $\mathbf{i}\to\mathbf{i}, \mathbf{j}\to\mathbf{j}, \mathbf{k}\to-\mathbf{k}$:
2. $$B = \begin{pmatrix} 1 & 0 & 0 \\ 0 & 1 & 0 \\ 0 & 0 & -1 \end{pmatrix}$$
3. Matrix A (90° anticlockwise rotation about x-axis) maps $\mathbf{i}\to\mathbf{i}, \mathbf{j}\to\mathbf{k}, \mathbf{k}\to-\mathbf{j}$:
4. $$A = \begin{pmatrix} 1 & 0 & 0 \\ 0 & 0 & -1 \\ 0 & 1 & 0 \end{pmatrix}$$
5. Combined matrix for B then A is $AB$:
6. $$AB = \begin{pmatrix} 1 & 0 & 0 \\ 0 & 0 & -1 \\ 0 & 1 & 0 \end{pmatrix} \begin{pmatrix} 1 & 0 & 0 \\ 0 & 1 & 0 \\ 0 & 0 & -1 \end{pmatrix} = \begin{pmatrix} 1 & 0 & 0 \\ 0 & 0 & 1 \\ 0 & 1 & 0 \end{pmatrix}$$

> **Exam tip:** Always double-check the order of multiplication for combined transformations: the first transformation performed is the right-hand matrix in the product.

*Calculator:* allowed

## Transpose, 3x3 Determinants & Non-Singular Matrices

**Matrix Transpose** — The matrix formed by swapping the rows and columns of $A$, so the entry at row $i$, column $j$ of $A$ is at row $j$, column $i$ of $A^T$. The product transpose rule is $(AB)^T = B^T A^T$.

*Notation:* $A^T$

To calculate a 3x3 determinant, expand along the row or column with the most zeros, applying the alternating cofactor sign matrix: $\begin{pmatrix} + & - & + \\ - & + & - \\ + & - & + \end{pmatrix}$. A matrix is singular if its determinant is 0, meaning it has no inverse.

**Worked example:** Calculate the determinant of $A = \begin{pmatrix} 1 & 2 & 3 \\ 0 & 1 & 4 \\ 5 & 6 & 0 \end{pmatrix}$ and state if it is singular.

1. Expand along row 1 (has one zero to simplify calculation):
2. $$\det(A) = 1\begin{vmatrix}1 & 4 \\ 6 & 0\end{vmatrix} - 2\begin{vmatrix}0 & 4 \\ 5 & 0\end{vmatrix} + 3\begin{vmatrix}0 & 1 \\ 5 & 6\end{vmatrix}$$
3. Compute each minor determinant:
4. $$\det(A) = 1(0 - 24) - 2(0 - 20) + 3(0 - 5) = -24 + 40 - 15 = 1$$
5. $\det(A) = 1 \neq 0$, so $A$ is non-singular.

> **Exam tip:** Always pick the row or column with the most zeros to expand the determinant, to minimize arithmetic errors.

*Calculator:* allowed

## 3x3 Matrix Inverses

**Adjugate Matrix** — The transpose of the cofactor matrix of a square matrix, where cofactor $C_{ij} = (-1)^{i+j}M_{ij}$ and $M_{ij}$ is the minor (determinant of the matrix with row $i$, column $j$ removed). The inverse formula is $A^{-1} = \frac{1}{\det(A)} \text{adj}(A)$, and the product inverse rule is $(AB)^{-1} = B^{-1}A^{-1}$.

The inverse of a transformation matrix corresponds to the inverse transformation, which maps image vectors back to their original positions. Always confirm the determinant is non-zero before calculating an inverse, as singular matrices have no inverse.

**Worked example:** Find the inverse of $A = \begin{pmatrix} 1 & 2 & 3 \\ 0 & 1 & 4 \\ 5 & 6 & 0 \end{pmatrix}$, for which $\det(A) = 1$.

1. Calculate the cofactor matrix using the alternating sign rule:
2. $$\text{Cofactor matrix} = \begin{pmatrix} -24 & 20 & -5 \\ 18 & -15 & 4 \\ 5 & -4 & 1 \end{pmatrix}$$
3. Transpose the cofactor matrix to get the adjugate:
4. $$\text{adj}(A) = \begin{pmatrix} -24 & 18 & 5 \\ 20 & -15 & -4 \\ -5 & 4 & 1 \end{pmatrix}$$
5. Divide by $\det(A) = 1$ to get the inverse:
6. $$A^{-1} = \begin{pmatrix} -24 & 18 & 5 \\ 20 & -15 & -4 \\ -5 & 4 & 1 \end{pmatrix}$$

> **Exam tip:** Verify your inverse calculation by checking that $AA^{-1} = I$, the identity matrix, to catch any transposition or arithmetic errors.

*Calculator:* allowed

## Eigenvalues & Eigenvectors

**Eigenvalue & Eigenvector** — For a square matrix $A$, an eigenvalue $\lambda$ is a scalar such that $A\mathbf{x} = \lambda\mathbf{x}$ for a non-zero vector $\mathbf{x}$, which is the corresponding eigenvector. Normalised eigenvectors have a magnitude of 1, calculated by dividing $\mathbf{x}$ by $|\mathbf{x}|$.

Find eigenvalues by solving the characteristic equation $\det(A - \lambda I) = 0$. For each eigenvalue, solve $(A - \lambda I)\mathbf{x} = \mathbf{0}$ to find the corresponding eigenvectors. For symmetric matrices, eigenvectors for distinct eigenvalues are always orthogonal.

**Worked example:** Find the eigenvalues and normalised eigenvectors of symmetric matrix $A = \begin{pmatrix} 1 & 0 & 1 \\ 0 & 2 & 0 \\ 1 & 0 & 1 \end{pmatrix}$.

1. Set up and solve the characteristic equation:
2. $$\det(A - \lambda I) = \begin{vmatrix} 1-\lambda & 0 & 1 \\ 0 & 2-\lambda & 0 \\ 1 & 0 & 1-\lambda \end{vmatrix} = (2-\lambda)(\lambda^2 - 2\lambda) = 0$$
3. Eigenvalues: $\lambda = 0$, $\lambda = 2$ (repeated)
4. For $\lambda = 0$, solve $A\mathbf{x} = 0$ to get eigenvector $(1, 0, -1)$, normalise to $(\frac{1}{\sqrt{2}}, 0, -\frac{1}{\sqrt{2}})$
5. For $\lambda = 2$, solve $(A - 2I)\mathbf{x} = 0$ to get orthogonal eigenvectors $(1, 0, 1)$ and $(0, 1, 0)$, normalise to $(\frac{1}{\sqrt{2}}, 0, \frac{1}{\sqrt{2}})$ and $(0, 1, 0)$

> **Exam tip:** For repeated eigenvalues of symmetric matrices, select orthogonal eigenvectors by inspection to avoid extra orthogonalisation steps later.

*Calculator:* allowed

## Orthogonal Diagonalisation of Symmetric Matrices

**Orthogonal Diagonalisation** — For a symmetric matrix $A$, the process of finding an orthogonal matrix $P$ such that $P^TAP = D$, where $D$ is a diagonal matrix with the eigenvalues of $A$ on its leading diagonal.

To construct $P$, use normalised, orthogonal eigenvectors of $A$ as its columns. Since $P$ is orthogonal, $P^T = P^{-1}$, so this process is equivalent to diagonalising $A$ using an orthonormal basis of eigenvectors.

**Worked example:** Find an orthogonal matrix $P$ such that $P^TAP$ is diagonal for $A = \begin{pmatrix} 1 & 0 & 1 \\ 0 & 2 & 0 \\ 1 & 0 & 1 \end{pmatrix}$.

1. Use the normalised orthogonal eigenvectors from the previous example as columns of $P$:
2. $$P = \begin{pmatrix} \frac{1}{\sqrt{2}} & \frac{1}{\sqrt{2}} & 0 \\ 0 & 0 & 1 \\ -\frac{1}{\sqrt{2}} & \frac{1}{\sqrt{2}} & 0 \end{pmatrix}$$
3. Confirm $P$ is orthogonal ($P^TP = I$), then compute $P^TAP$:
4. $$P^TAP = \begin{pmatrix} 0 & 0 & 0 \\ 0 & 2 & 0 \\ 0 & 0 & 2 \end{pmatrix} = D$$

> **Exam tip:** The order of columns in $P$ corresponds to the order of eigenvalues on the leading diagonal of $D$, so you can arrange eigenvalues in any order as long as the eigenvectors match.

*Calculator:* allowed

## Common pitfalls

- **Wrong:** Multiplying combined transformation matrices in order A then B for "A then B"
  - Why it fails: Edexcel specification defines the first transformation as the right-hand matrix in the product, so reverse order is required
  - Correct: Always write the first transformation as the rightmost matrix, multiply by the second transformation on the left
- **Wrong:** Forgetting to transpose the cofactor matrix when calculating the adjugate for 3x3 inverses
  - Why it fails: The adjugate is the transpose of the cofactor matrix, not the cofactor matrix itself, so skipping this step gives an incorrect inverse
  - Correct: After calculating the cofactor matrix, swap its rows and columns to get the adjugate before dividing by the determinant
- **Wrong:** Using the order $(AB)^{-1} = A^{-1}B^{-1}$ or $(AB)^T = A^TB^T$ for products
  - Why it fails: Both inverse and transpose reverse the order of the matrix product, so these incorrect orders lead to wrong results
  - Correct: Always reverse the order of matrices when taking the transpose or inverse of a product: $(AB)^T = B^TA^T$, $(AB)^{-1} = B^{-1}A^{-1}$
- **Wrong:** Failing to normalise eigenvectors when constructing an orthogonal matrix $P$ for diagonalisation
  - Why it fails: Orthogonal matrices require columns of magnitude 1, so unnormalised eigenvectors will make $P$ non-orthogonal, so $P^TAP$ will not be diagonal
  - Correct: Divide each eigenvector by its magnitude before using it as a column of $P$ when orthogonal diagonalisation is required
- **Wrong:** Expanding a 3x3 determinant without applying the cofactor sign alternation
  - Why it fails: The cofactor sign (+/-) alternates with each row and column position, so omitting it gives an incorrect determinant value
  - Correct: Use the sign matrix $\begin{pmatrix} + & - & + \\ - & + & - \\ + & - & + \end{pmatrix}$ when expanding a 3x3 determinant along any row or column

## Cheatsheet

| Concept | Formula/Rule | Key Note |
| --- | --- | --- |
| 3D Transformation Matrix | Columns = images of $\mathbf{i},\mathbf{j},\mathbf{k}$ | B then A = $AB$ (right matrix first) |
| Transpose Product Rule | $(AB)^T = B^TA^T$ | Swap rows and columns of $A$ to get $A^T$ |
| 3x3 Determinant | Expand along row/column with cofactor signs | $\det(A)=0$ → singular, no inverse |
| 3x3 Inverse | $A^{-1} = \frac{1}{\det(A)} \times \text{adj}(A)$ | $(AB)^{-1} = B^{-1}A^{-1}$ |
| Eigenvalues | Solve $\det(A - \lambda I) = 0$ | $\lambda$ solves $A\mathbf{x} = \lambda\mathbf{x}$ |
| Eigenvectors | Solve $(A - \lambda I)\mathbf{x} = 0$ | Normalise: divide by $\|\mathbf{x}\|$ for orthonormal vectors |
| Orthogonal Diagonalisation | $P^TAP = D$, $P$ orthogonal | $D$ has eigenvalues of $A$ on leading diagonal |

## What's next

Now that you have mastered further matrix algebra for FP3, you can apply these concepts to other FP3 topics including linear systems of equations and 3D geometry, where matrices are used to represent planes and intersections. Eigenvalues and diagonalisation are also foundational for university-level linear algebra, engineering, and data science if you plan to pursue these fields at higher education. Make sure to practice full past paper questions on this topic to build speed and accuracy, as matrix questions are often worth 10+ marks and require careful step-by-step calculation to avoid arithmetic errors. Recap FP1 matrix content if you struggled with prerequisite knowledge, as gaps in basic matrix arithmetic will slow you down significantly in FP3 exam questions.

- [FP2 Further Complex Numbers](https://www.owlsprep.com/study/edexcel-ial-further-math-fp2-further-complex-numbers/)

---

From [OwlsPrep](https://www.owlsprep.com) — free study guides for A-Level, IB, AP and IGCSE, written against the official syllabus. Canonical page: https://www.owlsprep.com/study/edexcel-ial-further-math-fp3-further-matrix-algebra/
