01
CLASS 12 ยท MATHEMATICS ยท CHAPTER 4

Introduction &
Basic Determinants

Understanding what a determinant is, how to compute it, and when it matters.

1

What is a Determinant?

A determinant is a special number associated with every square matrix. It is a scalar value computed from the elements of a matrix and encodes important properties about the matrix โ€” such as whether the matrix has an inverse.

Determinant of a matrix A is written as det(A) or |A|.

๐Ÿ“˜ Definition

For every square matrix A, a unique real number is associated called the determinant of A, denoted by det(A) or |A|. Only square matrices have determinants.

๐Ÿ”ข

Scalar Output

A determinant always produces a single number (scalar), not a matrix.

โฌ›

Square Matrices Only

Determinants are defined only for square matrices (n ร— n), not rectangular ones.

๐Ÿ”‘

Key Property

If |A| โ‰  0, the matrix is called non-singular and has an inverse.

2

Determinant of 1ร—1 and 2ร—2 Matrices

Order 1ร—1: For a 1ร—1 matrix A = [a], the determinant is simply the element itself.

1ร—1 Determinant
|A| = |[a]| = a

Order 2ร—2: For a 2ร—2 matrix, the determinant is the difference of products of diagonals.

2ร—2 Determinant Formula
a b c d
=
ad โˆ’ bc
โœ๏ธ Solved Example
Find the determinant of A = [[3, 4], [5, 2]]
1

Identify elements: a = 3, b = 4, c = 5, d = 2

2

Apply formula: |A| = ad โˆ’ bc = (3ร—2) โˆ’ (4ร—5)

3

|A| = 6 โˆ’ 20 = โˆ’14

โœ๏ธ Solved Example 2
If |A| = 0, find x for A = [[x, 2], [3, 6]]
1

|A| = 6x โˆ’ 6 = 0

2

6x = 6 โ†’ x = 1

3

Determinant of a 3ร—3 Matrix

For a 3ร—3 matrix, we use expansion along the first row (also called Laplace's expansion).

3ร—3 Matrix โ€” Row Expansion
|A| = aโ‚โ‚(aโ‚‚โ‚‚aโ‚ƒโ‚ƒ โˆ’ aโ‚‚โ‚ƒaโ‚ƒโ‚‚)
     โˆ’ aโ‚โ‚‚(aโ‚‚โ‚aโ‚ƒโ‚ƒ โˆ’ aโ‚‚โ‚ƒaโ‚ƒโ‚)
     + aโ‚โ‚ƒ(aโ‚‚โ‚aโ‚ƒโ‚‚ โˆ’ aโ‚‚โ‚‚aโ‚ƒโ‚)
๐Ÿ’ก

Signs follow the pattern +, โˆ’, + when expanding along the first row. This alternating sign pattern is crucial โ€” don't miss it!

โœ๏ธ Solved Example
Find |A| for A = [[1, 2, 3], [4, 5, 6], [7, 8, 9]]
1

Expand along Row 1: |A| = 1ยท|5,6;8,9| โˆ’ 2ยท|4,6;7,9| + 3ยท|4,5;7,8|

2

= 1ยท(45โˆ’48) โˆ’ 2ยท(36โˆ’42) + 3ยท(32โˆ’35)

3

= 1ยท(โˆ’3) โˆ’ 2ยท(โˆ’6) + 3ยท(โˆ’3)

4

= โˆ’3 + 12 โˆ’ 9 = 0

โš ๏ธ

When |A| = 0, the matrix is singular (non-invertible). The rows (or columns) are linearly dependent.

4

Singular and Non-Singular Matrices

PropertySingular MatrixNon-Singular Matrix
Determinant|A| = 0|A| โ‰  0
InverseDoes NOT existExists (Aโปยน)
Rows/ColumnsLinearly dependentLinearly independent
System of equationsNo unique solutionUnique solution exists
5

Important Results to Remember

๐Ÿ“Œ Key Formulae

โ€ข For scalar k and matrix A of order n: |kA| = kโฟ|A|
โ€ข |AB| = |A|ยท|B| (product rule)
โ€ข |Aแต€| = |A| (determinant of transpose equals determinant)
โ€ข If any row or column is zero โ†’ |A| = 0
โ€ข If any two rows/columns are identical โ†’ |A| = 0