Note: These solutions only contain the second half of each recursive definition to save me a bit of formatting trouble.  Remember that your solutions need to include the top row as well (what is f(x) when x=1) as well as the next 3 terms in the pattern!

 

1. f(x)= f(x-1) - 3

2. f(x)= f(x-1) *2

3. f(x)= f(x-1) + (x+1)

4. f(x)= f(x-1) +3

5. f(x)= f(x-1) / 10

6. f(x)= f(x-1) /2

7. f(x)= f(x-1) *-2

8. f(x)= f(x-1) *x

9. f(x)=       0                if x is odd

            f(x-1) / (x-1)     if x is even

10. draw out the solution

11. draw out the solution

12. f(x)= f(x-1) +1

13. f(x)= f(x-1) -2

14. f(x)= f(x-1) / 2

15. f(x)= f(x-1) -5

16. f(x)= f(x-1) / 4

17. f(x)= f(x-1) / 2