Strong Induction / Complete Induction / Second Principle of Mathematical Induction (often abbreviated as PCI) is one of the techniques to prove Results/Conjecture.
STATEMENT
Let P(n) be a given Propostional Function
To prove that P(n) is TRUE for all integers n≥no, it is sufficient to prove:
- BASIS STEP : Verify that P(no) is TRUE
- INDUCTIVE STEP : Show that conditional statement
[P(no)∧P(no+1)∧.......∧P(k)]→P(k+1)
holds ∀k≥no
WHAT WE ARE EXACTLY DOING HERE?
We are making a STRONG ASSUMPTION.
- We have to ASSUME that P(1),P(2),... P(k) are true. Based on assumption, we will obtain some mathematical results.
- With that results, we have to show that P(k+1) will be True.
AS RULE OF INFERENCE
( P(no) ∧[∀k {(P(no)∧P(no+1)∧.......∧P(k) ) →P(k+1)}] )→∀n P(n)
NOTE ✍🏻
Now, PMI, PCI and WOP are equivalent. [PMI stands for Principle of Mathematical Induction, PCI stands for Principle of Complete Induction, while WOP stands for Well Ordering Property]
If something is True by one, it is True by all three.
But often, one way is easier to prove a particular problem.
INTERESTING EXAMPLE 🍫
A Chocolate Bar consists of UNIT SQUARE of n×m RECTANGULAR GRID. Show that for SPLITTING bar into INDIVIDUAL UNIT SQUARES, we need nm-1 breaks.BASIS STEP: For 1x1 Square Grid (Or Rectangular, since every square is rectangle), we need ZERO breaks to break into INDIVIDUAL UNIT SQUARES. Now,
n=1
m=1
And,
nm-1=(1×1)-1=0
Hence, proposition is true for base case.
INDUCTIVE STEP: Now, let P(n,m) denote number of breaks needed to split an n×m bar. Now, our hypothesis is strong. We are assuming that we have proved for all j<n or k<m that P(j,k) holds. Based on this hypothesis, we have to show that P(n,m) will also be True.
Assuming FIRST BREAK is along a row, we get two bars
- First Bar of n1×m, and a
- Second Bar of n2×m
Now, Because of Our Hypothesis
To further break First Bar into individual unit squares, we need n1m-1 breaks.
And, to further break Second Bar into individual unit squares, we need n2m-1 breaks.
Therefore, Total Number of Breaks
= (1)+(n1m-1) +(n2m-1)
= n1m + n2m-1
= m(n1+n2)-1
= mn-1
Hence, P(m,n) is True on basis of our Hypothesis.
Hence, By Structural Induction P(m,n) is True ∀m≥1,n≥1
😥 CONFUSED? Have a Chocolate. Eating chocolate can be protective for your brain and enhance your brain’s plasticity, the lifelong ability to change and adapt. 😉
REFERENCES AND FURTHER READINGS