πŸ“ Mathematics β€” Class XII Β· Algebra

Determinants

The scalar companion of square matrices β€” solving equations, finding areas, and testing invertibility

πŸ“– Chapter 4 ⏱ ~55 min read 🏷 Algebra

In this chapter

  1. What is a Determinant?
  2. Area of a Triangle
  3. Minors and Cofactors
  4. Adjoint and Inverse
  5. Applications
  6. Summary

4.1 What is a Determinant?

"All Mathematical truths are relative and conditional." β€” C.P. Steinmetz

A determinant is a scalar value associated with every square matrix. It encodes important properties of the matrix β€” whether it's invertible, how it transforms area/volume, and whether a system of linear equations has a unique solution.

Determinant structure for 2Γ—2 and 3Γ—3 matrices
Figure 4.1 β€” Determinant structure for 2Γ—2 and 3Γ—3 matrices with sign pattern
πŸ“ Definition

For a square matrix A = [aα΅’β±Ό] of order n, the determinant is denoted by |A| or det(A) or βˆ†.

Order 1: |[a]| = a
Order 2: |a b; c d| = ad βˆ’ bc
Order 3: Expand along any row or column

Determinant of Order 3 Γ— 3

A 3Γ—3 determinant can be expanded along any row or column (6 ways total), and all give the same result. Expanding along the first row:

Expansion along R₁ |A| = a₁₁(aβ‚‚β‚‚a₃₃ βˆ’ a₃₂a₂₃) βˆ’ a₁₂(a₂₁a₃₃ βˆ’ a₃₁a₂₃) + a₁₃(a₂₁a₃₂ βˆ’ a₃₁aβ‚‚β‚‚)
πŸ’‘ Pro Tip

Always expand along the row or column with the most zeros β€” it saves time! The sign pattern for positions alternates: +, βˆ’, +; βˆ’, +, βˆ’; +, βˆ’, +

⚠️ Key Property

If A = kB where A and B are square matrices of order n, then |A| = kⁿ|B|, not k|B|.
Example: If A = 2B (2Γ—2), then |A| = 4|B|, not 2|B|.

4.2 Area of a Triangle

Determinants provide an elegant way to compute the area of a triangle when the vertex coordinates are known.

Area of triangle using determinant
Figure 4.2 β€” Area of a triangle using 3Γ—3 determinant with vertex coordinates
Area Formula Area = Β½ |det|

x₁ y₁ 1
xβ‚‚ yβ‚‚ 1
x₃ y₃ 1
⚠️ Important Notes

(i) Area is always positive β€” take the absolute value of the determinant
(ii) If the area is given, use both Β± values for the determinant
(iii) If three points are collinear, the area = 0

4.3 Minors and Cofactors

Minors and cofactors provide a systematic way to expand determinants and are essential for finding adjoints and inverses.

Minors and cofactors visualization
Figure 4.3 β€” Minors reduce order by 1; cofactors add alternating signs
πŸ”’

Minor (Mα΅’β±Ό)

The determinant obtained by deleting the ith row and jth column. For a 3Γ—3 matrix, each minor is a 2Γ—2 determinant.

Β±

Cofactor (Aα΅’β±Ό)

Aα΅’β±Ό = (βˆ’1)ⁱ⁺ʲ Γ— Mα΅’β±Ό. The cofactor is the minor with a sign depending on position.

Determinant via Cofactor Expansion

Cofactor Expansion |A| = a₁₁A₁₁ + a₁₂A₁₂ + a₁₃A₁₃ (expanding along R₁)
= a₁₁A₁₁ + a₂₁A₂₁ + a₃₁A₃₁ (expanding along C₁)
πŸ“ Key Fact

The sum of products of elements of any row (or column) with their own cofactors = determinant.

But if elements of one row are multiplied with cofactors of a different row, the sum = 0.

4.4 Adjoint and Inverse

The adjoint of a matrix is the transpose of its cofactor matrix. It is the key to finding the inverse.

Adjoint and inverse of a matrix
Figure 4.4 β€” Adjoint is transpose of cofactors; inverse divides adjoint by determinant

Adjoint of a Matrix

πŸ“ Definition

The adjoint of a square matrix A is the transpose of the matrix of cofactors:

adj A = [Aβ±Όα΅’] (transpose of cofactor matrix [Aα΅’β±Ό])

Shortcut for 2Γ—2: adj [a, b; c, d] = [d, βˆ’b; βˆ’c, a] β€” swap diagonal, negate off-diagonal

Key Theorem

Fundamental Relation A (adj A) = (adj A) A = |A| I

Inverse of a Matrix

βœ…

Non-singular (|A| β‰  0)

A⁻¹ exists and is unique. A⁻¹ = (1/|A|) adj A

❌

Singular (|A| = 0)

A⁻¹ does NOT exist. The matrix cannot be inverted.

Properties

PropertyStatement
Inverse FormulaA⁻¹ = (1/|A|) adj A
|adj A||adj A| = |A|ⁿ⁻¹ (n = order)
Reversal Law(AB)⁻¹ = B⁻¹A⁻¹
Double Inverse(A⁻¹)⁻¹ = A
Product Rule|AB| = |A| Γ— |B|

4.5 Applications

Determinants and matrix inverses are powerful tools for solving systems of linear equations and checking their consistency.

Solving linear equations using matrix inverse
Figure 4.5 β€” Solving AX = B using matrix inverse method

Solving AX = B

πŸ“ Matrix Method

For the system a₁x + b₁y + c₁z = d₁, etc., write AX = B:

Case 1: |A| β‰  0 β†’ Unique solution: X = A⁻¹B
Case 2: |A| = 0 and (adj A)B β‰  O β†’ No solution (inconsistent)
Case 3: |A| = 0 and (adj A)B = O β†’ Either no solution or infinitely many

Consistency

βœ“

Consistent

The system has at least one solution (unique or infinite).

βœ—

Inconsistent

The system has no solution at all.

4.6 Summary

βœ… Key Takeaways

β€’ Determinant is a scalar associated with square matrices β€” |A| or det(A)

β€’ 2Γ—2: |a b; c d| = ad βˆ’ bc Β· 3Γ—3: expand along any row/column

β€’ |kA| = kⁿ|A| (n = order), not k|A|

β€’ Area of triangle = Β½|determinant with vertex coordinates|

β€’ Minor Mα΅’β±Ό: delete row i, column j Β· Cofactor Aα΅’β±Ό = (βˆ’1)ⁱ⁺ʲ Mα΅’β±Ό

β€’ adj A = transpose of cofactor matrix Β· A(adj A) = |A|I

β€’ Singular: |A| = 0 (no inverse) Β· Non-singular: |A| β‰  0 (inverse exists)

β€’ A⁻¹ = (1/|A|) adj A when |A| β‰  0

β€’ |adj A| = |A|ⁿ⁻¹ Β· |AB| = |A||B| Β· (AB)⁻¹ = B⁻¹A⁻¹

β€’ Solve AX = B β†’ X = A⁻¹B when |A| β‰  0

Ch 3 β€” Matrices Ch 5 β€” Continuity and Differentiability