For the following recursive functions, Prove that am,n = m · n. Here am,n is defined recursively for (m, n) ∈ N × N.
am.n = { 0 if m=0
n+am-1,n if m!=0
Let the sequence Tn be defined by T1 = T2 = T3 = 1 and Tn = Tn-1 + Tn-2 + Tn-3 for n ≥ 4. Use induction to prove that Tn < 2n for n ≥ 4
There is a long line of eager children outside of your house for trick-or-treating, and with good reason! Word has gotten around that you will give out 3k pieces of candy to the kth trick-or-treater to arrive. Children love you, dentists despise you.
(a) Expressed in summation notation (using a Σ), what is cn, the total amount of candy that you should buy to accommodate n children total?
(b) Use induction to prove that the total amount of candy that you need is given by the closed-form solution: cn = (3n+1 - 3) / 2
Let fn be the nth Fibonacci number. Prove that, for n > 0 [Hint: use strong induction]:
fn = 1/√5 [((1+√5)/2)n - ((1-√5)/2)n ]
Using mathematical induction, prove that for every positive integer n,
1 · 2 + 2 · 3 + · · · + n(n + 1) = (n(n + 1)(n + 2)) / 3