Respuesta :
111
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 = 202 = 214 = 228 = 2316 = 24...We start with 80 and we add 2n to it where n represents the number of days into the iterationwith n starting at 0 The function that shows how many stamps we have on any given day is DS = 80 + ∑ 2n Where D is the number of days we are into the iteration n=0NOTE: 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 haveS = 80+20+21+22+23+24 = 80+1+2+4+ 8+16 = 111 stamps
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 = 202 = 214 = 228 = 2316 = 24...We start with 80 and we add 2n to it where n represents the number of days into the iterationwith n starting at 0 The function that shows how many stamps we have on any given day is DS = 80 + ∑ 2n Where D is the number of days we are into the iteration n=0NOTE: 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 haveS = 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: