The assumption "P(k) is true" used inside the inductive step is called the inductive hypothesis (IH).
WHY does this actually prove everything? Suppose P failed somewhere. Let m be the smallest number where it fails. Then m=n0 (base case holds), so m−1≥n0 and P(m−1) is true (else m−1 would be smaller and failing). But the inductive step says P(m−1)⇒P(m) — contradiction. So P never fails. This is why PMI is equivalent to the Well-Ordering Principle (every nonempty set of naturals has a least element).
Base casen=1: LHS =1, RHS =21⋅2=1. ✓
Why this step? Without a true starting domino, the chain proves nothing.
IH: assume 1+2+⋯+k=2k(k+1).
Step: Add the next term (k+1) to both sides:
use IH1+2+⋯+k+(k+1)=2k(k+1)+(k+1)Why this step?P(k+1)'s LHS is just P(k)'s LHS plus one more term — so add exactly that term.
=(k+1)(2k+1)=(k+1)⋅2k+2=2(k+1)(k+2).
This is precisely P(k+1) (replace n by k+1 in the formula). By PMI, true for all n≥1. ∎
Step: add (k+1)2:
6k(k+1)(2k+1)+(k+1)2=(k+1)[6k(2k+1)+(k+1)].Why this step? Factor out the common (k+1) early — it's the target formula's leading factor.
=(k+1)⋅6k(2k+1)+6(k+1)=(k+1)⋅62k2+7k+6=(k+1)⋅6(k+2)(2k+3).
This equals 6(k+1)(k+2)(2(k+1)+1)=P(k+1). By PMI, done. ∎
Step: Compute (k+1)3−(k+1):
(k+1)3−(k+1)=k3+3k2+3k+1−k−1=(k3−k)+3k2+3k.Why this step? We isolate the "old" chunk k3−k (divisible by 6 by IH) plus a leftover.
=6m+3k(k+1).
Now k(k+1) is a product of two consecutive integers, so it's even, say 2t. Then 3k(k+1)=6t. Hence total =6m+6t=6(m+t), divisible by 6. By PMI, done. ∎
Line up dominoes. If you can knock over the first one, and you're sure each domino is close enough to hit the next, then you know all of them will fall — even a million of them — without watching each fall. Math induction is that trick: prove "step 1 works" and "if any step works, the next works too," and you've proved it for every number forever.
Mathematical Induction ek domino wala idea hai. Socho ek lambi line mein dominoes khade hain aur tumhe prove karna hai ki saare gir jayenge. Har domino ko haath se girana toh impossible hai (infinite kaam). Toh tum sirf do cheezein dikhate ho: pehla domino girta hai (yeh hai base case, usually n=1), aur agar koi bhi domino girta hai toh woh apne agle ko bhi gira deta hai (yeh hai inductive step, P(k)⇒P(k+1)). Bas! Dono sach hain toh logically saare gir gaye.
Proof likhne ka fixed ritual hai — yaad rakho B-H-S: pehle Base case verify karo (LHS = RHS check), phir Hypothesis maan lo ki P(k) true hai, phir Step mein us hypothesis ko use karke P(k+1) prove karo. Sum formulas mein trick simple hai: dono taraf next term (yaani (k+1)-th term) add kar do, aur algebra se target formula bana lo.
Sabse common galtiyan: (1) base case bhool jaana — bina pehle domino ke poori chain bekaar. (2) Sirf n=1,2,3 check karke keh dena "ho gaya" — yeh proof nahi hai, kyunki n2−n+41 jaise example n=40 tak prime dete hain par 41 pe fail ho jaate hain. (3) Jo prove karna hai (P(k+1)) wahi maan lena — circular ho gaya. Yaad rakho: P(k)assume karte ho, P(k+1)derive karte ho. Jab problem mein ek se zyada purane cases chahiye (jaise Fibonacci), tab strong induction use karo jahan P(1)…P(k) sab maan sakte ho.