
Emma M.
asked 02/15/23f(1) = 3 and f(n-1)^2+2 then find the value of f(4)
its a alegbra question
1 Expert Answer

Bradley T. answered 02/15/23
Tutor for Python and High School and Middle School Math
They gave you an iterative function, f(4) is not too much ahead of f(1), so you can choose to continue the sequence,
- f(2) = f(2-1)2+2 = f(1)2+2= 32+2 = 11
- f(3) = f(3-1)2+2 = f(2)2+2= 112+2 = 123
- f(4) = f(4-1)2+2 = f(3)2+2= 1232+2 = 15131
The trick is that even if you only know f(1), the function uses the one previous value, so going one value into the future f(2), making f(1) the previous value, makes it possible to continue the sequence.

Mark M.
What in the problem states that f(n) = (n-1)^2 + 2?02/15/23
Still looking for help? Get the right answer, fast.
Get a free answer to a quick problem.
Most questions answered within 4 hours.
OR
Choose an expert and meet online. No packages or subscriptions, pay only for the time you need.
Mark M.
Review your post for accuracy. f(n-1) is not defined.02/15/23