These are the legal moves we can perform on a matrix. They are the foundation for solving systems of linear equations (like in Gaussian elimination) and for finding the inverse of a matrix. There are three basic operations for rows and three identical ones for columns.
(i) Interchange of any two rows or columns:
Notation:Ri↔Rj (Row i is swapped with Row j).
Purpose: This is like reordering equations in a system. It helps to get a non-zero element into a pivot position (like a11).
(ii) Multiplication of a row or column by a non-zero number:
Notation:Ri→kRi (Row i is replaced by k times Row i).
Purpose: This is like multiplying an entire equation by a constant. It's used to create a '1' in a pivot position, which is a key step in creating an identity matrix.
(iii) Addition of a multiple of one row or column to another:
Notation:Ri→Ri+kRj (Row i is replaced by the sum of itself and k times Row j).
Purpose: This is the workhorse operation, equivalent to adding a multiple of one equation to another to eliminate a variable. In matrix terms, this is used to create zeros in all other positions in a pivot's column.
2. Invertible Matrices
Definition: A square matrix A of order 'n' is called invertible (or non-singular) if we can find another square matrix B of the same order 'n' that acts as its multiplicative inverse.
Think about numbers: the inverse of 5 is 51 because 5×51=1.
For matrices, the Identity Matrix (I) is the equivalent of the number 1. So, we are looking for a matrix B such that:
AB=BA=I
- If such a matrix B exists, it is called the **inverse** of A and is denoted by A−1.
- A matrix that does not have an inverse is called **non-invertible** or **singular**.
Uniqueness: If a matrix has an inverse, that inverse is unique. There's only one undo matrix for any given invertible matrix.
Property (Reversal Law for Inverses):(AB)−1=B−1A−1.
Explanation (The Socks and Shoes Rule): To undo the action of putting on socks (A) and then shoes (B), you must first take off the shoes (B−1) and then take off the socks (A−1). The order of the undo operations is reversed.
3. Finding the Inverse using Elementary Operations
This is a standard algorithm to find the inverse of a matrix A. It works by solving for A.
Write the equation A=IA.
This equation just says A is equal to itself. The 'I' on the right side is a placeholder that will record all the operations we do.
Think of it as: [Your Matrix]=[Starting Point]×A.
Apply a sequence of elementary row operations on the LHS and RHS.
Your goal is to turn the 'A' on the LHS into the identity matrix 'I'.
Every row operation you apply to the LHS, you must apply the exact same operation to the 'I' on the RHS.
The 'A' on the far right remains untouched throughout the process.
Continue until the LHS becomes 'I'.
As you apply the row operations, the LHS matrix (which started as A) morphs into I. In the same way, the RHS matrix (which started as I) morphs into a new matrix, let's call it B.
The equation will be in the form I=BA.
By the definition of an inverse, if I=BA, then the matrix B must be the inverse of A. The 'I' matrix has become A−1.
Note on Column Operations: You can do the same process with column operations, but you must start with the equation A=AI and only use column operations. You cannot mix row and column operations in the same problem.
Example 1: Applying Row Operations
Question: Apply the operation R2→R2−2R1 to the matrix A=[1221].
Explanation:
Identify the Rows:R1=[12] and R2=[21].
State the Operation: The operation R2→R2−2R1 means "The new Row 2 will be the old Row 2 minus two times Row 1." Row 1 itself does not change.
Calculate the New R2:
New R2=[21]−2×[12]=[21]−[24]=[2−21−4]=[0−3]
Construct the New Matrix:
The first row is unchanged, and we use the new second row.
Answer: The new matrix is [102−3].
Example 2: Finding Inverse of a 2x2 Matrix
Question: Find the inverse of the matrix A=[122−1] using elementary row operations.
Explanation:
Set up the Equation: Start with A=IA.
[122−1]=[1001]A
Goal: Turn the LHS matrix into I=[1001].
Step 1: Get a 0 in position (2,1).
Apply the operation R2→R2−2R1. We do this to both sides.
LHS: R2=[2−1]−2[12]=[0−5].
RHS: R2=[01]−2[10]=[−21].
The equation becomes: [102−5]=[1−201]A.
Step 2: Get a 1 in position (2,2).
Apply R2→−51R2.
LHS: R2=−51[0−5]=[01].
RHS: R2=−51[−21]=[2/5−1/5].
The equation becomes: [1021]=[12/50−1/5]A.
Step 3: Get a 0 in position (1,2).
Apply R1→R1−2R2.
Final Result: The equation is now in the form I=BA.
[1001]=[1/52/52/5−1/5]A.
Answer:A−1=[1/52/52/5−1/5].
Example 3: Inverse of a 3x3 Matrix
Question: Find the inverse of A=013121231.
Explanation:
Set up the Equation: Start with A=IA.
013121231=100010001A.
Step 1: Get a 1 in position (1,1).
Swap Row 1 and Row 2 (R1↔R2).
103211321=010100001A.
Step 2: Get a 0 in position (3,1).
Apply R3→R3−3R1.
LHS: R3=[311]−3[123]=[0−5−8].
RHS: R3=[001]−3[010]=[0−31].
The equation becomes: 10021−532−8=01010−3001A.
Continue the Process: The goal is to create an identity matrix on the LHS. This involves more steps:
R3→R3+5R2 (to get a 0 in position 3,2)
R3→(1/2)R3 (to get a 1 in position 3,3)
R1→R1−2R2 (to get a 0 in position 1,2)
R1→R1−(...)R3 and R2→R2−(...)R3 (to get zeros in positions 1,3 and 2,3)
Final Result: After all operations are completed, the equation becomes:
I=1/2−45/2−1/23−3/21/2−11/2A.
Answer:A−1=1/2−45/2−1/23−3/21/2−11/2.
Example 4: A Matrix whose Inverse does not Exist
Question: Show that the matrix A=[2−1−63] is not invertible.
Explanation:
We will attempt to find the inverse using row operations and show that the process fails.
Set up the Equation: Start with A=IA.
[2−1−63]=[1001]A.
Step 1: Get a 1 in position (1,1).
Apply R1→21R1.
[1−1−33]=[1/2001]A.
Step 2: Get a 0 in position (2,1).
Apply R2→R2+R1.
LHS: R2=[−13]+[1−3]=[00].
RHS: R2=[01]+[1/20]=[1/21].
The equation becomes: [10−30]=[1/21/201]A.
Conclusion: We have obtained a row of all zeros on the left-hand side. It is now impossible to continue the process to create the identity matrix. This failure indicates that the matrix A does not have an inverse. It is a singular (non-invertible) matrix.
Answer: The inverse does not exist.
Example 5: Using the Property (AB)−1=B−1A−1
Question: If A−1=[3−4−12] and B=[1−223], find (AB)−1.
Explanation:
Recall the Reversal Law: The inverse of a product is the product of the inverses in the reverse order: (AB)−1=B−1A−1
Find B−1: We need to find the inverse of B. For a 2x2 matrix [acbd], the inverse is ad−bc1[d−c−ba]
Determinant of B: ad−bc=(1)(3)−(2)(−2)=3+4=7
B−1=71[32−21]
Multiply the Inverses: Now we compute B−1A−1.
(AB)−1=B−1A−1=71[32−21][3−4−12]
(Row 1, Col 1): (3)(3)+(−2)(−4)=9+8=17
(Row 1, Col 2): (3)(−1)+(−2)(2)=−3−4=−7
(Row 2, Col 1): (2)(3)+(1)(−4)=6−4=2
(Row 2, Col 2): (2)(−1)+(1)(2)=−2+2=0(AB)−1=71[172−70]=[17/72/7−10]
Answer:(AB)−1=[17/72/7−10].
Ready to test your knowledge?
Take a quick interactive quiz on this topic —
free, works without login.