1

enter image description here

Use induction to find positive $c, d \in \mathbb R$ such that $f(n) = c4^{n} - d2^{n}, \forall n \in \mathbb N$

My attempt!

Base Case:

Let $(n = 0)$

$f(n) = 5$ [Def of f] and $c4^n - d2^n = c - d$

Therefore we need $5 = c - d$ (*)

Inductive step: Suppose $f(n) = c4^n - d2^n$ [I.H]

Trying to show: $f(n+1) = c4^{n+1} - d2^{n+1}$

$f(n+1) = 4f(n) + 3 \cdot 2^{n}$ [def of f; $n>0$]

$= c4^{n+1} - 4d2^n + 3 \cdot 2^n$ [I.H]

$= c4^{n+1} - 2^{n+1} (2d - \frac{3}{2})$ [Algebra]

Confused at this part. How do I find the c, d, and satisfy $(*)$?

Tinler
  • 1,061

1 Answers1

0

Here is a roadmap:

  1. Find $c,d$ by computing $f(0)$ and $f(1)$.

  2. Prove by induction that $f(n) = c4^{n} - d2^{n}$ satisfies the recurrence.

lhf
  • 216,483
  • Why f(1)? f(1) = 23. So 23 = 4c - 2d. – Tinler Oct 17 '17 at 21:28
  • @Tinler, there is nothing special about $f(1)$, except that is likely to lead to smaller numbers. You just need another equation for $c,d$. – lhf Oct 17 '17 at 21:29