flowchart TD A["Matrix Problem"] --> B{What is asked?} B -->|Addition/Subtraction| C["Same order required"] B -->|Multiplication AB| D["Columns of A = Rows of B"] B -->|Transpose| E["Swap rows and columns"] B -->|Determinant| F["|A| for square matrices"] B -->|Inverse| G{"Is |A| != 0?"} G -->|Yes| H["A^-1 = adj(A) / |A|"] G -->|No| I["Singular: inverse does not exist"] B -->|Solve equations| J["AX = B => X = A^-1 B"]
Solution — Step by Step
∣A∣=1324=1(4)−2(3)=4−6=−2
Since ∣A∣=0, the inverse exists.
For a 2×2 matrix (acbd), the adjoint is (d−c−ba).
The inverse matrix “undoes” the original transformation. If A transforms a vector x to b (i.e., Ax=b), then A−1 recovers x from b (i.e., x=A−1b). The condition ∣A∣=0 ensures the transformation is reversible — no information is lost.
For 2×2 matrices, the adjoint shortcut (swap diagonal, negate off-diagonal) is the fastest method. For 3×3, you need cofactors.
Alternative Method — Row Reduction
Augment A with the identity matrix [A∣I] and perform row operations until the left side becomes I. The right side automatically becomes A−1:
[13241001]R2→R2−3R1[102−21−301]
Continue row-reducing to get the same A−1.
For CBSE 12, the 2×2 inverse using the adjoint formula is enough for most problems. But JEE Main often gives 3×3 matrices — practice the cofactor method and row reduction for those. Also, ∣AB∣=∣A∣∣B∣ and (AB)−1=B−1A−1 — these properties appear as 1-mark conceptual questions.
Common Mistake
In the 2×2 adjoint, students swap the wrong elements. The rule is: swap the main diagonal elements (a and d) and negate the off-diagonal elements (b and c). Writing (dcba) (forgetting to negate) gives a completely wrong inverse.
Want to master this topic?
Read the complete guide with more examples and exam tips.