A Recursive Partitioned FunctionConsider a function, f(n), defined recursively by parts:
f(n+1) = f(n) + 3 while f(n) f(n+1) = f(n) - 2 while f(n) > 100
f(1) = 50
Find the value of f(500).
Consider a function, f(n), defined recursively by parts:
f(n+1) = f(n) + 3 while f(n) f(n+1) = f(n) - 2 while f(n) > 100
f(1) = 50
Find the value of f(500).
f(n+1) = f(n) + 3 while f(n) f(n+1) = f(n) - 2 while f(n) > 100
f(1) = 50
Find the value of f(500).
View the solution


Blogs on This Site
