|
|
|
|
|
by phkahler
1654 days ago
|
|
>> The inductive step assumes the hypothesis is true for n You don't get to assume the thing you're trying to prove is true as a part of the proof that it's true. The only time we assume something like that is in a proof by contradiction, where the contradiction implies either an error in our logic, or an error in the assumptions. |
|
1) Prove H(0)
2) Prove that if H(n), then H(n+1)
Then, by the axiom of induction, this is proven for all positive integer values of n. Because if those two conditions hold, we would have
H(0) is true
H(1) is true because H(0) -> H(1) ((2) with n=0) and H(0)
H(2) is true because H(1) -> H(2) ((2) with n=1) and H(1)
and so on.
The assumption isn't what's being proven, it's proving the inductive hypothesis for the next integer.