2.E: Sequences (Exercises)
( \newcommand{\kernel}{\mathrm{null}\,}\)
2.1: Definitions
1
Find the closed formula for each of the following sequences by relating them to a well known sequence. Assume the first term given is a1.
- 2,5,10,17,26,…
- 0,2,5,9,14,20,…
- 8,12,17,23,30,…
- 1,5,23,119,719,…
- Answer
-
- an=n2+1.
- an=n(n+1)2−1.
- an=(n+2)(n+3)2+2.
- an=(n+1)!−1 (where n!=1⋅2⋅3⋯n).
2
For each sequence given below, find a closed formula for an, the nth term of the sequence (assume the first terms are a0) by relating it to another sequence for which you already know the formula. In each case, briefly say how you got your answers.
- 4, 5, 7, 11, 19, 35, …
- 0, 3, 8, 15, 24, 35, …
- 6, 12, 20, 30, 42, …
- 0, 2, 7, 15, 26, 40, 57, … (Cryptic Hint: these might be called “house numbers”)
3
The Fibonacci sequence is 0,1,1,2,3,5,8,13,… (where F0=0).
- Give the recursive definition for the sequence.
- Write out the first few terms of the sequence of partial sums: 0, 0+1, 0+1+1,…
- Give a closed formula for the sequence of partial sums in terms of Fn (for example, you might say F0+F1+⋯+Fn=3F2n−1+n, although that is definitely not correct).
- Answer
-
- Fn=Fn−1+Fn−2 with F0=0 and F1=1.
- 0,1,2,4,7,12,20,….
- F0+F1+⋯+Fn=Fn+2−1.
4
Consider the three sequences below. For each, find a recursive definition. How are these sequences related?
- 2,4,6,10,16,26,42,….
- 5,6,11,17,28,45,73,….
- 0,0,0,0,0,0,0,….
- Answer
-
The sequences all have the same recurrence relation: an=an−1+an−2 (the same as the Fibonacci numbers). The only difference is the initial conditions.
5
Show that an=3⋅2n+7⋅5n is a solution to the recurrence relation an=7an−1−10an−2. What would the initial conditions need to be for this to be the closed formula for the sequence?
6
Write out the first few terms of the sequence given by a1=3; an=2an−1+4. Then find a recursive definition for the sequence 10,24,52,108,….
7
Write out the first few terms of the sequence given by an=n2−3n+1. Then find a closed formula for the sequence (starting with a1) 0,2,6,12,20,….
8
Find a closed formula for the sequence with recursive definition an=2an−1−an−2 with a1=1 and a2=2.
9
Find a recursive definition for the sequence with closed formula an=3+2n. Bonus points if you can give a recursive definition in which makes use of two previous terms and no constants.
2.2: Arithmetic and Geometric Sequences
1
Consider the sequence 5,9,13,17,21,… with a1=5
- Give a recursive definition for the sequence.
- Give a closed formula for the nth term of the sequence.
- Is 2013 a term in the sequence? Explain.
- How many terms does the sequence 5,9,13,17,21,…,533 have?
- Find the sum: 5+9+13+17+21+⋯+533. Show your work.
- Use what you found above to find bn, the nth term of 1,6,15,28,45,…, where b0=1
- Answer
-
- an=an−1+4 with a1=5.
- an=5+4(n−1).
- Yes, since 2013=5+4(503−1) (so a503=2013).
- 133
- 538⋅1332=35777.
- bn=1+(4n+6)n2.
2
Consider the sequence (an)n≥0 which starts 8,14,20,26,….
- What is the next term in the sequence?
- Find a formula for the nth term of this sequence.
- Find the sum of the first 100 terms of the sequence: ∑99k=0ak.
- Answer
-
- 32, which is 26+6.
- an=8+6n.
- 30500. We want 8+14+⋯+602. Reverse and add to get 100 sums of 610, a total of 61000, which is twice the sum we are looking for.
3
Consider the sum 4+11+18+25+⋯+249.
- How many terms (summands) are in the sum?
- Compute the sum. Remember to show all your work.
- Answer
-
- 36.
- 253⋅362=4554.
4
Consider the sequence 1,7,13,19,…,6n+7.
- How many terms are there in the sequence?
- What is the second-to-last term?
- Find the sum of all the terms in the sequence.
- Answer
-
- n+2 terms, since to get 1 using the formula 6n+7 we must use n=−1. Thus we have n terms, plus the n=0 and n=−1 terms.
- 6n+1, which is 6 less than 6n+7 (or plug in n−1 for n).
- (6n+8)(n+2)2. Reverse and add. Each sum gives the constant 6n+8 and there are n+2 terms.
5
Find 5+7+9+11+⋯+521.
- Answer
-
68117. If we take a0=5, the terms of the sum are an arithmetic sequence with closed formula an=5+2n. Then 521=a258, for a total of 259 terms in the sum. Reverse and add to get 259 identical 526 terms, which is twice the total we seek. 526⋅259=68117
6
Find 5+15+45+⋯+5⋅320.
- Answer
-
5−5⋅321−2. Let the sum be S, and compute S−3S=−2S, which causes terms except 5 and −5⋅321 to cancel. Then solve for S.
7
Find 1−23+49−⋯+230330.
8
Find x and y such that 27,x,y,1 is part of an arithmetic sequence. Then find x and y so that the sequence is part of a geometric sequence. (Warning: x and y might not be integers.)
9
Starting with any rectangle, we can create a new, larger rectangle by attaching a square to the longer side. For example, if we start with a 2×5 rectangle, we would glue on a 5×5 square, forming a 5×7 rectangle:
- Create a sequence of rectangles using this rule starting with a 1×2 rectangle. Then write out the sequence of perimeters for the rectangles (the first term of the sequence would be 6, since the perimeter of a 1×2 rectangle is 6 - the next term would be 10).
- Repeat the above part this time starting with a 1×3 rectangle.
- Find recursive formulas for each of the sequences of perimeters you found in parts (a) and (b). Don't forget to give the initial conditions as well.
- Are the sequences arithmetic? Geometric? If not, are they close to being either of these (i.e., are the differences or ratios almost constant)? Explain.
10
Consider the sequence 2,7,15,26,40,57,… (with a0=2). By looking at the differences between terms, express the sequence as a sequence of partial sums. Then find a closed formula for the sequence by computing the nth partial sum.
- Answer
-
We have 2=2, 7=2+5, 15=2+5+8, 26=2+5+8+11, and so on. The terms in the sums are given by the arithmetic sequence bn=2+3n. In other words, an=∑nk=0(2+3k). To find the closed formula, we reverse and add. We get an=(4+3n)(n+1)2 (we have n+1 there because there are n+1 terms in the sum for an).
11
If you have enough toothpicks, you can make a large triangular grid. Below, are the triangular grids of size 1 and of size 2. The size 1 grid requires 3 toothpicks, the size 2 grid requires 9 toothpicks.
- Let tn be the number of toothpicks required to make a size n triangular grid. Write out the first 5 terms of the sequence t1,t2,….
- Find a recursive definition for the sequence. Explain why you are correct.
- Is the sequence arithmetic or geometric? If not, is it the sequence of partial sums of an arithmetic or geometric sequence? Explain why your answer is correct.
- Use your results from part (c) to find a closed formula for the sequence. Show your work.
12
Use summation (∑) or product (∏) notation to rewrite the following.
- 2+4+6+8+⋯+2n.
- 1+5+9+13+⋯+425.
- 1+12+13+14+⋯+150.
- 2⋅4⋅6⋅⋯⋅2n.
- (12)(23)(34)⋯(100101).
- Answer
-
- n∑k=12k.
- 107∑k=1(1+4(k−1)).
- 50∑k=11k.
- n∏k=12k.
- 100∏k=1kk+1.
13
Expand the following sums and products. That is, write them out the long way.
- 100∑k=1(3+4k).
- n∑k=02k.
- 50∑k=21(k2−1).
- 100∏k=2k2(k2−1).
- n∏k=0(2+3k).
- Answer
-
- 100∑k=1(3+4k)=7+11+15+⋯+403.
- n∑k=02k=1+2+4+8+⋯+2n.
- 50∑k=21(k2−1)=1+13+18+115+⋯+12499.
- 100∏k=2k2(k2−1)=43⋅98⋅1615⋯100009999.
- n∏k=0(2+3k)=(2)(5)(8)(11)(14)⋯(2+3n).
2.3: Polynomial Fitting
1
Use polynomial fitting to find the formula for the nth term of the sequences (an)n≥0 below.
- 2, 5, 11, 21, 36,…
- 0, 2, 6, 12, 20,…
- 1, 2, 4, 8, 15, 26 …
- 3, 6, 12, 22, 37, …. After finding a formula here, compare to part (a).
- Answer
-
- Notice that the third differences are constant, so an=an3+bn2+cn+d. Use the terms of the sequence to solve for a,b,c, and d to get an=16(12+11n+6n2+n3).
- an=n2+n. Here we know that we are looking for a quadratic because the second differences are constant. So an=an2+bn+c. Since a0=0, we know c=0. So just solve the system 2=a+b6=4a+2b
2
Make up a sequences that have
- 3, 3, 3, 3, … as its second differences.
- 1, 2, 3, 4, 5, … as its third differences.
- 1, 2, 4, 8, 16, … as its 100th differences.
3
Consider the sequence 1,3,7,13,21,…. Explain how you know the closed formula for the sequence will be quadratic. Then “guess” the correct formula by comparing this sequence to the squares 1,4,9,16,… (do not use polynomial fitting).
SolutionThe first differences are 2,4,6,8,…, and the second differences are 2,2,2,…. Thus the original sequence is Δ2-constant, so can be fit to a quadratic.
Call the original sequence an. Consider an−n2. This gives 0,−1,−2,−3,…. That sequence has closed formula 1−n (starting at n=1) so we have an−n2=1−n or equivalently an=n2−n+1.
4
Use a similar technique as in the previous exercise to find a closed formula for the sequence 2,11,34,77,146,247,….
5
In their down time, ghost pirates enjoy stacking cannonballs in triangular based pyramids (aka, tetrahedrons), like those pictured here:
Note, in the picture on the right, there are some cannonballs (actually just one) you cannot see. The next picture would have 4 cannonballs you cannot see. The stacks are not hollow.
The pirates wonder how many cannonballs would be required to build a pyramid 15 layers high (thus breaking the world cannonball stacking record). Can you help?
- Let P(n) denote the number of cannonballs needed to create a pyramid n layers high. So P(1)=1, P(2)=4, and so on. Calculate P(3), P(4) and P(5).
- Use polynomial fitting to find a closed formula for P(n). Show your work.
- Answer the pirate's question: how many cannonballs do they need to make a pyramid 15 layers high?
6
Suppose an=n2+3n+4. Find a closed formula for the sequence of differences by computing an−an−1.
- Answer
-
an−1=(n−1)2+3(n−1)+4=n2+n+2. Thus an−an−1=2n+2. Note that this is linear (arithmetic). We can check that we are correct. The sequence an is 4,8,14,22,32,… and the sequence of differences is thus 4,6,8,10,… which agrees with 2n+2 (if we start at n=1).
7
Repeat the above assuming this time an=an2+bn+c. That is, prove that every quadratic sequence has arithmetic differences.
8
Can you use polynomial fitting to find the formula for the nth term of the sequence 4, 7, 11, 18, 29, 47, …? Explain why or why not.
9
Will the nth sequence of differences of 2,6,18,54,162,… ever be constant? Explain.
10
Consider the sequences 2,5,12,29,70,169,408,… (with a0=2).
- Describe the rate of growth of this sequence.
- Find a recursive definition for the sequence.
- Find a closed formula for the sequence.
- If you look at the sequence of differences between terms, and then the sequence of second differences, the sequence of third differences, and so on, will you ever get a constant sequence? Explain how you know
2.4: Solving Recurrence Relations
1
Find the next two terms in (an)n≥0 beginning 3,5,11,21,43,85….. Then give a recursive definition for the sequence. Finally, use the characteristic root technique to find a closed formula for the sequence.
- Answer
-
171 and 341. an=an−1+2an−2 with a0=3 and a1=5. Closed formula: an=832n+13(−1)n. To find this solve the characteristic polynomial, x2−x−2, to get characteristic roots x=2 and x=−1. Then solve the system 3=a+b5=2a−b
2
Solve the recurrence relation an=an−1+2n with a0=5.
- Answer
-
an=3+2n+1. We should use telescoping or iteration here. For example, telescoping gives
a1−a0=21a2−a1=22a3−a2=23⋮⋮an−an−1=2nwhich sums to an−a0=2n+1−2 (using the multiply-shift-subtract technique from Section 2.2 for the right-hand side). Substituting a0=5 and solving for an completes the solution.
3
Show that 4n is a solution to the recurrence relation an=3an−1+4an−2.
- Answer
-
We claim an=4n works. Plug it in: 4n=3(4n−1)+4(4n−2). This works - just simplify the right-hand side.
4
Find the solution to the recurrence relation an=3an−1+4an−2 with initial terms a0=2 and a1=3.
- Answer
-
By the Characteristic Root Technique. an=4n+(−1)n.
5
Find the solution to the recurrence relation an=3an−1+4an−2 with initial terms a0=5 and a1=8.
6
Solve the recurrence relation an=2an−1−an−2.
- What is the solution if the initial terms are a0=1 and a1=2?
- What do the initial terms need to be in order for a9=30?
- For which x are there initial terms which make a9=x?
7
Solve the recurrence relation an=3an−1+10an−2 with initial terms a0=4 and a1=1.
8
Suppose that rn and qn are both solutions to a recurrence relation of the form an=αan−1+βan−2. Prove that c⋅rn+d⋅qn is also a solution to the recurrence relation, for any constants c,d.
9
Think back to the magical candy machine at your neighborhood grocery store. Suppose that the first time a quarter is put into the machine 1 Skittle comes out. The second time, 4 Skittles, the third time 16 Skittles, the fourth time 64 Skittles, etc.
- Find both a recursive and closed formula for how many Skittles the nth customer gets.
- Check your solution for the closed formula by solving the recurrence relation using the Characteristic Root technique.
10
You have access to 1×1 tiles which come in 2 different colors and 1×2 tiles which come in 3 different colors. We want to figure out how many different 1×n path designs we can make out of these tiles.
- Find a recursive definition for the sequence an of paths of length n.
- Solve the recurrence relation using the Characteristic Root technique.
11
Let an be the number of 1×n tile designs you can make using 1×1 squares available in 4 colors and 1×2 dominoes available in 5 colors.
- First, find a recurrence relation to describe the problem. Explain why the recurrence relation is correct (in the context of the problem).
- Write out the first 6 terms of the sequence a1,a2,….
- Solve the recurrence relation. That is, find a closed formula for an.
12
Consider the recurrence relation an=4an−1−4an−2.
- Find the general solution to the recurrence relation (beware the repeated root).
- Find the solution when a0=1 and a1=2.
- Find the solution when a0=1 and a1=8.
2.5: Induction
1
Use induction to prove for all n∈N that n∑k=02k=2n+1−1.
- Solution
-
Proof
We must prove that 1+2+22+23+⋯+2n=2n+1−1 for all n∈N. Thus let P(n) be the statement 1+2+22+⋯+2n=2n+1−1. We will prove that P(n) is true for all n∈N. First we establish the base case, P(0), which claims that 1=20+1−1. Since 21−1=2−1=1, we see that P(0) is true. Now for the inductive case. Assume that P(k) is true for an arbitrary k∈N. That is, 1+2+22+⋯+2k=2k+1−1. We must show that P(k+1) is true (i.e., that 1+2+22+⋯+2k+1=2k+2−1). To do this, we start with the left-hand side of P(k+1) and work to the right-hand side:
1+2+22+⋯+2k+2k+1= 2k+1−1+2k+1by inductive hypothesis= 2⋅2k+1−1= 2k+2−1
Thus P(k+1) is true so by the principle of mathematical induction, P(n) is true for all n∈N.
2
Prove that 7n−1 is a multiple of 6 for all n∈N.
- Solution
-
Proof
Let P(n) be the statement “7n−1 is a multiple of 6.” We will show P(n) is true for all n∈N. First we establish the base case, P(0). Since 70−1=0, and 0 is a multiple of 6, P(0) is true. Now for the inductive case. Assume P(k) holds for an arbitrary k∈N. That is, 7k−1 is a multiple of 6, or in other words, 7k−1=6j for some integer j. Now consider 7k+1−1:
7k+1−1 =7k+1−7+6by cleverness:−1=−7+6=7(7k−1)+6factor out a 7 from the first two terms=7(6j)+6by the inductive hypothesis=6(7j+1)factor out a 6
Therefore 7k+1−1 is a multiple of 6, or in other words, P(k+1) is true. Therefore by the principle of mathematical induction, P(n) is true for all n∈N.
3
Prove that 1+3+5+⋯+(2n−1)=n2 for all n≥1.
- Solution
-
Proof
Let P(n) be the statement 1+3+5+⋯+(2n−1)=n2. We will prove that P(n) is true for all n≥1. First the base case, P(1). We have 1=12 which is true, so P(1) is established. Now the inductive case. Assume that P(k) is true for some fixed arbitrary k≥1. That is, 1+3+5+⋯+(2k−1)=k2. We will now prove that P(k+1) is also true (i.e., that 1+3+5+⋯+(2k+1)=(k+1)2). We start with the left-hand side of P(k+1) and work to the right-hand side:
1+3+5+⋯+(2k−1)+(2k+1) =k2+(2k+1)by ind. hyp.=(k+1)2by factoring
Thus P(k+1) holds, so by the principle of mathematical induction, P(n) is true for all n≥1.
4
Prove that F0+F2+F4+⋯+F2n=F2n+1−1 where Fn is the nth Fibonacci number.
- Solution
-
Proof
Let P(n) be the statement F0+F2+F4+⋯+F2n=F2n+1−1. We will show that P(n) is true for all n≥0. First the base case is easy because F0=0 and F1=1 so F0=F1−1. Now consider the inductive case. Assume P(k) is true, that is, assume F0+F2+F4+⋯+F2k=F2k+1−1. To establish P(k+1) we work from left to right:
F0+F2+⋯+F2k+F2k+2 =F2k+1−1+F2k+2by ind. hyp.=F2k+1+F2k+2−1=F2k+3−1by recursive def.Therefore F0+F2+F4+⋯+F2k+2=F2k+3−1, which is to say P(k+1) holds. Therefore by the principle of mathematical induction, P(n) is true for all n≥0.
5
Prove that 2n<n! for all n≥4. (Recall, n!=1⋅2⋅3⋅⋯⋅n.)
- Solution
-
Proof
Let P(n) be the statement 2n<n!. We will show P(n) is true for all n≥4. First, we check the base case and see that yes, 24<4! (as 16<24) so P(4) is true. Now for the inductive case. Assume P(k) is true for an arbitrary k≥4. That is, 2k<k!. Now consider P(k+1): 2k+1<(k+1)!. To prove this, we start with the left side and work to the right side.
2k+1 =2⋅2k<2⋅k!by the inductive hypothesis<(k+1)⋅k! since k+1>2=(k+1)!Therefore 2k+1<(k+1)! so we have established P(k+1). Thus by the principle of mathematical induction P(n) is true for all n≥4.
6
Prove, by mathematical induction, that F0+F1+F2+⋯+Fn=Fn+2−1, where Fn is the nth Fibonacci number (F0=0, F1=1 and Fn=Fn−1+Fn−2).
7
Zombie Euler and Zombie Cauchy, two famous zombie mathematicians, have just signed up for Twitter accounts. After one day, Zombie Cauchy has more followers than Zombie Euler. Each day after that, the number of new followers of Zombie Cauchy is exactly the same as the number of new followers of Zombie Euler (and neither lose any followers). Explain how a proof by mathematical induction can show that on every day after the first day, Zombie Cauchy will have more followers than Zombie Euler. That is, explain what the base case and inductive case are, and why they together prove that Zombie Cauchy will have more followers on the 4th day.
8
Find the largest number of points which a football team cannot get exactly using just 3-point field goals and 7-point touchdowns (ignore the possibilities of safeties, missed extra points, and two point conversions). Prove your answer is correct by mathematical induction.
9
Prove that the sum of n squares can be found as follows
12+22+32+...+n2=n(n+1)(2n+1)610
What is wrong with the following “proof” of the “fact” that n+3=n+7 for all values of n (besides of course that the thing it is claiming to prove is false)?
Proof
Let P(n) be the statement that n+3=n+7. We will prove that P(n) is true for all n∈N. Assume, for induction that P(k) is true. That is, k+3=k+7. We must show that P(k+1) is true. Now since k+3=k+7, add 1 to both sides. This gives k+3+1=k+7+1. Regrouping (k+1)+3=(k+1)+7. But this is simply P(k+1). Thus by the principle of mathematical induction P(n) is true for all n∈N.
- Solution
-
The only problem is that we never established the base case. Of course, when n=0, 0+3≠0+7.
11
The proof in the previous problem does not work. But if we modify the “fact,” we can get a working proof. Prove that n+3<n+7 for all values of n∈N. You can do this proof with algebra (without induction), but the goal of this exercise is to write out a valid induction proof.
- Answer
-
Proof
Let P(n) be the statement that n+3<n+7. We will prove that P(n) is true for all n∈N. First, note that the base case holds: 0+3<0+7. Now assume for induction that P(k) is true. That is, k+3<k+7. We must show that P(k+1) is true. Now since k+3<k+7, add 1 to both sides. This gives k+3+1<k+7+1. Regrouping (k+1)+3<(k+1)+7. But this is simply P(k+1). Thus by the principle of mathematical induction P(n) is true for all n∈N.
◻
12
Find the flaw in the following “proof” of the “fact” that n<100 for every n∈N.
Proof
Let P(n) be the statement n<100. We will prove P(n) is true for all n∈N. First we establish the base case: when n=0, P(n) is true, because 0<100. Now for the inductive step, assume P(k) is true. That is, k<100. Now if k<100, then k is some number, like 80. Of course 80+1=81 which is still less than 100. So k+1<100 as well. But this is what P(k+1) claims, so we have shown that P(k)→P(k+1). Thus by the principle of mathematical induction, P(n) is true for all n∈N.
- Solution
-
The problem here is that while P(0) is true, and while P(k)→P(k+1) for some values of k, there is at least one value of k (namely k=99) when that implication fails. For a valid proof by induction, P(k)→P(k+1) must be true for all values of k greater than or equal to the base case.
13
While the above proof does not work (it better not since the statement it is trying to prove is false!) we can prove something similar. Prove that there is a strictly increasing sequence a1,a2,a3,… of numbers (not necessarily integers) such that an<100 for all n∈N. (By strictly increasing we mean an<an+1 for all n. So each term must be larger than the last.)
- Solution
-
Proof
Let P(n) be the statement “there is a strictly increasing sequence a1,a2,…,an with an<100.” We will prove P(n) is true for all n≥1. First we establish the base case: P(1) says there is a single number a1 with a1<100. This is true – take a1=0. Now for the inductive step, assume P(k) is true. That is there exists a strictly increasing sequence a1,a2,a3,…,ak with ak<100. Now consider this sequence, plus one more term, ak+1 which is greater than ak but less than 100. Such a number exists, for example, the average between ak and 100. So then P(k+1) is true, so we have shown that P(k)→P(k+1). Thus by the principle of mathematical induction, P(n) is true for all n∈N.
14
What is wrong with the following “proof” of the “fact” that for all n∈N, the number n2+n is odd?
Proof
Let P(n) be the statement “n2+n is odd.” We will prove that P(n) is true for all n∈N. Suppose for induction that P(k) is true, that is, that k2+k is odd. Now consider the statement P(k+1). Now (k+1)2+(k+1)=k2+2k+1+k+1=k2+k+2k+2. By the inductive hypothesis, k2+k is odd, and of course 2k+2 is even. An odd plus an even is always odd, so therefore (k+1)2+(k+1) is odd. Therefore by the principle of mathematical induction, P(n) is true for all n∈N.
◻
15
Now give a valid proof (by induction, even though you might be able to do so without using induction) of the statement, “for all n∈N, the number n2+n is even.”
16
Prove that there is a sequence of positive real numbers a0,a1,a2,… such that the partial sum a0+a1+a2+⋯+an is strictly less than 2 for all n∈N. Hint: think about how you could define what ak+1 is to make the induction argument work.
- Solution
-
The idea is to define the sequence so that an is less than the distance between the previous partial sum and 2. That way when you add it into the next partial sum, the partial sum is still less than 2. You could do this ahead of time, or use a clever P(n) in the induction proof.
Proof
Let P(n) be the statement, “there is a sequence of positive real numbers a0,a1,a2,…,an such that a0+a1+a2+⋯+an<2.”
Base case: Pick any a0<2.
Inductive case: Assume that a1+a2+⋯+ak<2. Now let ak+1=2−a1+a2+⋯+ak2. Then a1+a2+⋯+ak+ak+1<2.
Therefore, by the principle of mathematical induction, P(n) is true for all n∈N
17
Prove that every positive integer is either a power of 2, or can be written as the sum of distinct powers of 2.
- Solution
-
The proof will by by strong induction.
Proof
Let P(n) be the statement “n is either a power of 2 or can be written as the sum of distinct powers of 2.” We will show that P(n) is true for all n≥1.
Base case: 1=20 is a power of 2, so P(1) is true.
Inductive case: Suppose P(k) is true for all k<n. Now if n is a power of 2, we are done. If not, let 2x be the largest power of 2 strictly less than n. Consider n−2x, which is a smaller number, in fact smaller than both n and 2x. Thus n−2x is either a power of 2 or can be written as the sum of distinct powers of 2, but none of them are going to be 2x, so the together with 2x we have written n as the sum of distinct powers of 2.
Therefore, by the principle of (strong) mathematical induction, P(n) is true for all n≥1.
18
Prove, using strong induction, that every natural number is either a Fibonacci number or can be written as the sum of distinct Fibonacci numbers.
19
Use induction to prove that if n people all shake hands with each other, that the total number of handshakes is n(n−1)2.
- Solution
-
Note, we have already proven this without using induction, but looking at it inductively sheds light onto the problem (and is fun).
Proof
Let P(n) be the statement “when n people shake hands with each other, there are a total of n(n−1)2 handshakes.”
Base case: When n=2, there will be one handshake, and 2(2−1)2=1. Thus P(2) is true.
Inductive case: Assume P(k) is true for arbitrary k≥2 (that the number of handshakes among k people is k(k−1)2. What happens if a k+1st person shows up? How many new handshakes take place? The new person must shake hands with everyone there, which is k new handshakes. So the total is now k(k−1)2+k=(k+1)k2, as needed.
Therefore, by the principle of mathematical induction, P(n) is true for all n≥2.
20
Suppose that a particular real number x has the property that x+1x is an integer. Prove that xn+1xn is an integer for all natural numbers n.
- Solution
-
When n=0, we get x0+1x0=2 and when n=1, x+1x is an integer, so the base case holds. Now assume the result holds for all natural numbers n<k. In particular, we know that xk−1+1xk−1 and x+1x are both integers. Thus their product is also an integer. But,
(xk−1+1xk−1)(x+1x)=xk+xk−1x+xxk−1+1xk=xk+1xk+xk−2+1xk−2Note also that xk−2+1xk−2 is an integer by the induction hypothesis, so we can conclude that xk+1xk is an integer.
21
Use induction to prove that n∑k=0(nk)=2n. That is, the sum of the nth row of Pascal's Triangle is 2n.
22
Use induction to prove (40)+(51)+(62)+⋯+(4+nn)=(5+nn). (This is an example of the hockey stick theorem.)
23
Use the product rule for logarithms (log(ab)=log(a)+log(b)) to prove, by induction on n, that log(an)=nlog(a), for all natural numbers n≥2.
- Solution
-
The idea here is that if we take the logarithm of an, we can increase n by 1 if we multiply by another a (inside the logarithm). This results in adding 1 more log(a) to the total.
Proof
Let P(n) be the statement log(an)=nlog(a). The base case, P(2) is true, because log(a2)=log(a⋅a)=log(a)+log(a)=2log(a), by the product rule for logarithms. Now assume, for induction, that P(k) is true. That is, log(ak)=klog(a). Consider log(ak+1). We have
log(ak+1)=log(ak⋅a)=log(ak)+log(a)=klog(a)+log(a)with the last equality due to the inductive hypothesis. But this simplifies to (k+1)log(a), establishing P(k+1). Therefore by the principle of mathematical induction, P(n) is true for all n≥2.
24
Let f1,f2,…,fn be differentiable functions. Prove, using induction, that
(f1+f2+⋯+fn)′=f′1+f′2+⋯+f′nYou may assume (f+g)′=f′+g′ for any differentiable functions f and g.
- Hint
-
You are allowed to assume the base case. For the inductive case, group all but the last function together as one sum of functions, then apply the usual sum of derivatives rule, and then the inductive hypothesis.
25
Suppose f1,f2,…,fn are differentiable functions. Use mathematical induction to prove the generalized product rule:
(f1f2f3⋯fn)′=f′1f2f3⋯fn+f1f′2f3⋯fn+f1f2f′3⋯fn+⋯+f1f2f3⋯f′nYou may assume the product rule for two functions is true.
- Hint
-
For the inductive step, we know by the product rule for two functions that
(f1f2f3⋯fkfk+1)′=(f1f2f3⋯fk)′fk+1+(f1f2f3⋯fk)f′k+1Then use the inductive hypothesis on the first summand, and distribute.