Induction Homework Help: Proving Equations for Positive Integers

In summary, induction is the process of using specific examples to make general conclusions or predictions. It is important because it allows us to make informed decisions and understand patterns in the world. Deductive reasoning starts with a general rule and applies it to specific cases, while inductive reasoning starts with specific observations and uses them to form a general conclusion. Induction is commonly used in science to make hypotheses and theories based on observations and experiments. However, it can be wrong as new evidence can disprove a conclusion. Some common fallacies in inductive reasoning include hasty generalization and biased samples.
  • #1
McFlea
2
0
Hi there, I am having some problems with figuring out these two questions I have been given out for homework. Both of these make no sense to me and I can't seem to prove them, can anyone give me an insight to them?

1+5+9+ ... + (4n+1)=(n+1)(2n+1) for each positive integer n

and

2^2n - 1 is divisible by 3 for n = 1,2,3,...


any ideas?

Thanks.
 
Mathematics news on Phys.org
  • #2
Well, did you go through some examples of the application of mathematical induction? Do you know what it is? Inform yourself, make an effort to solve the problem, and if you get stuck, we'll be glad to help. :smile:
 
  • #3
For the first question, prove it by looking back to your notes on arithmatic series'.

For the second question, the answer will probably deal with series' again. I haven't looked at it yet, but I'll be glad to and update this post when I figure out anything else.
 
Last edited:
  • #4
What I know is that induction proves a statement holds for all natural numbers.. so the first step would be to check if n+1 is true there by adding (n+1) to both sides of the equation? Am I on the right track?

Sane, we haven't covered arithmatic series at all yet, but I have done it previously therefore I doubt that we would be expect to use it?
 
  • #5
Well, that may not be the way to prove it, but it is an answer.

The arithmetic progression equation for the sum of numbers to (4n+1) is:

[tex]\frac{(n+1)(1+(4n+1))}{2}[/itex]

You'll see that, if you do a right side/left side proof, it is equivilent to (n+1)(2n+1). Simple enough, no?
 
  • #6
@Sane: To prove the sum of the first n terms of an arithmetic series, we use induction. That means, your argument is somewhat circular...
-----------
@McFlea:
Do you know how induction works?
It goes like this. There are 3 steps.
The first step is to prove that the statement is true for some stating value n (say, n = 1 in your first problem, since the smallest positive integer is 1).
The second step is to assume that the statement holds for n = k (k is some number).
The third, and also the final step is to use your assumption in Step 2, and prove that the statement is true for n = k + 1.
So if the statement is true for n = 1 (the first step), then from the second and the third step, we can see that it's also true for n = 1 + 1 = 2.
And since the statement is true for n = 2, we can conclude that it's true for n = 2 + 1 = 3.
And since the statement is true for n = 3, it must be true for n = 3 + 1 = 4, and so on...
Hence, it's true for all positive integers.
-----------
Ok, I'll give you an example:
Example:
Prove that:
[tex]\sum_{i = 1} ^ n (i) = \frac{n (n + 1)}{2}[/tex]
Step 1:
Test for n = 1, the LHS is 1, and the RHS is also 1, hence the equation holds for n = 1.
Step 2:
Assume that the equation holds for some n = k, ie:
[tex]\sum_{i = 1} ^ k (i) = \frac{k (k + 1)}{2}[/tex]
Step 3:
Use the assumption:
[tex]\sum_{i = 1} ^ k (i) = \frac{k (k + 1)}{2}[/tex]
to prove that:
[tex]\sum_{i = 1} ^ {k + 1} (i) = \frac{(k + 1) (k + 2)}{2}[/tex].
We start from what we know:
[tex]\sum_{i = 1} ^ k (i) = \frac{k (k + 1)}{2}[/tex]
Adding (k + 1) to both sides, we have:
[tex]\Leftrightarrow \left( \sum_{i = 1} ^ k (i) \right) + (k + 1) = \frac{k (k + 1)}{2} + k + 1[/tex]
[tex]\Leftrightarrow \sum_{i = 1} ^ {k + 1} (i) = \frac{k (k + 1) + 2k + 2}{2}[/tex]
[tex]\Leftrightarrow \sum_{i = 1} ^ {k + 1} (i) = \frac{k ^ 2 + 3k + 2}{2}[/tex]
[tex]\Leftrightarrow \sum_{i = 1} ^ {k + 1} (i) = \frac{(k + 1) (k + 2)}{2}[/tex]
Hence, the equation holds for n = k + 1. (Q.E.D)
Can you go from here?
Let's see if you can finish the 2 problems above. :smile:
 
  • #7
I'll try your first question:

Let Universe equal nonnegative integers.
Proof by mathematical induction (first principle):
Basis clause: n=0 case. Clearly, this is true.
Induction clause: For arbitrary n >= 0 [[1+5+9+...+(4n+1) = (n+1)(2n+1)] -> [1+5+9+...+(4n+1)+(4n+5) = (n+2)(2n+3)]].
From the induction hypothesis we can write 1+5+9+...+(4n+1)+(4n+5) = (n+1)(2n+1)+(4n+5), which equals,
2n^2+7n+6. But (n+2)(2n+3) = 2n^2+7n+6.
Since n >= 0 was arbitrary, by Universal Generalization, we obtain the truth of the above stated
implication, for all n >= 0. But of course the implication is not what we're trying to prove.
"Extremal": Finally, by first principle, for all n >= 0 [1+5+9+...(4n+1) = (n+1)(2n+1)].
 
  • #8
and here is the answer of the second question:

Note that: 2^(2n) - 1 = 4^n -1
and use the equatity : a^n - b^n = (a-b)(a^(n-1)b - a^(n-2)b^2 + ...)
with a=4, b=1

Or we can check all steps of the induction process as follow:

With n=1: 4^1 -1 = 3 is divisible by 3
Suppose the statement is true with n=k, i.e 4^k -1 is divisible by 3 (*)
The, with n=k+1, we have:
4^(k+1) -1 = 4.4^k -1 = 3.4^k + (4^k - 1)
The second term (4^k-1) is divisible by 3 according to (*), the first term apparently is divisible by 3. Thus, 4^(k+1) - 1 is also.
 

Related to Induction Homework Help: Proving Equations for Positive Integers

What is induction and why is it important?

Induction is the process of using specific examples or observations to make general conclusions or predictions. It is important because it allows us to make informed decisions and understand patterns in the world around us.

What is the difference between deductive and inductive reasoning?

Deductive reasoning starts with a general rule or theory and applies it to specific cases, while inductive reasoning starts with specific observations and uses them to form a general conclusion.

How is induction used in science?

Induction is used in science to make hypotheses and theories based on observations and experiments. Scientists use inductive reasoning to make predictions and test them through further experiments and observations.

Can induction ever be wrong?

Yes, induction can be wrong. While it can provide strong evidence for a conclusion, it does not guarantee that the conclusion is true. New evidence or observations can disprove an inductive conclusion.

What are some common fallacies in inductive reasoning?

Some common fallacies in inductive reasoning include hasty generalization, where a conclusion is drawn from insufficient evidence, and biased samples, where the sample used for inductive reasoning is not representative of the entire population.

Similar threads

  • General Math
Replies
3
Views
1K
Replies
2
Views
1K
Replies
5
Views
2K
Replies
1
Views
677
Replies
4
Views
942
Replies
7
Views
3K
  • General Math
Replies
4
Views
1K
Replies
1
Views
779
Replies
4
Views
1K
Back
Top