Answer:
The recursive function gives the total number of pictures Angela will have painted at any day in the future is:
- PP(t) = t +
The number of pictures will she have painted if she paints for another 5 days after the initial week is:
Explanation:
To obtain the recursive function, you must take into account the next:
1. Angela paints 4 pictures in 7 days, by this, you can say Angela paints 4/7 of a picture by day.
2. Angela paints additional 1 picture by day, with this, the number of pictures painted additionally is equal to the time t (because 1 day = 1 picture, 2 days = 2 pictures and so on). With the data taken into account, we can elaborate the next function:
- PP(t) = t +
Where:
For example, if you need to know how many pictures she painted in the first week, you can calculate replacing t by 7:
- PP(t) = t +
- PP(7) = 7 +
- PP(7) = 7 + 4
- PP(7) = 11
If she paints for another 5 days (I mean 12 days taking into account the initial week), we can calculate:
- PP(t) = t +
- PP(12) = 12 +
- PP(12) = 12 +
- PP(12) =
- PP(12) = 18.86
To the day 12, Angela will paint 18.86 pictures.