The Logic Behind the Math: Solving Systems
The primary logic for using matrices in JEE is solving the equation $AX = B$. If we can find the Inverse Matrix ($A^{-1}$), we can isolate $X$ by calculating $X = A^{-1}B$. This is much more efficient than substitution when dealing with three or more variables.
Step-by-Step Solved Example (Cramer’s Rule)
Problem: Solve the following system for $x$ and $y$:$2x + 3y = 13$$x - 2y = -4$
- Step 1: Find the Determinant (D).$D = |[2, 3], [1, -2]| = (2 * -2) - (3 * 1) = -4 - 3 = -7$.
- Step 2: Find $D_x$ (Replace x-column with constants).$D_x = |[13, 3], [-4, -2]| = (13 * -2) - (3 * -4) = -26 + 12 = -14$.
- Step 3: Find $D_y$ (Replace y-column with constants).$D_y = |[2, 13], [1, -4]| = (2 * -4) - (13 * 1) = -8 - 13 = -21$.
- Step 4: Calculate Variables.$x = D_x / D = -14 / -7 = 2$.$y = D_y / D = -21 / -7 = 3$.
Alternative Methods: Elementary Row Operations (ERO)
For 3x3 matrices or larger, Cramer's Rule becomes tedious. We use Gaussian Elimination to transform the matrix into Row Echelon Form. This is the "Algebraic way" of solving, similar to balancing chemical equations by eliminating components one by one.
Exam Trap Alert: The Non-Commutative Property
In standard arithmetic, $a * b = b * a$. In Matrices, this is a fatal assumption.
JEE Warning: In general, $AB \neq BA$. If you swap the order of multiplication in a derivation, your final expression will be wrong. Always maintain the Pre-multiplication or Post-multiplication order.
Practice Problem (JEE Advanced Level)
Question: Let $A$ be a 3x3 matrix such that $det(A) = 5$. Find $det(3A)$ and $det(A^{-1} * adj A)$.Hint: $det(kA) = k^n det(A)$ and $adj A = |A|A^{-1}$.