Gambling compound interest running balance

infradigensemble

New Member
Joined
Jan 29, 2021
Messages
2
Platform
  1. MacOS
I'm not sure how to write this formula in excel. Thanks for taking a look.

Here it is algebraically: C*(A/B) - (A/B) + A = "new" A

With numbers: 1.0125*(.5/2)-(.5/2)+.5=.503

Then I want to insert the "new" A (or .503) into the formula and run the calculation 3000 times so that I can see the answer for each calculation.

For the sports bettors out there the "1.0125" represent -8000 moneyline multiplier. ".5" is a 50 cent sportbook balance which is then divided by two b/c I am wagering half of my sportsbook balance with each wager, or .25. Then the proceeds from a won -8000 moneyline is added to the .5 and the new balance is .503.

So, the hypothetical is if I start with $0.50 and wager half by sportsbook balance on -8000 moneyline. My sportsbook balance is now at $0.503 of which I wager half on a -8000 moneyline...so on and so forth 3000 times.

Thanks for taking a look and let me know any questions!
 

Excel Facts

Excel Joke
Why can't spreadsheets drive cars? They crash too often!
Here is one approach...just select B11:C11 and drag down for the preferred number of trials.
MrExcel20210129.xlsx
ABC
1C-8000 moneyline multiplier1.0125
2A50 cent sportsbook balance0.5
3fraction sportsbook balance wagered0.5
4Breciprocal of sportsbook bal wagered2
5
6C*(A/B) - A/B + A = new A
710.5
820.503125
930.50627
1040.509434
1150.512618
infradigensemble
Cell Formulas
RangeFormula
C4C4=1/C3
C7C7=C2
C8:C11C8=$C$1*C7/$C$4-(C7/$C$4)+C7
 
Upvote 0
Solution
As an alternative, you could rearrange your expression (where new A is now called A') to show that A'/A = (C+B-1)/B...which means that each subsequent trial yields a constant ratio. This means that you don't necessarily need to show each trial result since A' = A * ((C+B-1)/B)^(n-1), where n is the number of trials. This is implemented in C5:C7 and is sufficient to return the value of A' for any given number of trials n. Just change the input number of trials (blue cell) to generate the output A (A' in the green cell).

MrExcel20210129.xlsx
ABC
1C-8000 moneyline multiplier1.0125
2A50 cent sportsbook balance0.5
3fraction sportsbook balance wagered0.5
4Breciprocal of sportsbook bal wagered2
5n3000
6(C+B-1)/B1.00625
7A'65154473
8
9C*(A/B) - A/B + A = new A
1010.5
1120.503125
1230.5062695
1340.5094337
1450.5126177
infradigensemble
Cell Formulas
RangeFormula
C4C4=1/C3
C6C6=($C$1+$C$4-1)/$C$4
C7C7=$C$2*C6^(C5-1)
C10C10=$C$2
C11:C14C11=$C$1*C10/$C$4-(C10/$C$4)+C10
 
Upvote 0
I should have asked earlier...did you want the very first value of A to be considered trial 0 or trial 1? I ask because the formula in C7 assumes that the first value of A (0.5) is trial 1 and the "-1" in the exponent (C5-1) ensures the correct number of compounding periods. If instead you prefer to consider that at time 0...or trial 0, the A value is 0.5 and at the end of trial number 1, the value would increase to 0.503, then simply change the exponent from (C5-1) to C5 in the formula shown.
 
Upvote 0

Forum statistics

Threads
1,214,938
Messages
6,122,346
Members
449,080
Latest member
Armadillos

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top