Respuesta :
We start with 80 and we add 1 on the first day, 2 on the 2nd, 4 on the 3rd, etc..
Looking at the numbers being added
1 = 20
2 = 21
4 = 22
8 = 23
16 = 24
.
.
.
We start with 80 and we add 2n to it where n represents the number of days into the iteration
with n starting at 0
The function that shows how many stamps we have on any given day is
D
S = 80 + ∑ 2n Where D is the number of days we are into the iteration
n=0
NOTE: This starts at day 0 which would be S = 80 + 20 = 80 + 1 = 81 stamps
Example: To find how many stamps we have on D = 4 we would have
S = 80+20+21+22+23+24
= 80+1+2+4+ 8+16
= 111 stamps
Answer:
The reverse function is: next = now + 2^(n-1) starting at 80
I got it right on PLATO
Step-by-step explanation: