The product Ax is defined so that its i-th entry is the dot product of row i of A with x:
(Ax)i=j=1∑naijxj.
Setting (Ax)i=bi for each i literally writes out equation i. So Ax=b is not a new rule — it is the same m equations, compressed. That's the whole reason matrix multiplication is defined the way it is.
Why this step? Each entry (Ax)i=∑jaijxj collects, for fixed j, the term xjaij — which is exactly xj times the i-th entry of column a(j). Summing over i as a vector gives xja(j).
WHY rank? Rank counts independent equations. If b adds a new independent "direction" to the equation block (rank goes up), it's demanding something the columns can't supply → inconsistent. If equations match but there are fewer of them than unknowns, the leftover unknowns float free.
Before reading: predict the solution type of {x+y=22x+2y=5.
Verify: rank(A)=1, rank([A∣b])=2 → no solution (inconsistent parallel lines).
Recall Feynman: explain to a 12-year-old
Imagine a recipe machine. The columns of A are jars of ingredients. x tells you how many scoops of each jar to use. b is the dish you want. Solving Ax=b means finding the right number of scoops to make exactly that dish. Sometimes there's one perfect recipe (unique), sometimes many recipes work (infinite), and sometimes the dish needs an ingredient you just don't have on any shelf (no solution).
What does the i-th entry of Ax equal?
The dot product of row i of A with x, i.e. ∑jaijxj.
In the column view, what is Ax?
A linear combination of the columns of A with weights xj: ∑jxja(j).
When is Ax=b solvable (existence condition)?
Exactly when b∈Col(A), i.e. rank(A)=rank([A∣b]).
State the Rouché–Capelli condition for a UNIQUE solution.
rank(A)=rank([A∣b])=n (number of unknowns).
For invertible square A, what is the solution and why?
x=A−1b; left-multiply Ax=b by A−1 to get Ix=A−1b.
General solution structure of Ax=b?
x=xp+xh: one particular solution plus all of the null space (Axh=0).
Why can a system with more equations than unknowns still be solvable?
If the extra equations are dependent (redundant), rank stays low; solvability depends on rank, not row count.
Dekho, Ax=b ka matlab koi naya jaadu nahi hai — ye sirf bahut saari linear equations ko ek clean form me likhne ka tareeka hai. A me coefficients aate hain, x me unknowns, aur b me right-hand side. Jab tum Ax ka i-th element nikaalte ho, wo A ke row i aur x ka dot product hota hai — yaani wahi original equation. Isliye matrix multiplication aise hi define kiya gaya hai, taaki ye trick automatically kaam kare.
Sabse important baat: ek hi equation ke do views hain. Row view me har equation ek line (ya hyperplane) hai, aur solution unka intersection hai. Column view me Ax matlab columns ka linear combination hai — xj batata hai ki har column ko kitne "scoops" me milana hai taaki b ban jaaye. Isliye solution tabhi milega jab b, columns ke span (column space) ke andar ho. Ye column view 80/20 idea hai — isse existence ekdum clear ho jaata hai.
Solution kitne honge, ye rank decide karta hai. Agar rank(A)=rank([A∣b])=n (unknowns), to ek unique solution. Agar dono rank equal hain par n se kam, to infinite solutions (n−r free variables). Aur agar augmented matrix ka rank zyada ho gaya, matlab system inconsistent hai — koi solution nahi. Square aur invertible A ke liye shortcut: x=A−1b, lekin yaad rakho — matrix me "divide by A" jaisa kuch nahi hota, sirf inverse se multiply karo, aur order A−1b hi rahe.
Exam me sabse common galti: det ko har system pe lagaa dena. det sirf square matrix ke liye hai; non-square ke liye rank use karo. "RACE" mnemonic yaad rakho aur tum classify karne me kabhi nahi phasoge.