-
Notifications
You must be signed in to change notification settings - Fork 1
/
mathematical_induction.tex
269 lines (209 loc) · 10.7 KB
/
mathematical_induction.tex
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
\yourname
\activitytitle{Mathematical Induction}{Proving that a claim is true for all $n=1, 2, 3, \ldots$ by building on previous results. }
\overview{One important task in mathematics is to find regular patterns and prove that they hold.
The main method we use for this is mathematical induction.
This activity was co-authored by Ying-Ju Chen.}
\theorem{\bf Mathematical induction\label{MItheorem}}\\
{For each integer $n=1, 2, 3, \ldots$, let $P(n)$ denote a true/false logical statement involving $n$.
\begin{itemize}
\item[(i)] (The basis step) Prove that $P(1)$ is true.
\item[(ii)] (The inductive step) For each $n = 1, 2, 3, \ldots$, suppose that $P(n)$ is true, and use $P(n)$ to prove that $P(n+1)$ is true.
\end{itemize}
From the above two steps, we can conclude that $P(n)$ is true for all $n = 1, 2, 3, \ldots$.}
\note{Proving the inductive step is usually done as a ``rewrite'' proof, where you start with the left hand side of what you want to show and rewrite until you come to the desired right hand side.
Often, some quantity in the statement $P(n+1)$ can be written in terms of a similar quantity in the statement $P(n)$ plus a new part.
You will always use the fact that $P(n)$ is true.}
\question{With induction proofs, $P(n)$ is always a true/false logical statement.
A student working on an induction problem wrote $P(n+1) = P(n) + \frac{1}{n^2}$.
How can you tell that this must be wrong?}
{0.2in}
\guidedproof{\label{inductionguidedproof}
Use mathematical induction to show that $3^n$ is odd for all $n = 1, 2, 3, \ldots$.
\balist{0.0in}
\item State $P(n)$: $P(n)$ is that ``\blank{2in}''
\item Basis step: $P(1)$ is that ``\blank{1.5in}.'' This is true because \blank{1.5in}.
\item State $P(n+1)$: $P(n+1)$ is that ``\blank{2in}''
\item Inductive step: Let $n \geq 1$. suppose that $P(n)$ is true. Show that $P(n+1)$ is true.
You may use facts you have already proven about odd numbers.
\noindent
Because $P(n)$ is true, \blank{1.5in}.
Now $3^{n+1}=$ \blank{1in}, which is odd because \blank{4.5in}.
Thus $P(n+1)$ is true.
Since $n \geq 1$ was arbitrary, by mathematical induction, $P(n)$ is true for all $n \geq 1$.
\elist
}
\exercise{Fill in the table using your powers of pattern recognition.
\vspace*{0.1in}
\label{examplesum}
\centerline{
\begin{tabular}[c]{c|c|c|c|c|c|c|c|c|c|c}
$k$ & 1 & 2 & 3 & 4 & 5 & 6 & 7 & $\cdots$ & $n$ & $n+1$ \\
\hline
$k$th odd integer & 1 & 3 & 5 & 7 & & & & $\cdots$ & & \\
\hline
sum of first $k$ odd integers & ~1~ & ~4~ & \hspace{0.2in} & \hspace{0.2in} & \hspace{0.2in} & \hspace{0.2in} & \hspace{0.2in} & $\cdots$ & \hspace{0.5in} & \hspace{0.5in} \\
\end{tabular}}
\vspace*{0.1in}
\noindent
Column $n$ of the table contains a conjecture about the sum of the first $n$ odd integers.
In the next problem, you will use mathematical induction to prove it.
}{0.0in}
\pagebreak
\guidedproof{\label{oddsum}
Prove the conjecture in \ref{examplesum} using mathematical induction.
\balist{0.05in}
\item State $P(n)$: $P(n)$ is that ``the sum of the first $n$ odd integers equals \blank{1in}''
\item Basis step: $P(1)$ is that the sum of the 1st odd integer is $1^2.$
This is true because the sum is 1 and because $1^2 = 1$.
\item Write out $P(n+1)$: $P(n+1)$ is that ``the sum of the first \blank{3in}''
\item Inductive step: Let $n \geq 1$. suppose that $P(n)$ is true, and use that to show that $P(n+1)$ is true.
\begin{eqnarray*}
\lefteqn{\mbox{the sum of the first $n+1$ odd integers}} \\
&=& \mbox{the sum of the first $n$ odd integers plus \blank{1in}} \\
&=& \blank{1.5in} + \blank{1.5in} \mbox{since $P(n)$ is true} \\
&=& \blank{1.5in} \mbox{by algebra}
\end{eqnarray*}
Thus $P(n+1)$ is true.
Since \blank{1in} was arbitrary, by \blank{2in} we conclude that the sum of the first $n$ odd integers equals \blank{1in} for all $n = 1, 2, 3, \ldots$.
\elist
}
\notation{Summation notation for $a_1+a_2+a_3+\cdots+a_n$ is $\displaystyle \sum_{k=1}^{n}a_k$.
For example, $\displaystyle \sum_{k=1}^{n} k = 1 + 2 + \cdots + n$.}
\example{Use summation notation and the formula for the $n$th odd integer in \ref{examplesum} to rewrite $P(n)$ in \ref{oddsum}:
$P(n)$ is that \blank{1.5in} = \blank{0.5in}}{0in}
\exercise{Fill in the blanks to practice splitting off the last term of a sum.
{\bf a.} $\displaystyle \sum_{k=1}^{n+1} k^2 = \left( \sum_{k=1}^{n} k^2 \right) + \blank{1in}$
\qqqq
{\bf b.} $\displaystyle \sum_{k=1}^{n+1} \frac{1}{k^3} = \left( \sum_{k=1}^{n} \frac{1}{k^3} \right) + \blank{1in}$
}{-0.1in}
\show{Show that $\sum_{k=1}^n 4k-3 = n(2n-1)$ for all $n = 1, 2, 3, \ldots$.
\balist{0.0in}
\item State $P(n)$: $P(n)$ is that
\item Basis step: $P(1)$ is that \hfill This is true because: \blank{1.5in}
\item State $P(n+1)$: $P(n+1)$ is that
\vspace*{0.2in}
\noindent
Suggestion: Use algebra to simplify the right hand side.
\item Inductive step: Let $n \geq 1$. suppose that $P(n)$ is true, and use that to show that $P(n+1)$ is true.
\vspace*{-0.2in}
\begin{eqnarray*}
\sum_{k=1}^{n+1} 4k-3 &=& \sum_{k=1}^{n} \blank{1.5in} + \blank{1.5in} \\
&=& \blank{1.5in} + \blank{1.5in} \qq \mbox{since $P(n)$ is true} \\
&=& \\
&=&
\end{eqnarray*}
Thus, \blank{1.5in}. Since ...
\elist
}{0.0in}
\stop{Compare your proofs with the other people in your group before you move on.}
\show{Use mathematical induction to show that $\sum_{k=1}^n 5^k = \frac{5}{4} (5^n-1)$ for all integers $n = 1, 2, 3, \ldots $.
\balist{0.1in}
\item State $P(n)$:
\item Basis step:
\item State $P(n+1)$:
\vspace*{0.2in}
\noindent
Suggestion: Multiply out the right hand side.
\item Inductive step: Let $n \geq 1$. suppose that $P(n)$ is true, and use that to show that $P(n+1)$ is true.
\elist
}{1.1in}
\note{The basis step need not use $n=1$, for example, it can use $n=-3, n= 0,$ or $n = 100$.}
\show{Use mathematical induction to show that $2n+1 < 2^n$ for all integers $n$ with $n \geq 4$.
\balist{0.10in}
\item State $P(n)$:
\item Basis step: $P(4)$ is that: \hfill Check: \blank{1.5in}
\item State $P(n+1)$:
\item Inductive step: Let $n \geq 4$. suppose that $P(n)$ is true, and use that to show that $P(n+1)$ is true.
\begin{eqnarray*}
2(n+1) + 1 = \blank{1.5in} &=& \blank{1.5in} \\
&<& \blank{1.5in} \qq \mbox{since $P(n)$ is true}\\
&<& 2^n + 2^n \qq \mbox{since \blank{1in}}\\
&=& 2^{n+1}.
\end{eqnarray*}
Thus, \blank{1.5in}. Since ...
\elist
}{0in}
\show{Use mathematical induction to show that $5^n > 2^n + 3^n$ for all integers $n$ with $n \geq 2$. Use the same format as above.
\balist{0.1in}
\item
\item
\item
\item
\elist
}{0.0in}
% ====================================================
\pagebreak
\show{Use induction to prove Bernoulli's inequality: For all $x\in \R$, if $1+x >0$, then $(1+x)^n \geq 1+nx$ for all $n = 0, 1, 2, \ldots$. Use the same format as above.
\noindent
Let $x$ be such that $1+x > 0$.
\vspace*{1.5in}
\noindent
Where did you use the assumption that $1+x > 0$?
}{0in}
\show{Use induction to prove that $\frac{1}{1\cdot 2} + \frac{1}{2\cdot 3} + \frac{1}{3\cdot 4} + \cdots+\frac{1}{n\cdot (n+1)} = \frac{n}{n+1}$ for all positive integers $n$. \label{sumeq}
Start by writing $P(n)$ using summation notation.
}{1.5in}
\note{It is possible to show that the statement in \ref{sumeq} is true without using mathematical induction, but using an algebraic technique. How?}
\show{For each $n\in \Z^+$, let $P(n)$ denote the statement ``$n^2+5n+1$ is an even integer.''
\balist{0.05in}
\item State $P(n+1)$
\item Suppose that $P(n)$ is true, and use that to prove that $P(n+1)$ is true.
\vspace*{0.5in}
\item For which $n$ is $P(n)$ actually true?
\item What is moral of this exercise?
\elist
}{0in}
\show{Use induction to prove that $n^3-n$ is a multiple of 6 for all integers $n = 0, 1, 2, \ldots$.
Do the induction step as a ``rewrite'' proof.}{1.5in}
\show{Use induction to prove that $11^n-4^n$ is a multiple of 7 for all $n = 0, 1, 2, \ldots$.
Do the induction step as a ``rewrite'' proof.
\Hint Use the equation $11^n-4^n = 7k$ once.}{1.3in}
\example{Write the following numbers as multiples of 5 plus a remainder from 0 to 4.
37 = 5 $\cdot$ \blank{0.5in} + \blank{0.5in}
38 = 5 $\cdot$ \blank{0.5in} + \blank{0.5in}
39 = 5 $\cdot$ \blank{0.5in} + \blank{0.5in}
40 = 5 $\cdot$ \blank{0.5in} + \blank{0.5in}
41 = 5 $\cdot$ \blank{0.5in} + \blank{0.5in}
}{-0.2in}
\prove{Let $k > 0$ be an integer.
For each integer $n$, let $P(n)$ be the statement: ``There exist integers $q$ and $r$ with $0 \leq r < k$ such that $n = kq + r$.''
Use mathematical induction to show that $P(n)$ is true for all integers $n$.
\balist{0.4in}
\item Show that $P(0)$ is true.
\item Let $n$ be an integer.
Suppose that $P(n)$ is true, so that $n = kq+r$ for some integers $q$ and $r$, with $0 \leq r < k$.
Show that there exist integers $q'$ and $r'$ with $0 \leq r' < k$ so that $n+1 = kq' + r'$, and thus conclude that $P(n+1)$ is true.
Note that you will define $q'$ and $r'$ in terms of $q$ and $r$.
It is helpful to do this with two cases, depending on the value of $r$:
\noindent
Case 1. Suppose $0 \leq r < k-1$.
\vspace*{0.5in}
\noindent
Case 2. Suppose $r = k-1$.
\item Suppose that $P(n)$ is true and show that $P(n-1)$ is true.
It is helpful to do this with two cases.
\elist
\vspace*{1in}
\noindent
Use steps b and c and the idea of mathematical induction to conclude the proof that $P(n)$ is true for all $n$.
}{0in}
% ================================================================
\pagebreak
\show{
Use mathematical induction to prove that $\displaystyle \sum_{k=1}^{n} k = \frac{1}{2}n(n+1)$ for all integers $n = 1, 2, 3, \ldots$.
}{1.1in}
\show{
Use mathematical induction to prove that $\displaystyle \sum_{k=1}^{n} k^2 = \frac{1}{6}n(n+1)(2n+1)$ for all integers $n = 1, 2, 3, \ldots$.
}{1.1in}
\show{Let $r$ be a real number not equal to 1.
Use induction to prove that $\displaystyle \sum_{k=0}^{n} r^k = \frac{1-r^{n+1}}{1-r}$ for all integers $n = 0, 1, 2, \ldots$.
Note where you use the assumption on $r$.
}{1.1in}
\show{Use mathematical induction to show that $n! > 3^n$ for all $n = 7, 8, 9, \ldots$.}{1.4in}
\show{For $n = 2, 3, \ldots,$ let $P(n)$ be the statement ``$n$ is prime or $n$ can be written as the product of prime factors less than $n$.
Supposing that $P(2), P(3), \ldots, P(n)$ are true, show that $P(n+1)$ is true, and thus conclude that $P(n)$ is true for all $n = 2, 3, \ldots$.
This is called {\em strong induction}.
}{1.1in}
\show{Prove that $1^2-2^2+3^2-4^2+5^2+\cdots-(2n)^2+(2n+1)^2 = (n+1)(2n+1)$ for all $n = 0, 1, 2, \ldots$.
Start by writing $P(n)$ using summation notation, starting from $k=0$.}{0in}
\vfill % pad the rest of the page with white space