Inverse Matrices and Determinants — Solutions
-
Fluency
A =
→ a = 3, b = 2, c = 1, d = 43 2 1 4 det(A) = ad − bc = (3)(4) − (2)(1) = 12 − 2 = 10
Since det(A) = 10 ≠ 0, this matrix is non-singular (invertible).
-
Fluency
B =
→ a = −5, b = 3, c = 2, d = −1−5 3 2 −1 det(B) = ad − bc = (−5)(−1) − (3)(2) = 5 − 6 = −1
Since det(B) = −1 ≠ 0, this matrix is invertible.
-
Fluency
Step 1: Find det(A).
det(A) = (4)(1) − (1)(3) = 4 − 3 = 1
Step 2: Apply inverse formula. Swap 4 and 1 on the main diagonal; negate 1 and 3.
A−1 = 1⁄1
=1 −1 −3 4 1 −1 −3 4 Quick verify: (4)(1)+(1)(−3) = 1 and (4)(−1)+(1)(4) = 0 → row 1 of AA−1 = [1, 0] ✓
-
Fluency
Step 1: det(B) = (2)(−1) − (−3)(1) = −2 + 3 = 1
Step 2: Apply inverse formula. Swap −1 and 2; negate −3 (becomes +3) and 1 (becomes −1).
B−1 = 1⁄1
=−1 3 −1 2 −1 3 −1 2 -
Understanding
Computing the determinant:
det = (6)(1) − (2)(3) = 6 − 6 = 0
Since det = 0, the matrix is singular.
Algebraic meaning: No inverse exists. If you try to apply the formula, you would be dividing by zero, which is undefined.
Geometric meaning: The transformation represented by this matrix collapses 2D space onto a line (the area scaling factor is |det| = 0). All regions are mapped to zero area — information is irreversibly lost, so the transformation cannot be undone (no inverse).
Note: Observe that row 2 = ½ × row 1 (since [3, 1] = ½[6, 2]). When one row is a scalar multiple of the other, the determinant is always zero.
-
Understanding
For an n×n matrix: det(kA) = kn × det(A).
Here n = 2 (a 2×2 matrix) and k = 3.
det(3A) = 32 × det(A) = 9 × 5 = 45
Why k2? Multiplying A by scalar k multiplies every element by k. The determinant formula ad − bc involves products of two elements. Each product picks up k twice (once from each factor), giving k2 overall. In general, for n×n matrices, every term in the determinant is a product of n elements, giving kn.
-
Understanding
For the matrix to be singular: det = 0.
det =
= (k)(4) − (2)(3) = 4k − 6k 2 3 4 Set equal to zero: 4k − 6 = 0 → 4k = 6 → k = 3/2
Check: det = 4(3/2) − 6 = 6 − 6 = 0 ✓
-
Understanding
Step 1: Find det(A).
det(A) = (2)(3) − (1)(5) = 6 − 5 = 1
Step 2: Find A−1.
A−1 = 1⁄1
=3 −1 −5 2 3 −1 −5 2 Step 3: Compute AA−1.
c11 = (2)(3)+(1)(−5) = 6−5 = 1
c12 = (2)(−1)+(1)(2) = −2+2 = 0
c21 = (5)(3)+(3)(−5) = 15−15 = 0
c22 = (5)(−1)+(3)(2) = −5+6 = 1
AA−1 =
= I ✓1 0 0 1 -
Problem Solving
Find det(T):
det(T) = (1)(1) − (2)(0) = 1 − 0 = 1
Apply the area scaling principle:
Area of R′ = |det(T)| × Area of R = |1| × 8 = 8 cm²
Interpretation: Since |det(T)| = 1, this transformation (a horizontal shear) preserves area. The region R′ has the same area as R, namely 8 cm², even though the shape is distorted. A shear transformation does not expand or shrink space — it only slides layers parallel to an axis.
-
Problem Solving
(a) Example: The matrix
is not the zero matrix (it has non-zero entries).1 2 2 4 (b) Verification: det = (1)(4) − (2)(2) = 4 − 4 = 0 ✓
(c) Problems with AX = B:
The matrix inverse method requires X = A−1B. But if det(A) = 0, then A−1 does not exist (division by zero in the formula). We cannot find a unique solution this way.
Looking at the system represented by this matrix:
Row 1: x + 2y = b1
Row 2: 2x + 4y = b2
Row 2 is exactly twice Row 1. So either b2 = 2b1 (equations are dependent → infinitely many solutions) or b2 ≠ 2b1 (equations are contradictory → no solution). In neither case is there a unique solution. The singular matrix makes unique solution impossible.