HW8 Solutions PDF
HW8 Solutions PDF
HW8 Solutions PDF
2. (Chapter 10: Question 12) For any integer n ≥ 0, it follows that 9|(43n + 8).
Therefore, 9|(43(n+1) + 8). By Mathematical Induction 9|(43n + 8) holds for any integer n ≥ 0.
3. (Chapter 10: Question 18) Suppose A1 , A2 , . . . , An are sets in some universal set U , and n ≥ 2. Prove
that
A1 ∪ A2 ∪ · · · ∪ An = A1 ∩ A2 ∩ · · · ∩ An .
5. The Fibonacci numbers are defined to be F1 = 1, F2 = 1, and Fn = Fn−1 + Fn−2 for n > 2. Show that
for all k ∈ N, F4k is a multiple of 3.
F4(k+1) = F4k+4
= F4k+3 + F4k+2
= (F4k+2 + F4k+1 ) + (F4k+1 + F4k )
= ((F4k+1 + F4k ) + F4k+1 ) + (F4k+1 + F4k )
= 3F4k+1 + 2F4k
= 3F4k+1 + 2(3x)
= 3(F4k+1 + 2x).
Hence F4(k+1) is also a multiple of 3. Therefore, by induction we can conclude that F4k is a multiple of
3 for all k ∈ N.
• If bk+1 6∈ C, then C ⊆ {b1 , ..., bk }; it follows from the induction hypothesis that there are 2k such
subsets.
• If bk+1 ∈ C, then C = D ∪ {bk+1 } for some D ⊆ {b1 , ..., bk }; again, by the induction hypothesis
there are 2k such sets D.
Since these two cases give disjoint collections of sets, there must be 2k + 2k = 2k+1 subsets of B. Now
by induction the statement is true for all n ≥ 0.
7. Let f (x) = x ln x and x > 0. Denote f (n) (x) the nth derivative of f (x) for n ∈ N. Prove that for all
integer n ≥ 3 it holds
(n − 2)!
f (n) (x) = (−1)n n−1 .
x
Proof. We use induction on n.
Base case: n = 3. Direct computation shows:
f 0 (x) = 1 + ln x
1
f 00 (x) =
x
1 (3 − 2)!
f (3) (x) = − 2 = (−1)3 3−1 .
x x
Thus the statement is true for n = 3.
Inductive step: Assume k ≥ 3 and
(k − 2)!
f (k) (x) = (−1)k .
xk−1
For k + 1, we differentiate the above equality
((k + 1) − 2)!
f (k+1) (x) = (f (k) (x))0 = (−1)k (k−2)!(k−1)(−1)x−(k−1)−1) = (−1)k+1 (k−1)!x−k = (−1)k+1 .
x(k+1)−1
By induction the statement is true for all integer n ≥ 3.
Proof. We proceed by strong induction. Since a1 = 1 = 12 and a2 = 4 = 22 , the formula holds for
n = 1, 2. Assume ak = k 2 for every integer k with 2 ≤ k ≤ n. As n + 1 ≥ 3, we can use the iteration
formula as follows
9. Suppose you begin with a pile of n stones (n ≥ 2) and split this pile into n piles of one stone each by
successively splitting a pile of stones into two smaller piles. Each time you split a pile you multiply the
number of stones in each of the two smaller piles you form, so that if these piles have p and q stones
in them, respectively, you compute pq. Show that no matter how you split the piles (eventually into n
piles of one stone each), the sum of the products computed at each step equals n(n − 1)/2. (Hint: use
strong induction on n.)
n(n − 1) (n + 1)n
1·n+ = .
2 2
Case 2: If k = n, we have a pile with n stones and a pile with 1 stone, so we have the same formula for
the sum of the products as in Case 1.
Case 3: If 2 ≤ k < n, we can apply the induction hypothesis to both piles since 2 ≤ k ≤ n and
2 ≤ n + 1 − k ≤ n (to see this: as k < n, k + 1 ≤ n, so 1 ≤ n − k, then 2 ≤ n − k + 1; adding n to both
sides of 1 − k ≤ 0 yields n + 1 − k ≤ n). Now, the two piles together contribute a product k(n + 1 − k),
and individually the two piles contribute k(k − 1)/2 and (n + 1 − k)(n − k)/2, respectively, according
to the induction hypothesis; therefore the total sum is
k(k − 1) (n + 1 − k)(n − k)
+ + k(n + 1 − k)
2 2
1
(k 2 − k) + ((n + 1)n − (n + 1)k − kn + k 2 ) + 2k(n + 1 − k)
=
2
(n + 1)n
= .
2
Hence, by strong induction, the statement holds for any integer n ≥ 2. .