How to find Inverse of Matrix | Class 12 Matrices Tutorial

Mathematics Study Notes

Class XII | Chapter: Matrices

Topic: Invertible Matrices and Uniqueness of Inverse

Concept 1: Invertible Matrices

A square matrix is said to be invertible if there exists another square matrix of the same order such that their product results in the Identity matrix.

Definition

If \(A\) is a square matrix of order \(m\), and if there exists another square matrix \(B\) of the same order \(m\), such that:

$$AB = BA = I$$

then \(B\) is called the inverse matrix of \(A\) and it is denoted by \(A^{-1}\). In such a case, \(A\) is said to be invertible.

Key Properties and Conditions

  1. Square Matrix Requirement: A rectangular matrix does not possess an inverse matrix because for products \(AB\) and \(BA\) to be defined and equal, \(A\) and \(B\) must be square matrices of the same order.
  2. Non-Singularity: A matrix \(A\) is invertible if and only if it is non-singular, i.e., \(|A| \neq 0\).
  3. Inverse of Inverse: \((A^{-1})^{-1} = A\).
  4. Reversal Law: If \(A\) and \(B\) are invertible matrices of the same order, then \((AB)^{-1} = B^{-1} A^{-1}\).

Solved Examples (Invertible Matrices)

Example 1:

Show that \(B = \begin{bmatrix} 2 & -1 \\ -5 & 3 \end{bmatrix}\) is the inverse of \(A = \begin{bmatrix} 3 & 1 \\ 5 & 2 \end{bmatrix}\).

Solution:

To prove \(B\) is the inverse of \(A\), we must show \(AB = I\).

$$AB = \begin{bmatrix} 3 & 1 \\ 5 & 2 \end{bmatrix} \begin{bmatrix} 2 & -1 \\ -5 & 3 \end{bmatrix} = \begin{bmatrix} 1 & 0 \\ 0 & 1 \end{bmatrix} = I$$

Similarly, \(BA = I\). Thus, \(B = A^{-1}\).

Example 2:

Find the inverse of \(A = \begin{bmatrix} \cos \theta & \sin \theta \\ -\sin \theta & \cos \theta \end{bmatrix}\).

Solution:

Let \(B = \begin{bmatrix} \cos \theta & -\sin \theta \\ \sin \theta & \cos \theta \end{bmatrix}\).

$$AB = \begin{bmatrix} 1 & 0 \\ 0 & 1 \end{bmatrix} = I \implies A^{-1} = \begin{bmatrix} \cos \theta & -\sin \theta \\ \sin \theta & \cos \theta \end{bmatrix}$$

Example 3:

If \(A\) is an invertible matrix, show that \((A^T)^{-1} = (A^{-1})^T\).

Solution:

We know \(AA^{-1} = I\). Taking transpose:

$$(AA^{-1})^T = I^T \implies (A^{-1})^T A^T = I \implies (A^T)^{-1} = (A^{-1})^T$$

Example 4:

If \(A = \begin{bmatrix} 2 & 3 \\ 1 & 2 \end{bmatrix}\), verify that \(A^2 – 4A + I = O\) and use this to find \(A^{-1}\).

Solution:

$$A^2 = \begin{bmatrix} 7 & 12 \\ 4 & 7 \end{bmatrix}, \quad A^2 – 4A + I = O, \quad A^{-1} = 4I – A = \begin{bmatrix} 2 & -3 \\ -1 & 2 \end{bmatrix}$$

Example 5:

For two invertible matrices \(A\) and \(B\), if \((AB)^{-1} = B^{-1}A^{-1}\) holds, find \(B^{-1}\) if \(A=I\) and \(AB = \begin{bmatrix}1 & 2 \\ 0 & 1\end{bmatrix}\).

Solution:

Since \(A=I\), \(B=AB=\begin{bmatrix}1 & 2 \\ 0 & 1\end{bmatrix}\).

$$B^{-1} = \begin{bmatrix}1 & -2 \\ 0 & 1\end{bmatrix}$$

Concept 2: Uniqueness of Inverse

A significant theorem in matrix algebra states that if an inverse of a square matrix exists, it must be unique.

Theorem: Uniqueness of Inverse

Statement: Inverse of a square matrix, if it exists, is unique.

Formal Proof

Let \(A\) be a square matrix. Suppose \(B\) and \(C\) are two inverses of \(A\).

$$AB = BA = I, \quad AC = CA = I$$

