#1 Roulette Forum & Message Board | www.RouletteForum.cc

Roulette-focused => Money management => Topic started by: gianfrancopierino on Aug 31, 12:57 PM 2022

Title: need advice/tool on math calculations
Post by: gianfrancopierino on Aug 31, 12:57 PM 2022
hi.
i'm testing a system involving playing not the same amount of numbers per spins. the tool must calculate allways to have minimum 1 unit win.
example:
1 play 2 numbers e plein
1 play 2 numbers e plein
1 play 2 numbers e plein
1 play 2 numbers e plein
1 play 2 numbers e plein
1 play 2 numbers e plein
1 play 2 numbers e plein           NEW TRIGGER
1 play 4 numbers e plein
1 play 4 numbers e plein
1 play 4 numbers e plein           NEW TRIGGER
1 play 6 numbers e plein

the tools must tell me the amount to palce on every number en plein so that i get minimum 1 unit win when 1 of the numbers appear.
can you help me?
Title: Re: need advice/tool on math calculations
Post by: alexlaf on Aug 31, 02:22 PM 2022
That is a bit difficult bcs let's say y want 1+ units and the payout is 35 so for y at least 1+ should first bet look like 0.03 * 35!
If y have a casino with that kind of bet, or am I wrong?
Title: Re: need advice/tool on math calculations
Post by: alexlaf on Aug 31, 02:33 PM 2022
example for one nr..
Title: Re: need advice/tool on math calculations
Post by: alexlaf on Aug 31, 02:40 PM 2022
A mistake on the true lost tab
Title: Re: need advice/tool on math calculations
Post by: gianfrancopierino on Aug 31, 04:00 PM 2022
for 1 number is simple to find progression, i use loothog.
i will look to find a tool to make automatically the calculation, so i can play real time.
tks for now
Title: Re: need advice/tool on math calculations
Post by: Bigbroben on Sep 01, 12:57 PM 2022
n= numbers played
s= score
g= goal
u= units

u=(g-s)/(36-n)
So, if you're down 21 and want to reach at least 1 point on a hit, while playing 4 nrs:
u=(1-(-21))/(36-4)
u=22/32 or round it up to 1

Excel:
=MAX(1;ROUNDUP((g-s)/(36-n);0))  (last zero means no decimal when rounding)

MAX is for when on a hit, it does not calculate a zero or negative value, rather 1, on the next line.
g,s and n should be cells (ex: B3, or even a fixed cell, such as $D$4, where the goal would be stated) so it will calculate automatically, without manual input.