Travis M.
asked 04/09/18How to calculate for bank fee subtracting from total
I play a game where to withdraw funds from a bank, it takes a 1% fee. I'm trying to create a formula to account for that fee. The formula I created doesn't work because it takes 1% of the new total which is sometimes less than what I the amount I want to withdraw. Since it's only 1% it wouldn't normally mean much, but often amounts are in the hundreds of millions.
a = entered amount
x = my adjusted amount
y = systems further adjusted amount
z = final amount
x = a + (a * .01)
y = x + (x * .01)
z = y - (y * .01)
I need z and a to have the same value.
a = entered amount
x = my adjusted amount
y = systems further adjusted amount
z = final amount
x = a + (a * .01)
y = x + (x * .01)
z = y - (y * .01)
I need z and a to have the same value.
More
1 Expert Answer

Mark M. answered 04/09/18
Tutor
5.0
(278)
Mathematics Teacher - NCLB Highly Qualified
As I understand your rather complex examples, you want to withdraw EXACTLY 500,000,000 and that INCLUDES the 1% fee.
Therefore
500,000,000 = a + 0.01a
500,000,000 = 1.01a
495,049,505 = a
So to determine the amount you want to draw (to include the 1%) divide by 1.01
E.g., to withdraw EXACTLY 100, you request 99.00990099 (100 / 1.01)
Still looking for help? Get the right answer, fast.
Ask a question for free
Get a free answer to a quick problem.
Most questions answered within 4 hours.
OR
Find an Online Tutor Now
Choose an expert and meet online. No packages or subscriptions, pay only for the time you need.
Travis M.
I want to withdraw exactly 500,000,000. I add 1% which is 5,000,000 to attempt to account for the system taking 1% from my requested amount. My new total is now 505,000,000. The system then takes an additional 1% from that amount which is 5,050,000. Subtracting the 5.05 million from the 505 million gets me 499,950,000 which is 50 thousand less than what I needed.
What change can I make to the equation that will net me the 500 million, as well as any other amount, every time?
a = 500,000,000
500,000,000 + (500,000,000 * .01) = 505,000,000
x = 505,000,000
505,000,000 + (505,000,000 * .01) = 505,050,000
y = 505,050,000
505,050,000 - (505,050,000 * .01) = 499,950,000
z = 499,950,000
04/09/18