Can you make the induction step by contradiction?

Join the discussion
Ask a follow-up here, or get your own question answered by working scientists, mathematicians and engineers — people, not an autocomplete.
Real named experts · corrections over time · the nuance an AI answer skips
2 replies · 2K views
jack476
Messages
327
Reaction score
124
Assuming you've sufficiently proven your inductive basis, can you complete a proof by induction in the following manner:

Make the inductive hypothesis, assume P(n) is true for some n. Assume P(n+1) is not true. If it follows from the assumption that P(n+1) is false that P(n) must also therefore be false, contradicting the inductive hypothesis, does this mean P(n) must imply P(n+1)?
 
on Phys.org
Yes, that is valid.
The assumption from which you derived the contradiction was ##\exists n\ P(n)\wedge\neg P(n+1)##. Deriving a contradiction from this proves its negation, which is ##\forall n\neg(P(n)\wedge \neg P(n+1))##
which, by de Morgan, is equivalent to
##\forall n\ \neg P(n)\vee P(n+1)##
which is equivalent to
##\forall n\ P(n)\to P(n+1)##
which is what we need to complete the induction.
 
  • Like
Likes   Reactions: member 587159
Lovely, thank you :)