By associativity and identity property:

$$B = BI = B(AC) = (BA)C = IC = C$$

Thus, the inverse is unique.

Solved Examples (Uniqueness and Properties)

Example 1:

If \(A\) is invertible and \(AB=AC\), prove \(B=C\).

Solution:

$$A^{-1}(AB)=A^{-1}(AC) \implies B=C$$

Example 2:

Show that the inverse of a symmetric matrix is also symmetric.

Solution:

$$(A^{-1})^T = (A^T)^{-1} = A^{-1}$$

Example 3:

If \(A^3 = I\), prove \(A\) is invertible.

Solution:

Let \(B=A^2\), then \(AB=BA=I \implies A^{-1}=A^2\).

Example 4:

Verify uniqueness using \(A=\begin{bmatrix}1 & 2 \\ 3 & 4\end{bmatrix}\).

Solution:

The proof logic holds for any square matrix.

Example 5:

If \(AB=I\), does it mean \(B=A^{-1}\)?

Solution:

Yes, for square matrices, \(AB=I\) implies \(BA=I\), so \(B\) is uniquely \(A^{-1}\).

Self Exercise (HOTS)

  1. If \(A\) and \(B\) are invertible matrices of same order, prove \((AB)^{-1} = B^{-1} A^{-1}\).
  2. If \(A^2 – A + I = O\), prove \(A\) is non-singular and find \(A^{-1}\) in terms of \(A\).
  3. Let \(A\) be invertible. If \(A\) commutes with \(B\), prove \(A^{-1}\) commutes with \(B\).
  4. Find inverse of \(A=\begin{bmatrix}1 & 0 & 0 \\ 0 & 1 & 0 \\ a & b & -1\end{bmatrix}\).
  5. If \(A=\begin{bmatrix}2 & 3 \\ 5 & 7\end{bmatrix}\) and \(B=\begin{bmatrix}1 & 0 \\ -1 & 2\end{bmatrix}\), verify \((AB)^{-1}=B^{-1}A^{-1}\).
  6. If \(A\) is idempotent (\(A^2=A\)) and invertible, prove \(A=I\).
  7. For \(3\times3\) matrix \(A\), if \(A^2+2A+I=O\), find \(A^{-1}\) and show it is unique.
  8. If \(A\) is skew-symmetric of order 3, is it invertible? Explain.
  9. If \(A\) is invertible, prove \(\det(A^{-1})=1/\det(A)\).
  10. Let \(A=\begin{bmatrix}1 & \tan x \\ -\tan x & 1\end{bmatrix}\). Show \(A^T A^{-1} = \begin{bmatrix}\cos 2x & -\sin 2x \\ \sin 2x & \cos 2x\end{bmatrix}\).

Invertible Matrices Class 12 | Uniqueness of Inverse | MathStudy.in

Frequently Asked Questions (FAQs) on Invertible Matrices and Uniqueness of Inverse

1. What is an invertible matrix and what conditions make a matrix invertible?

An invertible matrix is a square matrix that has an inverse, meaning there exists another square matrix B such that AB = BA = I. A matrix is invertible if and only if it is non-singular (determinant ≠ 0). The Math Case Studies Class 12 PDF Book covers invertible matrices with real-world application problems and detailed solutions.

2. How do you prove that the inverse of a square matrix is unique?

The uniqueness of inverse is proved by assuming two inverses B and C for matrix A. Since AB = I and AC = I, we get B = B(AC) = (BA)C = C, proving B = C. This fundamental theorem ensures that every invertible matrix has exactly one inverse. Our Math Case Studies Class 12 PDF Book includes step-by-step proofs and practice questions.

3. What is the reversal law for inverses and how is it applied?

The reversal law states that for invertible matrices A and B of the same order, (AB)⁻¹ = B⁻¹ A⁻¹. This means the inverse of a product equals the product of inverses in reverse order. The law is essential for simplifying complex matrix expressions. The Math Case Studies Class 12 PDF Book provides multiple examples demonstrating this property.

4. Why must a matrix be square to be invertible?

A rectangular matrix cannot be invertible because for AB and BA to both be defined and equal to the identity matrix, both A and B must be square matrices of the same order. Non-square matrices have different dimensions for AB and BA, making it impossible to obtain the identity matrix. This concept is clearly explained in our e-book resources.

5. How can you find the inverse of a 2×2 matrix using the adjoint method?

