Matrix is a rectangular arrays of numbers used to represent data, transformations, and systems of equations. Three very important matrix concepts are the identity matrix, determinant, and inverse of a matrix. These ideas help us understand how matrices behave and how they are applied in problem-solving.
1. Identity Matrix
What Is an Identity Matrix?
The identity matrix is a special square matrix that behaves like the number 1 in ordinary multiplication. When a matrix is multiplied by the identity matrix, the matrix remains unchanged.
Structure of an Identity Matrix
2 × 2 Identity Matrix
[ 1 0 ]
[ 0 1 ]
3 × 3 Identity Matrix
[ 1 0 0 ]
[ 0 1 0 ]
[ 0 0 1 ]
Key Property
If A is any square matrix of the same order:
This makes the identity matrix important when defining the inverse of a matrix.
2. Determinant of a Matrix
Meaning of the Determinant
The determinant is a single number calculated from a square matrix. It tells us:
- Whether a matrix has an inverse
- Whether a system of linear equations has a unique solution
Determinant of a 2 × 2 Matrix
For the matrix:
The determinant is:
Visual Illustration
[ a b ] → |A| = (a × d) − (b × c)
[ c d ]
Example
Interpretation
- If |A| ≠ 0, the matrix is non-singular (has an inverse)
- If |A| = 0, the matrix is singular (no inverse)
3. Inverse of a Matrix
What Is an Inverse Matrix?
The inverse of a matrix reverses the effect of the original matrix.
If A⁻¹ is the inverse of A, then:
Condition for an Inverse
A matrix has an inverse only if:
Inverse of a 2 × 2 Matrix
For:
The inverse is:
Step-by-Step Illustration
Original matrix: Swap diagonals: Change signs:
[ a b ] [ d b ] [ d -b ]
[ c d ] [ c a ] [ -c a ]
Multiply by 1 / determinant
Example
Determinant:
Inverse:summary of identity matrix, determinant and inverse

Practice Questions
Section A: Identity Matrix
- Write down the 2 × 2 identity matrix.
- State the result of multiplying any matrix by the identity matrix.
Answers
[ 1 0 ]
[ 0 1 ]
- The original matrix remains unchanged.
Section B: Determinants
- Find the determinant of:
- Determine whether the matrix is singular or non-singular:
Answers
The matrix is singular
Section C: Inverse of a Matrix
- Find the inverse of:
Answer
Determinant:
Inverse:
Summary Diagram (Concept Link)
Determinant ≠ 0
↓
Matrix has an inverse
↓
Inverse × Original = Identity Matrix
Related topics



Leave a Reply