Travis M.

asked • 04/09/18

How 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.

Travis M.

Here is a full example:

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
Report

04/09/18

1 Expert Answer

By:

Mark M. answered • 04/09/18

Tutor
5.0 (278)

Mathematics Teacher - NCLB Highly Qualified

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.