PYQ Vault

MHT-CET Maths · Determinants and Matrices

Inverse of a Matrix — Adjoint Formula, Products and Verification

A⁻¹ = adj(A)/|A| — for a 2 × 2 that is swap-the-diagonal, negate-the-off-diagonal, divide by the determinant — and (AB)⁻¹ = B⁻¹A⁻¹ handles anything built from products.

Why this matters

15 PYQs at 33% HARD — the chapter's steady marks. A plain 2 × 2 inverse is set most years, and the HARD variants only add one step before it: compute A² − 5A or A + B first, or notice that a matrix with tan x or cot(θ/2) entries has a trigonometric determinant and an adjoint equal to its transpose. The two-matrix stems — (AB)⁻¹ given, find B⁻¹ — and the unknown-entries stems are the same fact, AA⁻¹ = I, read in two directions.

Concept 1 of 5

Inverse of a 2 × 2 Matrix

Intuition

Since A adj⁡A=∣A∣ IA\,\operatorname{adj}A = |A|\,I, dividing the adjoint by the determinant gives a matrix that multiplies AA to the identity. For 2×22 \times 2 the adjoint is a swap and two sign changes, so the inverse takes ten seconds.

Definition

  • A−1=1∣A∣adj⁡AA^{-1} = \dfrac{1}{|A|}\operatorname{adj}A, defined only when ∣A∣≠0|A| \ne 0.
  • (abcd)−1=1ad−bc(d−b−ca)\begin{pmatrix} a & b \\ c & d \end{pmatrix}^{-1} = \dfrac{1}{ad - bc}\begin{pmatrix} d & -b \\ -c & a \end{pmatrix}.
  • The options are usually written with the scalar outside: 114(32−42)\dfrac{1}{14}\begin{pmatrix} 3 & 2 \\ -4 & 2 \end{pmatrix}; match the sign of the scalar AND the signs inside — −114(32−42)-\dfrac{1}{14}\begin{pmatrix} 3 & 2 \\ -4 & 2 \end{pmatrix} is a different matrix.
  • A matrix with ∣A∣=1|A| = 1 (like (0.8−0.60.60.8)\begin{pmatrix} 0.8 & -0.6 \\ 0.6 & 0.8 \end{pmatrix}) has A−1=adj⁡AA^{-1} = \operatorname{adj}A; a rotation-type matrix has A−1=ATA^{-1} = A^T.
  • Verify when in doubt: AA−1AA^{-1} must be II.

2 × 2 inverse

(abcd)−1=1ad−bc(d−b−ca),ad−bc≠0\begin{pmatrix} a & b \\ c & d \end{pmatrix}^{-1} = \frac{1}{ad - bc}\begin{pmatrix} d & -b \\ -c & a \end{pmatrix}, \quad ad - bc \ne 0

Worked example

Find the inverse of A=(4325)A = \begin{pmatrix} 4 & 3 \\ 2 & 5 \end{pmatrix}.
Practice this conceptself-check · 4 quick reps

From the bank · past-year question

Example 1Determinants and MatricesEASY
If A=(3−1−42)A = \begin{pmatrix} 3 & -1 \\ -4 & 2 \end{pmatrix}, then A−1A^{-1} is

[Q150 · 2nd May Shift 1 · 2023]

Swapping signs on the diagonal instead of the off-diagonal

The adjoint of (abcd)\begin{pmatrix} a & b \\ c & d \end{pmatrix} is (d−b−ca)\begin{pmatrix} d & -b \\ -c & a \end{pmatrix}: the diagonal entries SWAP places and keep their signs; the off-diagonal entries stay put and change sign. Every option list contains the other three sign patterns.

Concept 2 of 5

Invert an Expression: Compute A² − 5A or A + B First, Then Invert

Intuition

