Proving Something by Induction: Understanding the Concept

In summary: Then when you do the base step, you're like "ohh, that's why this works".In summary, proof by induction is a method of proving a statement for all integers by first proving the base case and then showing that if the statement is true for a certain integer, it is also true for the next integer. This process continues until all integers have been covered, thus proving the statement for all integers. While it may seem like we are assuming what we want to prove, this is not the case as each step is based on previous proven steps.
  • #1
BoundByAxioms
99
0
I understand how to prove something by induction, but I don't really understand how it works. I understand that you must prove the base step, and then prove the inductive step. For instance, in proving De Moivre's Theorem, you can prove the base step of n=0. And then you can assume that the theorem is true for some integer k, so: (cos(x)+isin(x))k=cos(kx)+isin(kx). The part that confuses me is why can we just assume that the theorem is true for some integer k? Why do we even need to prove something like De Moivre's Theorem if we just can just assume that it is true for some integer k. I've always had trouble wrapping my mind around this concept, so any clarifications would be greatly appreciated.
 
Mathematics news on Phys.org
  • #2
We prove the case for n=0.

Then we prove that if the theorem is true for some integer k, then it holds true also for k+1.

It follows that it is true for n=1 since it is true for n=0. And then it follows that it is true for n=2 since it is true for n=1, etc.
 
  • #3
You are forgetting about the k+1 part, which is the crucial step. In the inductive hypothesis, you assume some statement P(k) holds. Then you show that P(k) implies P(k+1). Then it all goes back to the base case which we showed was true, i.e. P(0) is true (or another base case, usually 0 or 1). Then we know P(0) is true so P(1) must be true from the implication and if P(1) is true P(2) is true and so on.

Consider a ladder metaphor. We want to climb a ladder. The bottom rung is the base case. Now if we don't know how to climb, then we can't get anywhere. But if we know how to go from one rung to the next (inductive hypothesis and inductive step), then we can climb every rung above the bottom one.
 
  • #4
Or think of it as a row of "dominoes". If you know that "if one domino falls over, it will knock over the next one" and you know "I will knock over the first domino", then you know that they will all fall over.
 
  • #5
my favorite version of induction is called the well ordering axiom. it says that a non empty set of positive integers contains a least integer.

thus if some formula involving positive integers ever fails, there must be a smallest one for which it fails. if n is that smallest integer, then either it is 1, or the theorem holds for n-1. so if you rule out both those possibilities, you know in fact it can never fail.
 
  • #6
BoundByAxioms said:
… you can prove the base step of n=0. And then you can assume that the theorem is true for some integer k

The part that confuses me is why can we just assume that the theorem is true for some integer k? Why do we even need to prove something like De Moivre's Theorem if we just can just assume that it is true for some integer k.

Hi BoundByAxioms! :smile:

It isn't that we assume that it is true for some integer k …

it's that we know that it is true for any particular integer k because of the previous steps in the proof.

We start with k = 0: we know that's true, because we proved it separately.

Then the induction part enables us to prove it for k = 1.

Now, we know it's true for k = 1, and the induction part enables us to prove it for k = 2.

Then we know it's true for k = 2, … and so on …

The statement "If Pk, then Pk+1" doesn't involve any assumption … it's just true! :smile:
 
  • #7
tiny-tim said:
Hi BoundByAxioms! :smile:

It isn't that we assume that it is true for some integer k …

it's that we know that it is true for any particular integer k because of the previous steps in the proof.

We start with k = 0: we know that's true, because we proved it separately.

Then the induction part enables us to prove it for k = 1.

Now, we know it's true for k = 1, and the induction part enables us to prove it for k = 2.

Then we know it's true for k = 2, … and so on …

The statement "If Pk, then Pk+1" doesn't involve any assumption … it's just true! :smile:

Ok, thanks for your help everyone, this clarifies the parts that I was having trouble understanding.
 
  • #8
Proof by induction does have a step where it seems like you are assuming what you want to prove. This seems fishy because if you assume what you want to prove is true, then there is no need to prove it any more!

So probably the difference in the naming of variables n, k etc is important, and the choice of accompanying language "if", "for all", "for any particular" etc, so that we don't assume what we want to prove.
 
Last edited:
  • #9
HallsofIvy said:
Or think of it as a row of "dominoes". If you know that "if one domino falls over, it will knock over the next one" and you know "I will knock over the first domino", then you know that they will all fall over.

This is generally a good way to think about it in my opinion.
 
  • #10
HallsofIvy said:
Or think of it as a row of "dominoes". If you know that "if one domino falls over, it will knock over the next one" and you know "I will knock over the first domino", then you know that they will all fall over.

quark1005 said:
This is generally a good way to think about it in my opinion.

Yeah, one nice thing about it is you do the "inductive step" first then you do the "base step".
 

FAQ: Proving Something by Induction: Understanding the Concept

What is induction and how does it relate to proving something?

Induction is a mathematical method used to prove that a statement or property holds true for all natural numbers. It involves using a base case and an inductive step to show that the statement is true for all cases.

What is the difference between strong and weak induction?

In strong induction, the inductive step uses all previous cases to prove the statement for the next case. In weak induction, the inductive step only uses the previous case to prove the statement for the next case.

Why is it important to have a base case in an inductive proof?

The base case serves as the starting point for the proof and provides evidence that the statement holds true for at least one case. Without a base case, the proof would not be able to progress to the next case.

How can you determine the correct hypothesis to use in an inductive proof?

The hypothesis should be based on the statement being proved and should accurately reflect the pattern observed in the base case and inductive step. It should also be broad enough to cover all cases but specific enough to be useful in the proof.

Can induction be used to prove any statement?

No, induction can only be used to prove statements that can be expressed in terms of natural numbers. It cannot be used to prove statements that involve real numbers or other mathematical concepts.

Similar threads

Back
Top