Proof By Induction Flashcards
What are the steps for proof by induction - summing an infinite series?
- Check the base case for n=1 by subbing 1 into everywhere there is an n
- Assume the result is true for n=k by subbing k into everywhere there is an n
- Write down a target for n=k+1 by subbing k+1 into everywhere there is an n
- Solve when n=k+1 using the result Σk+1r=1 f(r) = Σkr=1 f(r) + f(k+1)
Where f(r) is your function of r - Write your standard statement
What is the standard statement in proof by induction?
We have shown that if the result is true for n=k then it is true for n=k+1 and as it is true for n=1 it is true for all positive integers n
What are the steps for proof by induction - divisibility?
- Let f(n) be the expression you are trying to prove is divisible by a given number
- Check that that f(n) is divisible by the given number when n=1
- Assume that f(k) is divisible by the given number
- Now write out f(k+1) and try to rearrange to get f(k+1) in terms of f(k) and a term divisible by the given number
- Write out your standard statement
What are the steps for proof by induction - powers of matrices? Where Mn = result
- Check that the result is true for n=1 by subbing 1 into everywhere there is an n
- Assume the result is true for n=k by subbing a k into everywhere there is an n
- Write down your target for n=k+1 by subbing k+1 into everywhere there is an n
- Write Mk+1 as MnM (not using the result)
- Multiply out the matrices until you reach your target
- Write your standard statement
What if you are asked to prove something for n≥0
Check the base case as 0 instead of 1 then do the proof as normal using k and k+1
What are the steps for proof by induction - general term of a sequence?
These questions are normally given in the form recursive definition-what the first term should equal-result
- Check that the result is true for n=1 by subbing 1 into the result and seeing if it equals the given value for the first term
- Assume the result is true for n=k by subbing in k whererver there is an n in the result
- Write down your target for n=k+1 by subbing in k+1 wherever there is an n in the result
- Using the recursive defintion write uk+1 in terms of uk and rearrange until you get to your target
- Write the standard statement
What do you do if you are given two base cases instead of one? (stronger induction)
- Check the base cases for n=1 and n=2
- Assume the result is true for n=k and n=k+1
- Prove the result is true for n=k+2
- Write the adjusted statement: We have shown that if the result is true for n=k and n=k+1 then it is true for n=k+2 and as the result is true for n=1 and n=2 the result is true for all positive integers n
If you are given a different kind of proof by induction (other types) what are the general steps?
- Check that the result is true for n=1
- Assume the result is true for n=k
- Using your assumption show the result is true for n=k+1
- Write the standard statement