(A2−5A)−1(A^2 - 5A)^{-1} is not (A2)−1−(5A)−1(A^2)^{-1} - (5A)^{-1}. Multiply out A2A^2, subtract 5A5A, and invert the single 2×22 \times 2 matrix that results — the difficulty is arithmetic discipline, not theory.

Definition

  • Compute the expression entry by entry first: A2=A⋅AA^2 = A\cdot A, then combine, then invert the result.
  • For A=(2174)A = \begin{pmatrix} 2 & 1 \\ 7 & 4 \end{pmatrix}: A2−5A=(1173)A^2 - 5A = \begin{pmatrix} 1 & 1 \\ 7 & 3 \end{pmatrix}, determinant −4-4, inverse 14(−317−1)\dfrac14\begin{pmatrix} -3 & 1 \\ 7 & -1 \end{pmatrix}.
  • (A+B)−1(A + B)^{-1}: add first — (A+B)−1≠A−1+B−1(A + B)^{-1} \ne A^{-1} + B^{-1}.
  • A power with a parameter: A=(x110)A = \begin{pmatrix} x & 1 \\ 1 & 0 \end{pmatrix} gives A4=(x4+3x2+1x3+2xx3+2xx2+1)A^4 = \begin{pmatrix} x^4 + 3x^2 + 1 & x^3 + 2x \\ x^3 + 2x & x^2 + 1 \end{pmatrix}; a11=109a_{11} = 109 forces x=3x = 3, A4=(109333310)A^4 = \begin{pmatrix} 109 & 33 \\ 33 & 10 \end{pmatrix} with determinant 11, so its inverse is (10−33−33109)\begin{pmatrix} 10 & -33 \\ -33 & 109 \end{pmatrix}.
  • Factor out a scalar at the end: 1475(35151520)=195(7334)\dfrac{1}{475}\begin{pmatrix} 35 & 15 \\ 15 & 20 \end{pmatrix} = \dfrac{1}{95}\begin{pmatrix} 7 & 3 \\ 3 & 4 \end{pmatrix} — the options are reduced.

Order of operations

(A2−5A)−1=(the matrix A2−5A)−1≠(A2)−1−(5A)−1,(A+B)−1≠A−1+B−1(A^2 - 5A)^{-1} = \left(\text{the matrix } A^2 - 5A\right)^{-1} \ne (A^2)^{-1} - (5A)^{-1}, \qquad (A + B)^{-1} \ne A^{-1} + B^{-1}

Worked example

For A=(1201)A = \begin{pmatrix} 1 & 2 \\ 0 & 1 \end{pmatrix}, find (A2+A)−1(A^2 + A)^{-1}.
Practice this conceptself-check

From the bank · past-year question

Example 2Determinants and MatricesHARD
If A=(2174)A = \begin{pmatrix}2 & 1\\7 & 4\end{pmatrix} then (A2−5A)−1(A^2-5A)^{-1} is

[Q141 · 11th May Shift 2 · 2023]

Distributing the inverse over a sum

There is no rule for (A+B)−1(A + B)^{-1} or (A2−5A)−1(A^2 - 5A)^{-1} except to form the matrix and invert it. The distractors are exactly what distributing produces.

Concept 3 of 5

Matrices with tan x Entries: |A| = sec²x and adj A = Aᵀ

Intuition

A=(1tan⁡x−tan⁡x1)A = \begin{pmatrix} 1 & \tan x \\ -\tan x & 1 \end{pmatrix} has determinant 1+tan⁡2x=sec⁡2x1 + \tan^2x = \sec^2x, and its adjoint is exactly its transpose. So A−1=cos⁡2x ATA^{-1} = \cos^2x\,A^T, and ATA−1A^TA^{-1} turns out to be a rotation by 2x2x.

