05
CLASS 12 Β· MATHEMATICS Β· CHAPTER 4

Applications of
Determinants

Solving systems of equations, computing areas, and checking consistency.

✦

Where Determinants Are Used

πŸ”’

Cramer's Rule

Solve a system of linear equations using ratios of determinants directly.

πŸ“

Area of Triangle

Find the area of a triangle given coordinates of its three vertices.

πŸ“

Collinearity of Points

Check if three points lie on the same line using the zero-area condition.

βš™οΈ

Consistency of Equations

Determine if a system has a unique solution, infinitely many, or none.

1

Cramer's Rule

πŸ“˜ Cramer's Rule

For a system AX = B of n linear equations in n unknowns, if |A| β‰  0, then the system has a unique solution given by:

x = D₁/D,   y = Dβ‚‚/D,   z = D₃/D

where D = |A|, and D₁, Dβ‚‚, D₃ are determinants obtained by replacing the 1st, 2nd, 3rd column respectively with the constants column B.

For the system: a₁x + b₁y + c₁z = d₁  |  aβ‚‚x + bβ‚‚y + cβ‚‚z = dβ‚‚  |  a₃x + b₃y + c₃z = d₃
D
|a₁ b₁ c₁|
|aβ‚‚ bβ‚‚ cβ‚‚|
|a₃ b₃ c₃|
coefficient matrix
x = D₁/D
|d₁ b₁ c₁|
|dβ‚‚ bβ‚‚ cβ‚‚|
|d₃ b₃ c₃|
replace col 1 with B
y = Dβ‚‚/D
|a₁ d₁ c₁|
|aβ‚‚ dβ‚‚ cβ‚‚|
|a₃ d₃ c₃|
replace col 2 with B
z = D₃/D
|a₁ b₁ d₁|
|aβ‚‚ bβ‚‚ dβ‚‚|
|a₃ b₃ d₃|
replace col 3 with B
✏️ Solved Example β€” Cramer's Rule (2 Variables)
Solve: 2x + y = 5  and  x βˆ’ 3y = βˆ’4
D

D = |2,1;1,βˆ’3| = (2)(βˆ’3) βˆ’ (1)(1) = βˆ’6βˆ’1 = βˆ’7

D₁

Replace col 1 with [5, βˆ’4]: D₁ = |5,1;βˆ’4,βˆ’3| = (5)(βˆ’3)βˆ’(1)(βˆ’4) = βˆ’15+4 = βˆ’11

Dβ‚‚

Replace col 2 with [5, βˆ’4]: Dβ‚‚ = |2,5;1,βˆ’4| = (2)(βˆ’4)βˆ’(5)(1) = βˆ’8βˆ’5 = βˆ’13

x

x = D₁/D = βˆ’11/βˆ’7 = 11/7

y

y = Dβ‚‚/D = βˆ’13/βˆ’7 = 13/7

✏️ Solved Example β€” Cramer's Rule (3 Variables)
Solve: x + y + z = 6,   2x βˆ’ y + z = 3,   x + 2y βˆ’ z = 2
D

Expand |1,1,1;2,βˆ’1,1;1,2,βˆ’1| = 1(1βˆ’2) βˆ’ 1(βˆ’2βˆ’1) + 1(4+1) = βˆ’1+3+5 = 7

D₁

Replace col 1 with [6,3,2]: D₁ = 6(1βˆ’2) βˆ’ 1(βˆ’3βˆ’2) + 1(6+2) = βˆ’6+5+8 = 7

Dβ‚‚

Replace col 2 with [6,3,2]: Dβ‚‚ = 1(βˆ’3βˆ’2) βˆ’ 6(βˆ’2βˆ’1) + 1(4βˆ’3) = βˆ’5+18+1 = 14

D₃

Replace col 3 with [6,3,2]: D₃ = 1(βˆ’2βˆ’6) βˆ’ 1(4βˆ’3) + 6(4+1) = βˆ’8βˆ’1+30 = 21

βœ“

x = 7/7 = 1,   y = 14/7 = 2,   z = 21/7 = 3

2

Area of a Triangle

If a triangle has vertices at (x₁, y₁), (xβ‚‚, yβ‚‚), and (x₃, y₃), its area can be found using a determinant.

