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
Arithmetic Progressions
Geometric Progressions
Formulas
f(n+1) = f(n) + 2 (Arithmetic Progression)
f(n+1) = 3f(n) (Geometric Progression)
Theorems
Recursion Formula
Suitable Grade Level
Grades 9-12
Related Recommendation
Calculate Recursive Function f(n) = f(n-1)^2 + n
Recursive Sequence Problem: Finding f(1), f(2), f(3), and f(4) for Two Recursion Rules
Recursive Function f(n) = f(n-1) + 1 Explained with Formula
Recursive Function f(n) = f(n-1) - 3, Find f(5)
Recursive Function Problem: Finding f(4) from f(1) = 3 and f(n) = f(n-1) - 3