Definition

  • For A=(1t−t1)A = \begin{pmatrix} 1 & t \\ -t & 1 \end{pmatrix}: ∣A∣=1+t2|A| = 1 + t^2, adj⁡A=(1−tt1)=AT\operatorname{adj}A = \begin{pmatrix} 1 & -t \\ t & 1 \end{pmatrix} = A^T, so A−1=AT1+t2A^{-1} = \dfrac{A^T}{1 + t^2}.
  • With t=tan⁡xt = \tan x: ATA−1=(AT)21+tan⁡2x=11+tan⁡2x(1−tan⁡2x−2tan⁡x2tan⁡x1−tan⁡2x)=(cos⁡2x−sin⁡2xsin⁡2xcos⁡2x)A^TA^{-1} = \dfrac{(A^T)^2}{1 + \tan^2x} = \dfrac{1}{1 + \tan^2x}\begin{pmatrix} 1 - \tan^2x & -2\tan x \\ 2\tan x & 1 - \tan^2x \end{pmatrix} = \begin{pmatrix} \cos 2x & -\sin 2x \\ \sin 2x & \cos 2x \end{pmatrix}.
  • With t=cot⁡θ2t = \cot\dfrac{\theta}{2}: ∣A∣=csc⁡2θ2|A| = \csc^2\dfrac{\theta}{2}, so A−1=sin⁡2θ2 AT=1−cos⁡θ2ATA^{-1} = \sin^2\dfrac{\theta}{2}\,A^T = \dfrac{1 - \cos\theta}{2}A^T.
  • The identities used: 1−tan⁡2x1+tan⁡2x=cos⁡2x\dfrac{1 - \tan^2x}{1 + \tan^2x} = \cos 2x, 2tan⁡x1+tan⁡2x=sin⁡2x\dfrac{2\tan x}{1 + \tan^2x} = \sin 2x, sin⁡2θ2=1−cos⁡θ2\sin^2\dfrac{\theta}{2} = \dfrac{1 - \cos\theta}{2}.

The tan-entry matrix

A=(1tan⁡x−tan⁡x1): ∣A∣=sec⁡2x, adj⁡A=AT, A−1=cos⁡2x AT, ATA−1=(cos⁡2x−sin⁡2xsin⁡2xcos⁡2x)A = \begin{pmatrix} 1 & \tan x \\ -\tan x & 1 \end{pmatrix}:\ |A| = \sec^2x,\ \operatorname{adj}A = A^T,\ A^{-1} = \cos^2x\,A^T,\ A^TA^{-1} = \begin{pmatrix} \cos 2x & -\sin 2x \\ \sin 2x & \cos 2x \end{pmatrix}

Worked example

For A=(1tan⁡x−tan⁡x1)A = \begin{pmatrix} 1 & \tan x \\ -\tan x & 1 \end{pmatrix}, find A−1A^{-1} in terms of ATA^T.
Practice this conceptself-check · 4 quick reps

From the bank · past-year question

Example 3Determinants and MatricesMODERATE
If A=[1tan⁡x−tan⁡x1]A =\begin{bmatrix} 1 & \tan x \\ - \tan x & 1 \end{bmatrix}, then ATA−1=A^{T}A^{- 1}=

[Q148 · 20 April Shift I · 2025]

Sign of the sin 2x entries

ATA−1A^TA^{-1} has −sin⁡2x-\sin 2x in the top-right and +sin⁡2x+\sin 2x in the bottom-left. The four sign arrangements are all offered; compute the (1,2)(1,2) entry explicitly — −tan⁡x−tan⁡x1+tan⁡2x=−sin⁡2x\dfrac{-\tan x - \tan x}{1 + \tan^2x} = -\sin 2x.

Concept 4 of 5

(AB)⁻¹ = B⁻¹A⁻¹: Inverting Products and Recovering a Factor

Intuition

To undo 'first BB, then AA' you undo AA first, then BB — so the inverse of a product reverses the order. Given (AB)−1(AB)^{-1} and A−1A^{-1}, multiplying by AA on the right peels A−1A^{-1} off and leaves B−1B^{-1}.

