Given:
f(1) = 2
f(n) = f(n-1) + 3, for all n>1
It can be evaluated to:
f(1)=2
f(2)=f(2-1) + 3 = f(1) + 3 = 5
f(3)=f(3-1) + 3 = f(2) + 3 = 8
...
Or simply,
f(n) = 3y-1 for all n>1
may be used to calculate f(n) directly.
For all n>1, f(n) follows +3 for every +n.
Next, the problem is to prove that my formula is correct through induction.
Below are my attempts.
Attempt#1
Prove:
3n – 1 for all n>1
Base Case:
n = 1, the sum is 2 and 3n-1 = 3(1)-1 = 2
Inductive Step:
Assume true for n=k: 3k-1
Show true for n=k+1:
3(k+1)-1
3k+3-1
3k+2
Conclusion:
by induction, the statement holds true for all n>1.
Not entirely sure if I am correct.
Attempt#2
Also tried using summation.
$\sum_{i=1}^n 2+3+3+3...+3 = 3n-1$
...
which didn't really work well for me.
Could you clear it up for me? Perhaps I am lost in the concept and/or overthinking this. One time I thought I got it, next thing I know I lost it when it comes to such different approach. In my attempts, I am also lost to the different situations whether I can/should use summation for it (being that this is not much of a sequence problem, rather just 2,3,3,3,3.., I wouldn't need to?)
Problems in Your Post
Let me first discuss the problems in your post.
You wrote (I am $\LaTeX$'ing the text),
Now, as it stands the statement doesn't make sense. What is it exactly that you want to prove? More specifically, what is(are) your premise(s)?
Since you don't clearly state what exactly is that you want to prove, there is no sense in proving the Base Case and the Inductive Step. But still, assuming that you have now correctly stated what you want to prove, let me point out the problem in the statement that you wrote for the Base Case and the Inductive Step.
In the Base Case you wrote,
Obviously the question is, what do you mean by "the sum is..."? Which sum are you referring to?
In the Inductive Step you wrote,
What exactly do we assume to be true for $n=k$?
Your elaboration of second attempt is more confusing. Why exactly do you want to use induction here is not clear to me. Look below for what I guess you have attempted to do.
What (I think) Your Proofs Could be
Attempt 1
Attempt 2
Let $u_n=f(n+1)-f(n)$.
Though this doesn't directly yield your desired formula, you can obtain it simply by observing that $u_n=3$ for all $n\ge 1$.