I need a formula to calculate something like this
if I have 5000 dollars and loose 5% of it per DAY. How many days is it going to take to have 10 dollars left in my pockets.
I need a formula to calculate something like this
if I have 5000 dollars and loose 5% of it per DAY. How many days is it going to take to have 10 dollars left in my pockets.
In general - starting out with $\$X$, if you lose $x\%$ everyday, then after $1$ day, you'll have $(100-x)\%$. So, after $n$ days, if you have $Y$ dollars, then you'll have to solve: $$Y=\left(1-\dfrac{x}{100}\right)^nX$$ In this case, you have $n\approx121.158$ days.