Proving f(n) = 5 x 3^n - 4 with Mathematical Induction

Join the discussion
Ask a follow-up here, or get your own question answered by working scientists, mathematicians and engineers — people, not an autocomplete.
Real named experts · corrections over time · the nuance an AI answer skips
3 replies · 2K views
BasilBrush
Messages
2
Reaction score
0

Homework Statement


Let f(n + 1) = 3f(n) + 8, with f(1) = 11. Prove by induction that f(n) = 5 x 3^n - 4.

Homework Equations


The Attempt at a Solution


I don't even know where to start! Any help would be appreciated. Thanks. :-)
 
on Phys.org
Well since it gives you the base case, f(1)=1, you can show it's true for the base case n=0.

Now you assume it is true for n=k, that is,
[tex]3f(k)+8=5.3^k-4[/tex]

Now prove it true for n=k+1,

[tex]3f(k+1)+8=5.3^{k+1}-4[/tex]
 
You don't really need induction, the recurrence relation is given by:
[tex] a_{n+1}=3a_{n}+8[/tex]
This suggests you look for a solution of the form:
[tex] a_{n}=\alpha\cdot 3^{n}+\beta[/tex]
For some [tex]\alpha ,\beta[/tex], then it is just a matter of plugging this into the equation to obtain values for [tex]\alpha[/tex] and [tex]\beta[/tex].

Mat
 
Mentallic said:
Well since it gives you the base case, f(1)=1, you can show it's true for the base case n=0.

Now you assume it is true for n=k, that is,
[tex]3f(k)+8=5.3^k-4[/tex]

Now prove it true for n=k+1,

[tex]3f(k+1)+8=5.3^{k+1}-4[/tex]

Nice one, thanks!