For a 2×2 matrix A = [[a, b], [c, d]], the inverse is A⁻¹ = (1/det(A)) [[d, -b], [-c, a]], provided det(A) ≠ 0. This formula is derived from the adjoint method and is frequently tested in board exams. The Math Case Studies Class 12 PDF Book includes numerous practice problems on finding inverses.

6. What is the relationship between the inverse of a transpose and the transpose of an inverse?

For any invertible matrix A, (Aᵀ)⁻¹ = (A⁻¹)ᵀ. This property shows that the inverse operation and transpose operation commute. It can be proven by taking transpose of A A⁻¹ = I. Our Math Case Studies Class 12 PDF Book contains detailed proofs and applications of this property.

7. If AB = I for square matrices, does it automatically imply BA = I?

Yes, for square matrices of the same order, if AB = I, then BA = I automatically holds. This is a unique property of finite-dimensional square matrices and is crucial for defining inverses. This concept is explained with examples and proofs in our case study e-book.

8. How can you prove that the inverse of a symmetric invertible matrix is also symmetric?

If A is symmetric and invertible, then (A⁻¹)ᵀ = (Aᵀ)⁻¹ = A⁻¹, proving that A⁻¹ is symmetric. This result is frequently used in advanced matrix problems. The Math Case Studies Class 12 PDF Book includes such theoretical questions with step-by-step solutions.

9. What is the cancellation law for invertible matrices?

If A is invertible and AB = AC, then pre-multiplying by A⁻¹ gives B = C. This is the left cancellation law. Similarly, BA = CA implies B = C (right cancellation). These laws are powerful tools for solving matrix equations. Our e-book provides extensive practice on cancellation law applications.

10. Where can I find comprehensive practice questions on invertible matrices for Class 12?

The Math Case Studies Class 12 PDF Book offers 50+ case-based questions covering invertible matrices, uniqueness of inverse, reversal law, and related properties. Available at a reasonable price in PDF format, it includes detailed solutions, HOTS problems, and exam-oriented practice material perfect for self-study and board exam preparation.

Free math tutorial Class 12 – Invertible Matrices Mastery

Access a comprehensive Free math tutorial Class 12 focused on invertible matrices, uniqueness of inverse, and reversal law with detailed video explanations and solved examples. Our resources include step-by-step problem-solving techniques, downloadable worksheets, and theoretical proofs. Regular practice builds conceptual clarity and exam confidence. Moreover, students can enhance their preparation with our specialized case study e-book.

Structured Learning for Matrix Inverse Success

The invertible matrices chapter is organized into digestible modules. Each module explains definitions, theorems, and applications with solved examples from previous board papers. Consequently, learners grasp complex concepts like the uniqueness proof and reversal law efficiently. Progress tracking tools help identify areas needing improvement, ensuring thorough preparation for both board and competitive exams.

Comprehensive Resources for Every Learner

All free tutorials, worksheets, and formula sheets are entirely accessible. For deeper practice, we offer the Math Case Studies Class 12 PDF Book at a reasonable price. This e-book contains real-world application questions with detailed solutions, helping students master matrix inverse concepts through practical scenarios. Download instantly and elevate your exam preparation today.

Complete Class 12 Math Invertible Matrices Resource Hub with Case Study E-Book

Our platform offers a complete ecosystem for mastering invertible matrices in Class 12. Explore the Class 12 Math Tutorial series, Class 12 Math Complete Tutorial notes, and downloadable Math tutorial pdf files for offline study. Beginners can start with the Math tutorial for beginners section that breaks down advanced concepts. Inspired by global platforms like Khan academy math, we also provide a Math Tutorial app to Learn math online free anytime. Our digital Math tutorial book contains hundreds of Math tutorial questions for rigorous practice. Additionally, you can download the Class 12 Maths book PDF covering all chapters including matrices, relations, calculus, and probability. We offer specialized content for every chapter: Relations and Functions Class 12 important Questions, inverse trigonometric functions class 12, matrices class 12, determinants class 12, continuity and differentiability class 12, application of derivatives class 12, integration formulas class 12, application of integrals class 12, differential equations class 12, vectors class 12, three dimensional geometry class 12, and probability class 12. All resources are freely accessible at MathStudy.in and Udgam Welfare Foundation. Explore similar free case study resources for Class 7 here: Class 7 Math Case Study Questions with Answers. For advanced case-based practice on invertible matrices, grab your copy of the Math Case Studies Class 12 PDF Book today!