If A has a non-zero determinant, we can multiply both sides of Ax=c by A−1:
A−1Ax=A−1c
Since A−1A=I (the identity matrix):
x=A−1c
Finding the Inverse of a 2×2 Matrix
For A=(acbd) where det(A)=0:
A−1=det(A)1(d−c−ba)
Worked Example
Solve using the matrix inversion method:
{2x+y=103x−2y=1
Solution:
Step 1: Write in matrix form:
A=(231−2),x=(xy),c=(101)
Step 2: Find the determinant:
det(A)=(2)(−2)−(1)(3)=−4−3=−7
Since det(A)=0, we can proceed.
Step 3: Find the inverse:
A−1=−71(−2−3−12)=(727371−72)
Step 4: Multiply by the constant vector:
x=A−1c=(727371−72)(101)
x=72(10)+71(1)=720+71=721=3
y=73(10)−72(1)=730−72=728=4
Answer: x=3,y=4