Skip to content

Determinants | CBSE - Wyatt's Notes

sources:

  • text: Standard textbook reference

Determinants are scalar values associated with square matrices. They determine whether a matrix is invertible, represent area/volume scaling, and are used in Cramer’s rule for solving linear systems.

  • Determinant of a 2x2 matrix: det(abcd)=adbc\det\begin{pmatrix} a & b \\ c & d \end{pmatrix} = ad - bc
  • Cofactor expansion along row ii: det(A)=j(1)i+jaijMij\det(A) = \sum_j (-1)^{i+j} a_{ij} M_{ij}
  • Properties: det(AB)=det(A)det(B)\det(AB) = \det(A)\det(B), det(AT)=det(A)\det(A^T) = \det(A)
  • det(kA)=kndet(A)\det(kA) = k^n \det(A) for an n×nn \times n matrix
  • Row operations: swapping rows changes sign, adding a multiple of one row to another doesn’t change determinant
  • Cramer’s rule: xi=det(Ai)det(A)x_i = \frac{\det(A_i)}{\det(A)} where AiA_i replaces column ii with the constant vector

Problem: Find the determinant of A=(123014560)A = \begin{pmatrix} 1 & 2 & 3 \\ 0 & 1 & 4 \\ 5 & 6 & 0 \end{pmatrix}.

Solution:

Expand along the first row: det(A)=1146020450+30156\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}

=1(024)2(020)+3(05)= 1(0 - 24) - 2(0 - 20) + 3(0 - 5)

=24+4015=1= -24 + 40 - 15 = 1

Common mistake: Forgetting the (1)i+j(-1)^{i+j} sign pattern. The signs alternate as +,,+,,+, -, +, -, \ldots

Problem: Solve the system: 2x+3y=82x + 3y = 8 x2y=3x - 2y = -3

Solution:

D=2312=2(2)3(1)=7D = \begin{vmatrix} 2 & 3 \\ 1 & -2 \end{vmatrix} = 2(-2) - 3(1) = -7

Dx=8332=8(2)3(3)=16+9=7D_x = \begin{vmatrix} 8 & 3 \\ -3 & -2 \end{vmatrix} = 8(-2) - 3(-3) = -16 + 9 = -7

Dy=2813=2(3)8(1)=68=14D_y = \begin{vmatrix} 2 & 8 \\ 1 & -3 \end{vmatrix} = 2(-3) - 8(1) = -6 - 8 = -14

x=DxD=77=1,y=DyD=147=2x = \frac{D_x}{D} = \frac{-7}{-7} = 1, \quad y = \frac{D_y}{D} = \frac{-14}{-7} = 2

Common mistake: Using Cramer’s rule when D=0D = 0. If the determinant is zero, the system has no unique solution.

Worked Example 3 — Area Using Determinants

Section titled “Worked Example 3 — Area Using Determinants”

Problem: Find the area of the triangle with vertices (1,2)(1, 2), (4,5)(4, 5), and (7,1)(7, 1).

Solution:

Area=12121451711\text{Area} = \frac{1}{2} \left| \begin{vmatrix} 1 & 2 & 1 \\ 4 & 5 & 1 \\ 7 & 1 & 1 \end{vmatrix} \right|

Expand along the first row: =121(51)2(47)+1(435)= \frac{1}{2} |1(5 - 1) - 2(4 - 7) + 1(4 - 35)|

=124+631=1221=212=10.5 square units= \frac{1}{2} |4 + 6 - 31| = \frac{1}{2} |-21| = \frac{21}{2} = 10.5 \text{ square units}

Common mistake: Forgetting the absolute value. Area must be positive.

  1. Find the determinant of (312041105)\begin{pmatrix} 3 & 1 & 2 \\ 0 & 4 & 1 \\ 1 & 0 & 5 \end{pmatrix}.
  2. Solve using Cramer’s rule: x+y=5x + y = 5, 2xy=12x - y = 1.
  3. Find the area of the triangle with vertices (0,0)(0, 0), (3,4)(3, 4), and (6,0)(6, 0).

Determinants are used in linear algebra, multivariable calculus (Jacobian), and physics (cross products, volume calculations). Understanding determinants is essential for solving linear systems, finding inverses, and computing eigenvalues.

  • Expand along the row or column with the most zeros to simplify calculations
  • Use row operations to create zeros before expanding
  • Remember: det(A1)=1/det(A)\det(A^{-1}) = 1/\det(A)
  • For a triangular matrix, the determinant is the product of diagonal entries
  • Practice with both numerical and symbolic determinants
  • 2x2: abcd=adbc\begin{vmatrix} a & b \\ c & d \end{vmatrix} = ad - bc
  • 3x3 cofactor expansion: det(A)=a11C11+a12C12+a13C13\det(A) = a_{11}C_{11} + a_{12}C_{12} + a_{13}C_{13} (along first row)
  • Cramer’s rule: xi=DiDx_i = \frac{D_i}{D}
  • Area of triangle: 12x1y11x2y21x3y31\frac{1}{2} \left| \begin{vmatrix} x_1 & y_1 & 1 \\ x_2 & y_2 & 1 \\ x_3 & y_3 & 1 \end{vmatrix} \right|
  • Collinearity condition: x1y11x2y21x3y31=0\begin{vmatrix} x_1 & y_1 & 1 \\ x_2 & y_2 & 1 \\ x_3 & y_3 & 1 \end{vmatrix} = 0

