Math Problem Statement
Find f(1), f(2), f(3), and, f(4) if f(n) is defined recursively by f(0) = 1 and for n = 0, 1, 2, . . .
1
ICS 141: Discrete Mathematics I (Fall 2014)
a) f(n + 1) = f(n) + 2
f(1) = f(0 + 1) = f(0) + 2 = 1 + 2 = 3
f(2) = f(1 + 1) = f(1) + 2 = 3 + 2 = 5
f(3) = f(2 + 1) = f(2) + 2 = 5 + 2 = 7
f(4) = f(3 + 1) = f(3) + 2 = 7 + 2 = 9
b) f(n + 1) = 3f(n)
f(1) = f(0 + 1) = 3f(0) = 3(1) = 3
f(2) = f(1 + 1) = 3f(1) = 3(3) = 9
f(3) = f(2 + 1) = 3f(2) = 3(9) = 27
f(4) = f(3 + 1) = 3f(3) = 3(27) = 81
Solution
Ask a new question for Free
By Image
Drop file here or Click Here to upload
Math Problem Analysis
Mathematical Concepts
Recursion
Sequences
Functions
Formulas
f(n + 1) = f(n) + 2
f(n + 1) = 3f(n)
Theorems
Recursive sequence definition
Suitable Grade Level
Grades 9-11
Related Recommendation
Find f(n) for Recursive Function: Arithmetic and Geometric Progressions
Recursive Function f(n) = f(n-1) - 3, Find f(5)
Recursive Function f(n) = f(n-1) + 1 Explained with Formula
Solving Recurrence Relations: Find f(4) Given f(1)=3 and f(n+1)=f(n)^2+1
Recursive Function Problem: Finding f(4) from f(1) = 3 and f(n) = f(n-1) - 3