πŸ“ Area Formula
Area = (1/2) |x₁(yβ‚‚ βˆ’ y₃) + xβ‚‚(y₃ βˆ’ y₁) + x₃(y₁ βˆ’ yβ‚‚)|
OR equivalently in determinant form:

Area = (1/2) Β· |det([[x₁, y₁, 1],[xβ‚‚, yβ‚‚, 1],[x₃, y₃, 1]])|
⚠️

The determinant can be negative depending on vertex ordering. We take the absolute value and then multiply by 1/2 to ensure area is positive.

✏️ Solved Example
Find area of triangle with vertices A(1,0), B(4,3), C(2,5)
1

Set up: Ξ” = (1/2)|det([[1,0,1],[4,3,1],[2,5,1]])|

2

Expand along R1: 1Β·|3,1;5,1| βˆ’ 0Β·|4,1;2,1| + 1Β·|4,3;2,5|

3

= 1Β·(3βˆ’5) βˆ’ 0 + 1Β·(20βˆ’6) = βˆ’2 + 14 = 12

4

Area = (1/2)|12| = 6 sq. units

3

Collinearity of Three Points

πŸ“˜ Condition for Collinearity

Three points (x₁,y₁), (xβ‚‚,yβ‚‚), (x₃,y₃) are collinear (lie on the same line) if and only if:

det([[x₁,y₁,1],[xβ‚‚,yβ‚‚,1],[x₃,y₃,1]]) = 0

This is because if they're collinear, the triangle formed has zero area.

✏️ Solved Example
Check if (1,1), (3,3), (5,5) are collinear
1

det = 1(3βˆ’5) βˆ’ 1(3βˆ’5) + 1(15βˆ’15) = 1(βˆ’2) βˆ’ 1(βˆ’2) + 0 = βˆ’2+2 = 0

βœ“

Determinant = 0 β†’ Points are collinear. (They all lie on y = x.)

4

Consistency of a System of Equations

For a system AX = B, the nature of solutions depends on the determinant of A:

βœ…

|A| β‰  0 β€” Unique Solution

System is consistent with exactly one solution. Use Cramer's rule or find A⁻¹·B.

♾️

|A| = 0, (adj A)Β·B = O β€” Infinitely Many Solutions

System is consistent but has infinite solutions (dependent equations).

❌

|A| = 0, (adj A)Β·B β‰  O β€” No Solution

System is inconsistent. The equations are contradictory with no solution.

|A|(adj A)Β·BTypeSolutions
β‰  0anyConsistentUnique βœ“
= 0= O (zero matrix)ConsistentInfinitely many
= 0β‰  OInconsistentNo solution βœ—
✏️ Example β€” Checking Consistency
x + y = 3,   2x + 2y = 7
1

A = [[1,1],[2,2]], |A| = 2βˆ’2 = 0

2

adj(A) = [[2,βˆ’1],[βˆ’2,1]]

3

(adj A)Β·B = [[2,βˆ’1],[βˆ’2,1]]Β·[3,7] = [6βˆ’7, βˆ’6+7] = [βˆ’1, 1] β‰  O

βœ—

Since |A| = 0 and (adj A)Β·B β‰  O β†’ System is inconsistent (no solution)

β˜…

Chapter Summary β€” All Key Formulae

πŸ“‹ Master Formula Sheet β€” Chapter 4
|2Γ—2 matrix| = ad βˆ’ bc
|3Γ—3 matrix| = a₁₁A₁₁ + a₁₂A₁₂ + a₁₃A₁₃ (row expansion)
Cofactor Aα΅’β±Ό = (βˆ’1)^(i+j) Γ— Mα΅’β±Ό
adj(A) = Transpose of cofactor matrix
A⁻¹ = (1/|A|) Γ— adj(A)   [when |A| β‰  0]
A Β· adj(A) = |A| Β· I
Area of β–³ = (1/2)|det([[x₁,y₁,1],[xβ‚‚,yβ‚‚,1],[x₃,y₃,1]])|
Collinear ⟺ above determinant = 0
Cramer's Rule: x = D₁/D, y = Dβ‚‚/D, z = D₃/D
|kA| = kⁿ|A| for nΓ—n matrix
|AB| = |A|Β·|B|
🎯

Exam Tips: Always (1) check if |A| β‰  0 before finding inverse or unique solution. (2) Use row operations to simplify determinants. (3) In Cramer's rule, replace the correct column with constant terms. (4) Take absolute value when computing area.