gsingh2011
- 115
- 1
I understand weak induction but I'm confused on strong induction. Can someone give me a simple example where you would use strong induction and not weak?
The discussion centers around the concept of strong induction in mathematics, particularly how it differs from weak induction. Participants explore examples, clarify definitions, and discuss the implications of using strong induction in proofs.
Participants express differing views on the necessity of multiple base cases in strong induction and the implications of its equivalence to weak induction. The discussion remains unresolved regarding the nuances of these concepts.
Participants note that the inductive step must be carefully considered, particularly in cases where k = 1, which may affect the assumptions made during proofs. There is also an acknowledgment that some examples may require different forms of inductive reasoning.
Jarle said:Strong induction is characterized by that instead of proving P(k) --> P(k+1), where P(n) is a proposition for a number n, we rather prove that ( P(1) and P(2) and ... and P(k) )--> P(k+1). It is stronger in the sense that we use more information for the inductive step.
For example; if you want to prove a specific formula for a difference equation, say x_{n-2}+x_{x-1}=x_n, by induction, you will need, for the inductive step, that both x_{k-1} and x_{k} satisfy the formula in order to prove the formula for x_{k+1}. In other words; you will need P(k-1) and P(k) to prove P(k+1), where P(n) is the proposition that x_n satisfies the formula.
gsingh2011 said:So is this pretty much like saying you have more than one base case? Specifically, you have as many base cases as there are variables?