MA 1: PROBLEM SET NO. 1 SOLUTIONS 1. Prove that for all non

MA 1: PROBLEM SET NO. 1 SOLUTIONS
1. Prove that for all non-negative integers n, k with 0 ≤ k ≤ n + 1 one
has
n+1
n
n
=
+
.
k
k−1
k
Proof. We can prove this identity directly:
n
n
n!
n!
+
=
+
k−1
k
(k − 1)!(n + 1 − k)! k!(n − k)!
n!k + n!(n + 1 − k)
=
k!(n + 1 − k)!
n!(n + 1)
=
k!(n + 1 − k)!
n+1
(n + 1)!
=
.
=
k!(n + 1 − k)!
k
Alternate Proof. We won’t use these kinds of proofs in this class, but
for simple identities between integers like this one, we can give a combinatorial proof by showing that the numbers on both sides of the
equation are two different ways of counting the same quantity.
The number on the left corresponds to the number of ways of choosing k elements from n + 1 objects (without replacement). Choose a
distinguished element A from these n + 1 objects. Then the first number on the right-hand side counts the number of combinations of k
elements containing A, and the second number counts the number of
combinations of k elements that do not contain A. Since these two sets
are disjoint and their union gives all combinations of k objects from
n + 1 objects, we deduce the equality.
If you like proofs like this, I highly recommend checking out the
Math 6 series at Caltech, which is full of fun problems and emphasizes
these kinds of proofs.
2. Prove that for a pair of real numbers a and b, one has
n X
n n−i i
n
(a + b) =
a b.
i
i=0
1
Proof. We prove this by induction on n.
Base case. For n = 1, we have
1 1−0 0
1 1−1
(a + b) =
a b +
a b = a + b,
0
1
so the identity holds in this case.
Inductive step. Assume that the identity holds for n (the induction
hypothesis), we want to show that it holds for the n + 1 case.
By the induction hypothesis, we have
(a + b)n+1 = (a + b)n (a + b)
" n #
X n
=
an−i bi (a + b)
i
i=0
n
n X n
X
n n−i i+1
n+1−i i
=
a
b +
a b
i
i
i=0
i=0
n n+1 X
n n+1−i i X
n
=
a
b +
an+1−j bj (setting j = i + 1)
i
j−1
i=0
j=1
!
n X
n
n
= an+1 +
+
an+1−i bi + bn+1
i
i
−
1
i=1
! n X
n + 1 n+1
n + 1 n+1−i i
n + 1 n+1
=
a
+
a
b +
b
(by Problem 1)
0
i
n
+
1
i=1
n+1
X n+1
=
an+1−i bi ,
i
i=0
so by the principle of mathematical induction, our identity holds.
3. For any pair of integers n, k ≥ 1, show that
1k + 2k + · · · + (n − 1)k <
nk+1
< 1k + 2k + · · · + nk .
k+1
Proof. Fix a k ≥ 1. We will prove this result by induction on n.
Base case. For n = 1, we have
1k+1
1
(n − 1) = 0 = 0 <
=
< 1k = 1.
k+1
k+1
k
k
Inductive step. Assuming that the identity holds for n (the induction
hypothesis), we will prove these two inequalities for the n + 1 case.
2
We first prove the first inequality. By using the induction hypothesis
and adding nk to each side, we obtain
1k + 2k + · · · + nk <
nk+1
nk+1 + nk (k + 1)
+ nk =
.
k+1
k+1
Note that
(∗)
(n + 1)
k+1
=n
k+1
k+1 k
k+1
+
n + ··· +
n + 1.
1
k
Therefore, nk+1 + nk (k + 1) < (n + 1)k+1 and so
(n + 1)k+1
nk+1
+ nk <
,
k+1
k+1
establishing the first inequality.
We now prove the second inequality. By using the induction hypothesis and adding (n + 1)k to each side, we obtain
nk+1 + (k + 1)(n + 1)k
nk+1
+(n+1)k =
< 1k +2k +· · ·+nk +(n+1)k .
k+1
k+1
Note that
k k−1
k
k+1
k
k+1
k
n +(k+1)(n+1) = n +(k+1) n +
n
+ ··· +
n+1 .
1
k−1
To prove our inequality, we make the following elementary observation.
Lemma. For k, m ≥ 1, we have
k+1
k
< (k + 1)
.
m
m
Proof of Lemma. We have
(k + 1)!
k!(k + 1)
(k + 1)!
=
>
.
m!(k − m)!
m!(k − m)!
m!(k + 1 − m)!
Using the lemma and (∗), we see that nk+1 + (k + 1)(n + 1)k >
(n + 1)k+1 , and so
nk+1
(n + 1)k+1
+ (n + 1)k >
,
k+1
k+1
establishing the second identity.
Thus, by the principle of mathematical induction, our identity follows for all k, n ≥ 1.
4. Show by induction on n that
12 + 22 + · · · + n2 =
3
n(n + 1)(2n + 1)
.
6
Proof. We proceed by induction on n.
Base case. For the n = 1 case, we have
1=
1·2·3
.
6
Inductive step. Assuming our identity for n (the induction hypothesis), we want to deduce the identity for n + 1.
By using the induction hypothesis and adding (n + 1)2 to each side,
we obtain
12 + 22 + · · · + n2 + (n + 1)2 =
=
=
=
=
=
n(n + 1)(2n + 1)
+ (n + 1)2
6
n(n + 1)(2n + 1) + 6(n + 1)2
6
2
(n + 1)(2n + n + 6n + 6)
6
2
(n + 1)(2n + 7n + 6)
6
(n + 1)(n + 2)(2n + 3)
6
(n + 1)(n + 2)[2(n + 1) + 1]
,
6
as desired. By the principle of mathematical induction, we deduce our
result for all n ≥ 1.
5. Use the identity from the above problem to calculate the area enclosed by the x-axis and the graph of the function y = x2 from 0 to a
real number a.
4
y = x2
y
···
Solution.
y = x2
y
···
x
x
"
#
2
na 2
a a 2
2a
The sum of red rectangles is given as
+
=
··· +
n
n
n
n
n(n + 1)(2n + 1)a3
a3 2
2
2
(1
+
2
+
·
·
·
n
)
=
n3
6n3
The sum of blue rectangles is given as
"
2
2 #
2
2a
a
a
(n − 1)a
a3 2
+
··· +
= 3 (1 + 22 + · · · (n − 1)2 ) =
n
n
n
n
n
n(n − 1)(2n − 1)a3
.
6n3
When n goes to infinity, the right hand sides of both equations bea3
come . Therefore the area enclosed by x-axis and the graph becomes
3
a3
.
3
6. Consider the function f (x) = 13 x3 . Using the method explained in
class, find the slope of the line tangent to the graph of f at the point
(x, f (x)).
Proof. We can compute the slope of the line tangent to the graph of
f at the point (x, f (x)) by calculating the slope of the line connecting
(x, f (x)) and (x + h, f (x + h)) and considering h −→ 0.
5
The slope of the line connecting (x, f (x)) and (x + h, f (x) + h) is
equal to
(x + h)3 − x3
f (x + h) − f (x)
=
h
3h
x3 + 3x2 h + 3xh2 + h3 − x3
=
3h
2
3x + 3xh + h2
=
3
Therefore when h goes to zero, the slope of the line tangent to the
graph of f at the point (x, f (x)) becomes x2 .
7. (Bonus) Write a statement you would conjecture from the results
of the previous two problems. Can you give an argument for your
conjecture?
Solution. We can realize that the operations in Problem (6) and (7)
are inverse to each other. This can be an argument supporting that
integration and derivation are inverse to each other.
8. Let > 0 be a fixed positive number. Prove that if y0 6= 0 and
|y0 | |y0 |2
|y − y0 | < min
,
,
2
2
then y 6= 0 and
1
− 1 < .
y y0 Here, given two numbers a, b, min(a, b) denotes the minimum of a and
b. Similarly, one uses max(a, b) to denote the maximum of two numbers
a and b.
|y0 | |y0 |2
Proof. |y − y0 | < min
,
implies that
2
2
|y0 |
2
|y0 |2
(2)
|y − y0 | <
2
|y0 |
From (1), 0 ≤ ||y| − |y0 || ≤ |y − y0 | <
. Therefore,
2
|y − y0 | <
(1)
−
|y0 |
|y0 |
< |y| − |y0 | <
2
2
6
This implies
|y0 |
< |y|
2
(3)
Now for nonzero y,
1
1
− = |y − y0 | from (2)
y y0 |yy0 |
|y0 |2
|y0 |
<
=
from (3)
2|y||y0 |
2|y|
<
Alternate proof. (Brian: Here’s a proof that goes along the lines of the
strategy that discussed at my office hours on Sunday.) First, we show
that y 6= 0. Suppose that y = 0. Then |y − y0 | = | − y0 | = |y0 | < |y20 | ,
but this is a contradiction.
For the inequality, we first see that
1
y0 − y 1
1
− =
y y0 yy0 = |yy0 | |y − y0 |
|y0 |2
|y0 |
<
=
.
2|y||y0 |
2|y|
Thus, to complete our proof, it is enough to show that |y|y|0 | ≤ 2.
Suppose for contradiction that |y0 | > 2|y|, so y = ay0 for some a ∈ R
such that |a| < 21 . Then
|y − y0 | = |ay0 − y0 | = |a − 1||y0 | >
which contradicts the fact that |y − y0 | <
|y0 |
,
2
|y0 |
.
2
9. The numbers 1, 2, 3, 5, 8, 13, 21, . . ., in which each term after the
second is the sum of its two predecessors, are called Fibonacci numbers.
They may be defined inductively as follows:
F1 = 1, F2 = 2, Fn = Fn−1 + Fn−2 if n > 2.
Show by induction on n that
Fn <
√ !n
1+ 5
.
2
7
Proof. Base case. Since the inductive definition of Fibonacci numbers
depend on two predecessors, we need to verify the claim for the first
two cases as the induction basis. For n = 1,
√
1+ 5
F1 = 1 <
.
2
Moreover, for n = 2,
√
√
1+ 5 2 3+ 5
F2 = 2 < (
) =
.
2
2
Inductive step. Let’s prove that when the n − 1, n − 2 cases are true,
the nth case is true. Then√ this implies the inequality
√ by induction.
1 + 5 n−1
1 + 5 n−2
Suppose that Fn−1 < (
)
and Fn−2 < (
) .
2
2
√
√
1 + 5 n−1
1 + 5 n−2
Fn = Fn−1 + Fn−2 < (
)
+(
)
2
2
!
√
√
√
√
1 + 5 n−2 1 + 5
1 + 5 n−2 3 + 5
=(
)
+1 =(
) (
)
2
2
2
2
√
1+ 5 n
=(
)
2
8