Problem: Find xx if 2x3416123=0\begin{vmatrix} 2 & x & 3 \\ 4 & 1 & 6 \\ 1 & 2 & 3 \end{vmatrix} = 0.

Solution:

Expand along the first row: 21623x4613+34112=02 \begin{vmatrix} 1 & 6 \\ 2 & 3 \end{vmatrix} - x \begin{vmatrix} 4 & 6 \\ 1 & 3 \end{vmatrix} + 3 \begin{vmatrix} 4 & 1 \\ 1 & 2 \end{vmatrix} = 0

2(312)x(126)+3(81)=02(3 - 12) - x(12 - 6) + 3(8 - 1) = 0

2(9)x(6)+3(7)=02(-9) - x(6) + 3(7) = 0

186x+21=0-18 - 6x + 21 = 0

36x=0    x=123 - 6x = 0 \implies x = \frac{1}{2}

Common mistake: Sign errors in cofactor expansion. The signs alternate as +,,++, -, + along the first row.

Worked Example 5 — Properties of Determinants

Section titled “Worked Example 5 — Properties of Determinants”

Problem: If AA is a 3×33 \times 3 matrix with det(A)=5\det(A) = 5, find det(2A)\det(2A), det(A1)\det(A^{-1}), and det(ATA)\det(A^T A).

Solution:

For a 3×33 \times 3 matrix: det(2A)=23det(A)=8×5=40\det(2A) = 2^3 \det(A) = 8 \times 5 = 40

det(A1)=1det(A)=15\det(A^{-1}) = \frac{1}{\det(A)} = \frac{1}{5}

det(ATA)=det(AT)det(A)=det(A)det(A)=5×5=25\det(A^T A) = \det(A^T) \det(A) = \det(A) \cdot \det(A) = 5 \times 5 = 25

Common mistake: Using det(kA)=kdet(A)\det(kA) = k \det(A) instead of det(kA)=kndet(A)\det(kA) = k^n \det(A) for an n×nn \times n matrix.

Worked Example 6 — Solving System Using Cramer’s Rule

Section titled “Worked Example 6 — Solving System Using Cramer’s Rule”

Problem: Solve the system: x+y+z=6x + y + z = 6 2x+3y+z=142x + 3y + z = 14 3x2y+4z=53x - 2y + 4z = 5

Solution:

D=111231324=1(12+2)1(83)+1(49)=14513=4D = \begin{vmatrix} 1 & 1 & 1 \\ 2 & 3 & 1 \\ 3 & -2 & 4 \end{vmatrix} = 1(12+2) - 1(8-3) + 1(-4-9) = 14 - 5 - 13 = -4

Dx=6111431524=6(12+2)1(565)+1(2815)=845143=10D_x = \begin{vmatrix} 6 & 1 & 1 \\ 14 & 3 & 1 \\ 5 & -2 & 4 \end{vmatrix} = 6(12+2) - 1(56-5) + 1(-28-15) = 84 - 51 - 43 = -10

x=DxD=104=52x = \frac{D_x}{D} = \frac{-10}{-4} = \frac{5}{2}

Similarly: Dy=8D_y = -8, y=2y = 2; Dz=2D_z = 2, z=12z = -\frac{1}{2}

Common mistake: When computing DxD_x, replace the first column (not row) with the constants.

  1. Always expand along the row or column with the most zeros to save time
  2. Use row operations to simplify before expanding: adding a multiple of one row to another doesn’t change the determinant
  3. For Cramer’s rule, check that D0D \neq 0 before proceeding
  4. Collinearity of three points (x1,y1)(x_1, y_1), (x2,y2)(x_2, y_2), (x3,y3)(x_3, y_3) is equivalent to the determinant being zero
  5. Practice with matrices containing variables to build algebraic fluency

A determinant measures how much a matrix stretches or squishes space: Think of a 2×2 matrix as transforming a unit square into a parallelogram. The determinant is the signed area of that parallelogram — positive if orientation is preserved, negative if flipped, zero if the parallelogram collapses to a line or point. For 3×3, it’s the signed volume of the transformed unit cube.

Why it matters: Determinants tell you whether a system of equations has a unique solution, whether a transformation is invertible, and how volumes change under linear maps. They appear in Jacobians for change of variables, cross products in physics, and eigenvalue problems in engineering.

The key insight: A zero determinant means the matrix collapses space to a lower dimension — information is lost, and the transformation cannot be reversed.

Forgetting that swapping rows changes the sign of the determinant. When using row operations to simplify a determinant, swapping two rows multiplies the determinant by -1. Students often forget this sign change, leading to incorrect final values. Track the number of row swaps to determine the correct sign.

Confusing det(kA) with k*det(A). For an n x n matrix, det(kA) = k^n det(A), not k det(A). Each of the n rows is multiplied by k, so the determinant is multiplied by k^n. Students frequently write det(2A) = 2det(A) instead of 2^n det(A).

Applying Cramer’s rule without checking that det(A) != 0. Cramer’s rule requires the system to have a unique solution, which means the coefficient matrix must be non-singular. If det(A) = 0, the system has either no solution or infinitely many. Students sometimes proceed with Cramer’s rule on singular systems, getting division by zero.

  • Matrices — Determinants are properties of square matrices, used to test invertibility and compute areas and volumes.
  • Calculus — Jacobian determinants appear in change of variables for multiple integrals, connecting determinants to integration.
  • Linear Equations — The determinant determines whether a system of linear equations has a unique solution.