5.3 Recursive Definitions and Structural Induction
p365
Ex: 1, 2, 3, 5
EXAMPLE 1
Suppose that f is defined recursively by
f(0)f(n+1)=3=2f(n)+3
Find f(1),f(2),f(3) and f(4).
EXAMPLE 2
Give a recursive definition of an, where a is a nonzero real number and n is a nonnegative integer.
Solution: The recursive definition contains two parts. First a0 is specified, namely, a0=1. Then the rule for finding a n+1 from an, namely, an+1=a⋅an, for n=0,1,2,3,⋯, is given. These
two equations uniquely define an for all nonnegative integers n.
EXAMPLE 3
Give a recursive definition of k=0∑nak.
Solution: The first part of the recursive definition is k=0∑0=a0.
The second part is k=0∑n+1ak=(k=0∑nak)+an+1
EXAMPLE 5
Consider the subset S of the set of integers recursively defined by
Basic Step: 3∈S.
Recursive Step: If x∈S and y∈S, then x+y∈S.
The new elements found to be in S are 3 by the basis step, 3+3=6 at the first application of the recursive step, 3+6=6+3=9 and 6+6=12 at the second application of the recursive step, and so on. We will show in Example 10 that S is the set of all positive multiples of 3.
Homework
p379: 12, 13, 15, 48, 49, 50
In Exercises 12–19 fn is the nth Fibonacci number.
12. Prove that f12+f22+⋯+fn2=fnfn+1 when n is a positive integer.
Solution
Proof:
Let P(n) be the statement f12+f22+⋯+fn2=fnfn+1 for all positive integer n.
Basic step. P(1) is true, because f12=12=1⋅1=f1f2.
Hypothesis. Assume P(n) is true for n=k
f12+f22+⋯+fk2=fkfk+1
Inductive step We need to prove P(k+1), namely, f12+f22+⋯+fk+12=fk+1fk+2, is true.
f12+f22+⋯+fk+12=f12+f22+⋯+fk2+fk+12=fkfk+1+fk+12=fk+1(fk+fk+1)=fk+1fk+2By HypothesisCommon factor fk+1Definition of Fabonacci Function
By induction, P(n) is true.
13. Prove that f1+f3+⋯+f2n−1=f2n when n is a positive integer.
Solution
Proof:
Let P(n) be the statement f1+f3+⋯+f2n−1=f2n for all positive integer n.
Basic step. P(1) is true, because f12=12=1=f2.
Hypothesis. Assume P(n) is true for n=k
f1+f3+⋯+f2k−1=f2k
Inductive step We need to prove P(k+1), namely, f1+f3+⋯+f2k+1=f2k+2, is true.
f1+f3+⋯+f2k+1=f1+f3+⋯+f2k−1+f2k+1=f2k+f2k+1=f2k+2By HypothesisDefinition of Fabonacci Function
By induction, P(n) is true.
15. Show that f0f1+f1f2+⋯+f2n−1f2n=f2n2 when n is a positive integer.
Solution
Proof:
Let P(n) be the statement f0f1+f1f2+⋯+f2n−1f2n=f2n2 for all positive integer n.
Basic step. P(1) is true, because f0f1+f1f2=0⋅1+1⋅1=1=f22.
Hypothesis. Assume P(n) is true for n=k
f0f1+f1f2+⋯+f2k−1f2k=f2k2
Inductive step We need to prove P(k+1), namely, f0f1+f1f2+⋯+f2k+1f2k+2=f2k+22, is true.
f0f1+f1f2+⋯+f2k+1f2k+2=f0f1+f1f2+⋯+f2k−1f2k+f2kf2k+1+f2k+1f2k+2=f2k2+f2kf2k+1+f2k+1f2k+2=f2k(f2k+f2k+1)+f2k+1f2k+2=f2kf2k+2+f2k+1f2k+2=f2k+2(f2k+f2k+1)=f2k+22By HypothesisCommon factor f)2kDefinition of Fabonacci FunctionCommon factorDefinition of Fabonacci Function
By induction, P(n) is true.
Consider an inductive definition of a version of Ackermann's function. This function was named after Wilhelm Ackermann, a German mathematician who was a student of the great mathematician David Hilbert. Ackermann's function plays an important role in the theory of recursive functions and in the study of the complexity of certain algorithms involving set unions. (There are several different variants of this function. All are called Ackermann's function and have similar properties even though their values do not always agree.)
A(m,n)=⎩⎪⎨⎪⎧2n02if m=0if m⩾1 and n=0if m⩾1 and n=1A(m−1,A(m,n−1)),if m⩾1 and n⩾2
Exercises 48–55 involve this version of Ackermann's function.
48. Find these values of Ackermann's function.
a. A(1,0) b. A(0,1) c. A(1,1) d. A(2,2)
Solution
a. A(1,0)=0 b. A(0,1)=2⋅1=2 c. A(1,1)=2
d.
A(2,2)=A(2−1,A(2,2−1))=A(1,A(2,1))=A(1,2)=A(0,A(1,1))=A(0,2)=2⋅2=4
49. Show that A(m,2)=4 whenever m⩾1.
Solution
Proof:
Let P(m) be the statement A(m,2)=4 for every m greater than or equal to 1.
Basic step. P(1) is true, because A(1,2)=A(0,A(1,1))=A(0,2)=4.
Hypothesis. Assume P(k) is true for m=k
A(k,2)=4
Inductive step We need to prove P(k+1), namely, A(k+1,2)=4, is true.
A(k+1,2)=A(k,A(k+1,1))=A(k,2)=4Definition of Ackermann’s functionBy hypothesis
By induction, P(m) is true.
50. Show that A(1,n)=2n whenever n⩾1.
Solution
Proof:
Let P(n) be the statement A(1,n)=2n for every n greater than or equal to 1.
Basic step. P(1) is true, because A(1,1)=2=21.
Hypothesis. Assume P(k) is true for n=k
A(1,k)=2k
Inductive step We need to prove P(k+1), namely, A(1,k+1)=2k+1, is true.
A(1,k+1)=A(0,A(1,k))=A(0,2k)=2⋅2k=2k+1By hypothesisDefinition of Ackermann’s function
By induction, P(n) is true.