You are viewing a free preview of this lesson.
Subscribe to unlock all 10 lessons in this course and every other course on LearningBro.
The determinant is a single number distilled from a square matrix, and it answers the most important question you can ask about that matrix: is it invertible? A non-zero determinant means yes (the matrix represents a reversible transformation and a system Ax=b has a unique solution); a zero determinant means no (the matrix is singular, collapses space, and the corresponding system fails to have a unique solution). Geometrically the determinant is a signed area or volume scale factor: it tells you both how much a transformation magnifies regions and whether it flips orientation. This lesson computes determinants of 2×2 and 3×3 matrices, establishes the key properties, and reads off their geometric meaning. The determinant deserves its central place: of all the numbers you can extract from a matrix, it is the one that controls invertibility, solvability and orientation simultaneously, and it threads through every remaining topic in the strand. Get the computation reliable and the interpretation secure, and the inverse, the linear-systems and the eigenvalue lessons will follow almost mechanically.
Determinants are compulsory pure content for Papers 1 and 2. The computation is AO1; the interpretation (singularity, area/volume scale factor, orientation) and the use of the multiplicative property det(AB)=detAdetB are AO2/AO3. The determinant is the gateway to inverses (lesson 4: A−1 exists ⟺detA=0), to solving systems (lesson 5: unique solution ⟺detA=0), and to eigenvalues (lesson 8: det(A−λI)=0). It is one of the most reused tools in the whole matrices strand.
For A=(acbd), the determinant is
det(A)=∣A∣=ad−bc.
"Product of the main diagonal minus product of the off-diagonal." Two quick instances:
det(3125)=3⋅5−2⋅1=13,det(4263)=4⋅3−6⋅2=0.The second is singular (det=0) — its rows (4,6) and (2,3) are proportional, a visible sign of dependence. Note the notation ∣A∣ means determinant, not "absolute value"; a determinant can be negative.
For A=adgbehcfk, expanding along the first row:
det(A)=aehfk−bdgfk+cdgeh=a(ek−fh)−b(dk−fg)+c(dh−eg).
Each 2×2 determinant is the minor of the entry it multiplies — the determinant of what remains after deleting that entry's row and column. The alternating +,−,+ signs come from the cofactor sign pattern:
+−+−+−+−+.You may expand along any row or column using this pattern — choose the one with the most zeros to minimise work.
It is worth being precise about the vocabulary, because exam questions use it. The minor Mij of entry aij is the determinant of the (n−1)×(n−1) matrix obtained by deleting row i and column j. The cofactor Cij=(−1)i+jMij is the minor with its checkerboard sign attached. The expansion along row i is then detA=∑jaijCij, and along column j it is detA=∑iaijCij. The sign (−1)i+j is + when i+j is even and − when odd — which is exactly the checkerboard, starting with + in the top-left corner. This recursive structure (a 3×3 reduces to three 2×2s, a 4×4 to four 3×3s) is precisely how determinants of any size are defined; the cofactors will reappear in the next lesson as the building blocks of the adjugate matrix used to invert A.
Find det2011−1432−1.
det=2((−1)(−1)−(2)(4))−1((0)(−1)−(2)(1))+3((0)(4)−(−1)(1))=2(1−8)−1(0−2)+3(0+1)=2(−7)−1(−2)+3(1)=−14+2+3=−9.Mark scheme: M1 for a correct cofactor expansion structure (three 2×2 minors with the correct +,−,+ signs); A1 for the three minors −7,−2,1 correct; A1 for det=−9. The minus sign in front of the middle term is the most common error — losing it gives −18.
Find det1322−15004.
The third column is (0,0,4)T, so expanding down it kills two terms. The (3,3) cofactor sign is +:
det=4132−1=4(1⋅(−1)−2⋅3)=4(−7)=−28.Mark scheme: M1 for choosing the column (or row) with most zeros and expanding correctly; A1 for the surviving minor 132−1=−7; A1 for det=−28. Choosing the zero-rich line is rewarded implicitly through fewer chances to slip.
For a dense 3×3 with no zeros, it is often quicker to create a zero first. Adding a multiple of one row to another does not change the determinant, so we can engineer a convenient entry. Consider
det241315123.Subtract 2× row 3 from row 1 (leaving the determinant unchanged): row 1 becomes (2−2,3−10,1−6)=(0,−7,−5). Now expand along the new zero in column 1:
det=041−715−523=−(−7)4123+(−5)4115=7(10)−5(19)=70−95=−25.(Here the row-1 cofactor signs are +,−,+, so the −7 entry carries a − and the −5 entry a +.) Direct first-row expansion of the original matrix gives the same −25 — a good consistency check, and proof that row operations are a legitimate labour-saver.
| Property | Statement |
|---|---|
| det(I)=1 | The identity has determinant 1 |
| det(AB)=det(A)det(B) | Determinants are multiplicative |
| det(AT)=det(A) | Transpose leaves the determinant unchanged |
| det(kA)=kndet(A) | For an n×n matrix |
| Row/column swap | Multiplies the determinant by −1 |
| Two equal rows/columns | Determinant is 0 |
| det(A−1)=det(A)1 | When A is invertible |
| det(A)=0 | ⟺A is singular (no inverse) |
Two consequences worth internalising. First, det(AB)=detAdetB means a product is singular precisely when a factor is — this is why the zero-divisor example in the multiplication lesson had two singular factors. Second, det(kA)=kndetA carries the dimension n as an exponent: scaling a 3×3 matrix by 2 multiplies its determinant by 23=8, reflecting that volume scales with the cube of length.
The multiplicative property also pins down det(A−1). Since AA−1=I, taking determinants gives det(A)det(A−1)=det(I)=1, so det(A−1)=1/det(A) — which already shows that an inverse can only exist when detA=0 (otherwise we would be dividing by zero). The same trick gives det(An)=(detA)n for any positive integer n, and indeed for negative n when A is invertible. These are not separate facts to memorise but quick corollaries of one identity — a theme of good Further-Maths technique is to derive rather than store.
Given detA=5 and detB=−2 for 3×3 matrices, find det(2ABT).
det(2ABT)=23det(A)det(BT)=8⋅det(A)det(B)=8⋅5⋅(−2)=−80.Mark scheme: M1 for using det(kA)=kndetA with n=3; M1 for det(ABT)=detAdetBT and detBT=detB; A1 for −80. A frequent slip is using 2 rather than 23 for the scalar factor.
For a 2×2 matrix acting as a linear transformation:
For a 3×3 matrix, ∣det(A)∣ is the volume scale factor, with the same sign convention for orientation.
For example, (2003) has determinant 6 and stretches every area by a factor of 6 (it doubles in x, triples in y). The unit square 0≤x,y≤1, area 1, maps to a 2×3 rectangle, area 6 — exactly the determinant. A reflection such as (100−1) has determinant −1: area is preserved in size but orientation flips.
The interpretation extends to any region, not just the unit square, because a linear map scales all areas by the same factor. So if a triangle of area 7 is transformed by a matrix with det=−4, its image has area 7×∣−4∣=28, with the vertices traversed in the opposite (clockwise vs anticlockwise) sense because the determinant is negative. This is genuinely useful: to find how a transformation rescales an awkward shape you need only its determinant, never the shape's own area formula.
Two standard transformations to recognise from their determinants: a pure rotation has determinant +1 (it preserves both area and orientation), and a pure reflection has determinant −1 (it preserves area but reverses orientation). A determinant with ∣det∣=1 therefore signals that some genuine stretching or shrinking is taking place on top of any rotation or reflection.
A matrix is singular when det(A)=0. Equivalent statements (all examined):
Subscribe to continue reading
Get full access to this lesson and all 10 lessons in this course.