In one of the Hey Arnold show one character calculates amount of money that needs to be returned after a loan this way:
"A ten dollar loan over two weeks at 8% a day. That's $18.47"
I wonder how he get this number? Complex percent is calculated like this: 10 * (1 + 0.08)^14 which gives approx 29.37
Even if we assume, that weekends are not taken into consideration (calculating over 10 days, not 14), that would be 21.59
If percent is simple, that would be 10 + 10 * 0.08 * 14 = 21.2 or 10 + 10 * 0.08 * 10 = 18
But where the number 18.47 comes from?