Definition

  • (AB)−1=B−1A−1(AB)^{-1} = B^{-1}A^{-1}; hence B−1=(AB)−1AB^{-1} = (AB)^{-1}A and A−1=B (AB)−1A^{-1} = B\,(AB)^{-1}.
  • (A−1)−1=A(A^{-1})^{-1} = A: to recover AA from A−1=13(43−10)A^{-1} = \dfrac13\begin{pmatrix} 4 & 3 \\ -1 & 0 \end{pmatrix}, invert it — determinant 13\dfrac13, so A=(0−314)A = \begin{pmatrix} 0 & -3 \\ 1 & 4 \end{pmatrix}.
  • (AT)−1=(A−1)T(A^T)^{-1} = (A^{-1})^T, (kA)−1=1kA−1(kA)^{-1} = \dfrac1k A^{-1}, (An)−1=(A−1)n(A^n)^{-1} = (A^{-1})^n.
  • For a non-square product like A2×3B3×2A_{2\times3}B_{3\times2}: compute ABAB (a 2×22 \times 2) and invert it directly — the factors themselves have no inverse.

Inverse of a product

(AB)−1=B−1A−1B−1=(AB)−1A(A−1)−1=A(AT)−1=(A−1)T(AB)^{-1} = B^{-1}A^{-1} \qquad B^{-1} = (AB)^{-1}A \qquad (A^{-1})^{-1} = A \qquad (A^T)^{-1} = (A^{-1})^T

Worked example

If (AB)−1=(1201)(AB)^{-1} = \begin{pmatrix} 1 & 2 \\ 0 & 1 \end{pmatrix} and A=(1011)A = \begin{pmatrix} 1 & 0 \\ 1 & 1 \end{pmatrix}, find B−1B^{-1}.
Practice this conceptself-check · 4 quick reps

From the bank · past-year question

Example 4Determinants and MatricesMODERATE
If A and B are non-singular matrices of order 2 such that (AB)−1=16[−7−323](AB)^{- 1}=\frac{1}{6}\begin{bmatrix} - 7 & - 3 \\ 2 & 3 \end{bmatrix} and A−1=13[43−10]A^{- 1}=\frac{1}{3}\begin{bmatrix} 4 & 3 \\ - 1 & 0 \end{bmatrix} then B−1=B^{- 1}=

[Q110 · 23 April Shift I · 2025]

Keeping the order

(AB)−1=A−1B−1(AB)^{-1} = A^{-1}B^{-1} is false unless the matrices commute. Reversing is the whole rule; with it, B−1=(AB)−1AB^{-1} = (AB)^{-1}A and NOT A (AB)−1A\,(AB)^{-1}.

Concept 5 of 5

Unknown Entries and A⁻¹ = A³: Use AA⁻¹ = I

Intuition

If BB is claimed to be A−1A^{-1}, then AB=IAB = I, and each entry of that product is an equation. Three well-chosen entries give the three unknowns. The same fact read backwards — A−1=A3A^{-1} = A^3 means A4=IA^4 = I — settles 'which power is the inverse' questions.

Definition

  • Write out only the entries of ABAB that contain the unknowns; each must equal the corresponding entry of II (11 on the diagonal, 00 off it).
  • Pick entries where ONE unknown appears: 15b=015b = 0 gives bb at once; then use bb in the next.
  • A−1=Ak  ⟺  Ak+1=IA^{-1} = A^k \iff A^{k+1} = I. Test A2A^2, then A4=(A2)2A^4 = (A^2)^2: if A4=IA^4 = I then A−1=A3A^{-1} = A^3.
  • A stem with a printed inconsistency (two entries forcing different values of aa) has happened; the official key follows the entry the setter used. Prefer the entry involving the most unknowns' pairing that the answer options confirm.

The defining property of the inverse

AB=I  ⟺  B=A−1A−1=A3  ⟺  A4=IAB = I \iff B = A^{-1} \qquad A^{-1} = A^{3} \iff A^{4} = I

Worked example

If A=(2132)A = \begin{pmatrix} 2 & 1 \\ 3 & 2 \end{pmatrix} and A−1=(p−1q2)A^{-1} = \begin{pmatrix} p & -1 \\ q & 2 \end{pmatrix}, find pp and qq.
Practice this conceptself-check

From the bank · past-year question

Example 5Determinants and MatricesMODERATE
If matrix A=111[−17−242a42−315]A =\frac{1}{11}\begin{bmatrix} - 1 & 7 & - 24 \\ 2 & a & 4 \\ 2 & - 3 & 15 \end{bmatrix} and A−1=[3342−34b−1c]A^{- 1}=\begin{bmatrix} 3 & 3 & 4 \\ 2 & - 3 & 4 \\ b & - 1 & c \end{bmatrix}, then the values of a,b,ca,b,c respectively are ____\_\_\_\_

[Q109 · 22 April Shift II · 2025]

Solving all nine entries

Three unknowns need three equations; the other six entries are checks. Choosing the entries that isolate one unknown each keeps the arithmetic to a few lines — solving the whole product is where time goes.

Summary — formulas & gotchas at a glance

A revision cheat-sheet for the formulas and gotchas above. Click any concept name to jump back to its full explanation.

Formulas (5)

  • Inverse of a 2 × 2 Matrix

    2 × 2 inverse

    (abcd)−1=1ad−bc(d−b−ca),ad−bc≠0\begin{pmatrix} a & b \\ c & d \end{pmatrix}^{-1} = \frac{1}{ad - bc}\begin{pmatrix} d & -b \\ -c & a \end{pmatrix}, \quad ad - bc \ne 0
  • Invert an Expression: Compute A² − 5A or A + B First, Then Invert

    Order of operations

    (A2−5A)−1=(the matrix A2−5A)−1≠(A2)−1−(5A)−1,(A+B)−1≠A−1+B−1(A^2 - 5A)^{-1} = \left(\text{the matrix } A^2 - 5A\right)^{-1} \ne (A^2)^{-1} - (5A)^{-1}, \qquad (A + B)^{-1} \ne A^{-1} + B^{-1}
  • Matrices with tan x Entries: |A| = sec²x and adj A = Aᵀ

    The tan-entry matrix

    A=(1tan⁡x−tan⁡x1): ∣A∣=sec⁡2x, adj⁡A=AT, A−1=cos⁡2x AT, ATA−1=(cos⁡2x−sin⁡2xsin⁡2xcos⁡2x)A = \begin{pmatrix} 1 & \tan x \\ -\tan x & 1 \end{pmatrix}:\ |A| = \sec^2x,\ \operatorname{adj}A = A^T,\ A^{-1} = \cos^2x\,A^T,\ A^TA^{-1} = \begin{pmatrix} \cos 2x & -\sin 2x \\ \sin 2x & \cos 2x \end{pmatrix}
  • (AB)⁻¹ = B⁻¹A⁻¹: Inverting Products and Recovering a Factor

    Inverse of a product

    (AB)−1=B−1A−1B−1=(AB)−1A(A−1)−1=A(AT)−1=(A−1)T(AB)^{-1} = B^{-1}A^{-1} \qquad B^{-1} = (AB)^{-1}A \qquad (A^{-1})^{-1} = A \qquad (A^T)^{-1} = (A^{-1})^T
  • Unknown Entries and A⁻¹ = A³: Use AA⁻¹ = I

    The defining property of the inverse

    AB=I  ⟺  B=A−1A−1=A3  ⟺  A4=IAB = I \iff B = A^{-1} \qquad A^{-1} = A^{3} \iff A^{4} = I

Watch out for (5)

Drill every past-year question on this subtopic

15 questions from the bank — paginated, with cart and Word-export support.

Related notes