
David W. answered 06/06/18
Tutor
4.7
(90)
Experienced Prof
The "initial payment" occurs in month=0 [so, let m=month]
Now, in a positional numbering system (like decimal or binary), the value of each place going left is multiplied by the number base.
That is, a decimal number is:
a*105 + b*104 + c*103 + d*102 + e*101 + f*100 [note: 100 = 1, so exponent is m]
A binary number is:
a*25 + b*24 + c*23 + d*22 + e*21 + f*20
If the payment is doubled each time, the payments will each be: 500*2m
After 5 months, the total is:
500*25 + 500*24 + 500*23 + 500*22 + 500*21 + 500*20
= 500*(25 +24 + 23 + 21 + 20)
= 500*(26 - 1) [note that this is 2m+1 - 1]