Popular pages:

Roulette System

The Roulette Systems That Really Work

Roulette Computers

Hidden Electronics That Predict Spins

Roulette Strategy

Why Roulette Betting Strategies Lose

Roulette System

The Honest Live Online Roulette Casinos

TEST RESULTS: Gizmotron's theory

Started by Kon-Fu-Sed, September 01, 2008, 02:02:21 PM

0 Members and 1 Guest are viewing this topic.

Kon-Fu-Sed

Hi all,

I got this from my computing friend.

Regards
KFS

-----------------------

Here are the results of testings of Gizmotrons theory that waiting at least 30 spins without a zero or double-zero hit, would lower the LOSS % from -5.263157894736842, betting LOW.

The test was performed in 25 batches of 1,000,000 sessions and each session was maximum 330 spins.
A session was broken if the result (hits - misses) was +10 or -10, otherwise it goes to the end.


The program I used:

The array stats(0,m) is purely for totals statistics for 1,000,000 sessions as seen at the top of each results table.
The array stats(1,m) is for recording 0 or POSITIVE session results (0 to +10).
The array stats(2,m) is for recording NEGATIVE session results (-1 to -10).


The following is done for EVERY SESSION:

    ' The RNG is seeded

    ' These variables are initialized:
    cntno0 = 0 ' Counter for No Zeros
    flgbet = 0 ' Flag is set if we shall bet = No zeros for 30 or more spins
    hits = 0   ' Hit-counter add hits and subtract misses


    ' The workings
    ' ============

    FOR spins = 1 TO 330' The start of the loop. Max 330 spins in a session - as instructed by Gizmotron

        stats(0,0) + = 1 ' Record 1 used spin (Total for all sessions)
        flgbet = 0       ' Reset the betting-flag. Prevents us from betting before 30 non-zero results


        ' Shall we bet?

        IF cntno0 > 29 THEN  ' If the No-Zero counter > 29 we shall bet - this IF clause is TRUE
           flgbet = 1        ' Set the betting-flag
           stats(0,2) + = 1  ' We record the bet (Total for all sessions)
        ENDIF


        ' Get the next number

        num = RND(38)    ' Get the next number 0 - 37 (37 = "00") The "(38)" means "38 numbers starting at 0"
        stats(0,1) + = 1 ' Record 1 number (Total for all sessions)


        ' Did we bet and did we hit?

        IF flgbet = 1 THEN              ' If the bet-flag was set (=1) we made a bet

           IF num > 0 AND num < 19 THEN ' A number > 0 AND < 19 is LOW so we hit this spin...
              hits + = 1                ' ...so we INCREASE the hit-counter
              stats(0,3) + = 1          ' and we record the hit for total-statistics

              IF hits > 9 THEN EXIT     ' +10 limit encountered = Exit this session (the loop) immediately

           ELSE                         ' 0 or HIGH or 37 (=00) has hit...
              hits - = 1                ' ...so we DECREASE the hit-counter

              IF hits < -9 THEN EXIT    ' -10 limit encountered = Exit this session (the loop) immediately

           ENDIF
        ENDIF


        ' Check for 0 and 37 (The No-Zero counter)

        IF num > 0 AND num < 37 THEN ' This was NOT a 0 or 37 (=00) so...
           cntno0 + = 1              ' ...we increase the No-Zero counter

        ELSE                         ' 0 or 37 (=00) hit this spin so...
           cntno0 = 0                ' ...we reset the No-Zero counter so we wait for at least 30 new results

        ENDIF

    NEXT ' End of session 330 spins loop


    ' Now we record the result of this session

    IF hits > -1 THEN            ' Positive or 0 result
       stats(1,hits) + = 1       ' Record - Add 1 to the positive hits-Result (0 to +10)

    ELSE                         ' Negative result
       stats(2, ABS(hits)) + = 1 ' Record - Add 1 to the ABSolute value of negative hits-Result (-1 to -10)
    ENDIF

... and the next session begins...

==========================================

RESULTS:


Test #1

All sessions:  1000000
All spins in loops:  280901684
All drawn numbers:   280901684
All bet spins:       46501769
All hits:            22029446

Exit points:
Result     Times     Res Tot   GrndTotal
----------------------------------------
-10      258613    -2586130    -2586130
  -9       17567     -158103    -2744233
  -8       26274     -210192    -2954425
  -7       34479     -241353    -3195778
  -6       41316     -247896    -3443674
  -5       46961     -234805    -3678479
  -4       51614     -206456    -3884935
  -3       54327     -162981    -4047916
  -2       55992     -111984    -4159900
  -1       55718      -55718    -4215618
  +0       53888           0    -4215618
  +1       43980       43980    -4171638
  +2       37721       75442    -4096196
  +3       31163       93489    -4002707
  +4       25446      101784    -3900923
  +5       19525       97625    -3803298
  +6       13966       83796    -3719502
  +7        9143       64001    -3655501
  +8        4855       38840    -3616661
  +9         736        6624    -3610037
+10      116716     1167160    -2442877


-2442877u of 46501769 = -5.25329907341805% (Math: -5.263157894736842%)

18.05.18
18.13.33

------------------------------------------

Test #2

All sessions:  1000000
All spins in loops:  280758671
All drawn numbers:   280758671
All bet spins:       46510523
All hits:            22035615

Exit points:
Result     Times     Res Tot   GrndTotal
----------------------------------------
-10      258904    -2589040    -2589040
  -9       17654     -158886    -2747926
  -8       26339     -210712    -2958638
  -7       33910     -237370    -3196008
  -6       41163     -246978    -3442986
  -5       46729     -233645    -3676631
  -4       51669     -206676    -3883307
  -3       54677     -164031    -4047338
  -2       56559     -113118    -4160456
  -1       55423      -55423    -4215879
  +0       53368           0    -4215879
  +1       44002       44002    -4171877
  +2       37651       75302    -4096575
  +3       31172       93516    -4003059
  +4       25448      101792    -3901267
  +5       19414       97070    -3804197
  +6       14113       84678    -3719519
  +7        9231       64617    -3654902
  +8        4715       37720    -3617182
  +9         701        6309    -3610873
+10      117158     1171580    -2439293


-2439293u of 46510523 = -5.24460453820311% (Math: -5.263157894736842%) *** LOWEST so far

18.13.33
18.21.47

------------------------------------------

Test #3

All sessions:  1000000
All spins in loops:  280833961
All drawn numbers:   280833961
All bet spins:       46545388
All hits:            22047738

Exit points:
Result     Times     Res Tot   GrndTotal
----------------------------------------
-10      259102    -2591020    -2591020
  -9       17781     -160029    -2751049
  -8       26192     -209536    -2960585
  -7       33939     -237573    -3198158
  -6       41200     -247200    -3445358
  -5       47105     -235525    -3680883
  -4       51684     -206736    -3887619
  -3       54781     -164343    -4051962
  -2       56102     -112204    -4164166
  -1       55448      -55448    -4219614
  +0       54219           0    -4219614
  +1       43869       43869    -4175745
  +2       37411       74822    -4100923
  +3       31122       93366    -4007557
  +4       25185      100740    -3906817
  +5       19420       97100    -3809717
  +6       14109       84654    -3725063
  +7        9250       64750    -3660313
  +8        4835       38680    -3621633
  +9         739        6651    -3614982
+10      116507     1165070    -2449912


-2449912u of 46545388 = -5.26349033764634% (Math: -5.263157894736842%) *** HIGHEST so far

18.21.47
18.30.01

------------------------------------------

Test #4

All sessions:  1000000
All spins in loops:  280657270
All drawn numbers:   280657270
All bet spins:       46496702
All hits:            22025677

Exit points:
Result     Times     Res Tot   GrndTotal
----------------------------------------
-10      258810    -2588100    -2588100
  -9       17619     -158571    -2746671
  -8       26395     -211160    -2957831
  -7       34135     -238945    -3196776
  -6       40787     -244722    -3441498
  -5       47176     -235880    -3677378
  -4       51807     -207228    -3884606
  -3       54692     -164076    -4048682
  -2       56010     -112020    -4160702
  -1       55545      -55545    -4216247
  +0       54384           0    -4216247
  +1       43917       43917    -4172330
  +2       37413       74826    -4097504
  +3       31261       93783    -4003721
  +4       25320      101280    -3902441
  +5       19486       97430    -3805011
  +6       13892       83352    -3721659
  +7        9055       63385    -3658274
  +8        4653       37224    -3621050
  +9         728        6552    -3614498
+10      116915     1169150    -2445348


-2445348u of 46496702 = -5.25918590957268% (Math: -5.263157894736842%)

18.30.01
18.39.00

------------------------------------------

Test #5

All sessions:  1000000
All spins in loops:  280808590
All drawn numbers:   280808590
All bet spins:       46562403
All hits:            22059662

Exit points:
Result     Times     Res Tot   GrndTotal
----------------------------------------
-10      259198    -2591980    -2591980
  -9       17530     -157770    -2749750
  -8       26202     -209616    -2959366
  -7       34223     -239561    -3198927
  -6       40891     -245346    -3444273
  -5       46868     -234340    -3678613
  -4       51580     -206320    -3884933
  -3       54829     -164487    -4049420
  -2       56012     -112024    -4161444
  -1       55656      -55656    -4217100
  +0       53925           0    -4217100
  +1       43623       43623    -4173477
  +2       37684       75368    -4098109
  +3       31421       94263    -4003846
  +4       25342      101368    -3902478
  +5       19164       95820    -3806658
  +6       14149       84894    -3721764
  +7        9314       65198    -3656566
  +8        4821       38568    -3617998
  +9         761        6849    -3611149
+10      116807     1168070    -2443079


-2443079u of 46562403 = -5.24689200426361% (Math: -5.263157894736842%)

18.39.00
18.48.16

------------------------------------------

Test #6

All sessions:  1000000
All spins in loops:  280837830
All drawn numbers:   280837830
All bet spins:       46539557
All hits:            22040175

Exit points:
Result     Times     Res Tot   GrndTotal
----------------------------------------
-10      259645    -2596450    -2596450
  -9       17727     -159543    -2755993
  -8       26308     -210464    -2966457
  -7       34259     -239813    -3206270
  -6       41027     -246162    -3452432
  -5       46723     -233615    -3686047
  -4       51901     -207604    -3893651
  -3       54999     -164997    -4058648
  -2       56100     -112200    -4170848
  -1       55089      -55089    -4225937
  +0       53968           0    -4225937
  +1       44040       44040    -4181897
  +2       37324       74648    -4107249
  +3       31150       93450    -4013799
  +4       25086      100344    -3913455
  +5       19648       98240    -3815215
  +6       14068       84408    -3730807
  +7        9129       63903    -3666904
  +8        4820       38560    -3628344
  +9         753        6777    -3621567
+10      116236     1162360    -2459207


-2459207u of 46539557 = -5.28412206416146% (Math: -5.263157894736842%) *** HIGHEST so far

18.48.16
18.57.31

------------------------------------------

Test #7

All sessions:  1000000
All spins in loops:  280817272
All drawn numbers:   280817272
All bet spins:       46560318
All hits:            22051247

Exit points:
Result     Times     Res Tot   GrndTotal
----------------------------------------
-10      259347    -2593470    -2593470
  -9       17780     -160020    -2753490
  -8       26362     -210896    -2964386
  -7       34165     -239155    -3203541
  -6       41068     -246408    -3449949
  -5       47342     -236710    -3686659
  -4       51591     -206364    -3893023
  -3       54693     -164079    -4057102
  -2       56468     -112936    -4170038
  -1       55631      -55631    -4225669
  +0       53579           0    -4225669
  +1       43618       43618    -4182051
  +2       37472       74944    -4107107
  +3       31201       93603    -4013504
  +4       25168      100672    -3912832
  +5       19283       96415    -3816417
  +6       14008       84048    -3732369
  +7        9185       64295    -3668074
  +8        4721       37768    -3630306
  +9         698        6282    -3624024
+10      116620     1166200    -2457824


-2457824u of 46560318 = -5.2787955614908% (Math: -5.263157894736842%)

18.57.31
19.06.46

------------------------------------------

Test #8

All sessions:  1000000
All spins in loops:  280712739
All drawn numbers:   280712739
All bet spins:       46515576
All hits:            22027260

Exit points:
Result     Times     Res Tot   GrndTotal
----------------------------------------
-10      260100    -2601000    -2601000
  -9       17589     -158301    -2759301
  -8       26167     -209336    -2968637
  -7       34232     -239624    -3208261
  -6       41270     -247620    -3455881
  -5       46856     -234280    -3690161
  -4       51388     -205552    -3895713
  -3       54785     -164355    -4060068
  -2       56137     -112274    -4172342
  -1       55392      -55392    -4227734
  +0       53876           0    -4227734
  +1       43720       43720    -4184014
  +2       37205       74410    -4109604
  +3       31493       94479    -4015125
  +4       25442      101768    -3913357
  +5       19454       97270    -3816087
  +6       14006       84036    -3732051
  +7        9231       64617    -3667434
  +8        4724       37792    -3629642
  +9         744        6696    -3622946
+10      116189     1161890    -2461056


-2461056u of 46515576 = -5.29082129392529% (Math: -5.263157894736842%) *** HIGHEST so far

19.06.46
19.16.01

------------------------------------------

Test #9

All sessions:  1000000
All spins in loops:  280907044
All drawn numbers:   280907044
All bet spins:       46523752
All hits:            22044053

Exit points:
Result     Times     Res Tot   GrndTotal
----------------------------------------
-10      258057    -2580570    -2580570
  -9       17704     -159336    -2739906
  -8       26342     -210736    -2950642
  -7       33791     -236537    -3187179
  -6       41369     -248214    -3435393
  -5       46948     -234740    -3670133
  -4       51385     -205540    -3875673
  -3       55162     -165486    -4041159
  -2       56396     -112792    -4153951
  -1       55674      -55674    -4209625
  +0       53978           0    -4209625
  +1       43788       43788    -4165837
  +2       37662       75324    -4090513
  +3       31189       93567    -3996946
  +4       25408      101632    -3895314
  +5       19489       97445    -3797869
  +6       14055       84330    -3713539
  +7        9292       65044    -3648495
  +8        4764       38112    -3610383
  +9         733        6597    -3603786
+10      116814     1168140    -2435646


-2435646u of 46523752 = -5.23527423153661% (Math: -5.263157894736842%) *** LOWEST so far

19.16.01
19.25.16

------------------------------------------

Test #10

All sessions:  1000000
All spins in loops:  280734774
All drawn numbers:   280734774
All bet spins:       46527616
All hits:            22036923

Exit points:
Result     Times     Res Tot   GrndTotal
----------------------------------------
-10      259608    -2596080    -2596080
  -9       17503     -157527    -2753607
  -8       26145     -209160    -2962767
  -7       34347     -240429    -3203196
  -6       40925     -245550    -3448746
  -5       46674     -233370    -3682116
  -4       51914     -207656    -3889772
  -3       55145     -165435    -4055207
  -2       56552     -113104    -4168311
  -1       55426      -55426    -4223737
  +0       53636           0    -4223737
  +1       43700       43700    -4180037
  +2       37279       74558    -4105479
  +3       31155       93465    -4012014
  +4       25210      100840    -3911174
  +5       19402       97010    -3814164
  +6       13855       83130    -3731034
  +7        9244       64708    -3666326
  +8        4756       38048    -3628278
  +9         732        6588    -3621690
+10      116792     1167920    -2453770


-2453770u of 46527616 = -5.27379266541402% (Math: -5.263157894736842%)

19.25.16
19.34.30


Kon-Fu-Sed


Test #11

All sessions:  1000000
All spins in loops:  280748707
All drawn numbers:   280748707
All bet spins:       46540603
All hits:            22046111

Exit points:
Result     Times     Res Tot   GrndTotal
----------------------------------------
-10      259447    -2594470    -2594470
  -9       17634     -158706    -2753176
  -8       26187     -209496    -2962672
  -7       34045     -238315    -3200987
  -6       41020     -246120    -3447107
  -5       47032     -235160    -3682267
  -4       51551     -206204    -3888471
  -3       54752     -164256    -4052727
  -2       56013     -112026    -4164753
  -1       55219      -55219    -4219972
  +0       54133           0    -4219972
  +1       44038       44038    -4175934
  +2       37516       75032    -4100902
  +3       31135       93405    -4007497
  +4       25313      101252    -3906245
  +5       19441       97205    -3809040
  +6       14172       85032    -3724008
  +7        9154       64078    -3659930
  +8        4845       38760    -3621170
  +9         741        6669    -3614501
+10      116612     1166120    -2448381


-2448381u of 46540603 = -5.26074189455603% (Math: -5.263157894736842%)

19.34.30
19.43.46

------------------------------------------

Test #12

All sessions:  1000000
All spins in loops:  280722353
All drawn numbers:   280722353
All bet spins:       46529289
All hits:            22042928

Exit points:
Result     Times     Res Tot   GrndTotal
----------------------------------------
-10      258843    -2588430    -2588430
  -9       17811     -160299    -2748729
  -8       26375     -211000    -2959729
  -7       34350     -240450    -3200179
  -6       41103     -246618    -3446797
  -5       47015     -235075    -3681872
  -4       51295     -205180    -3887052
  -3       54652     -163956    -4051008
  -2       56053     -112106    -4163114
  -1       55475      -55475    -4218589
  +0       53768           0    -4218589
  +1       43708       43708    -4174881
  +2       37743       75486    -4099395
  +3       31316       93948    -4005447
  +4       25351      101404    -3904043
  +5       19211       96055    -3807988
  +6       14090       84540    -3723448
  +7        9371       65597    -3657851
  +8        4765       38120    -3619731
  +9         752        6768    -3612963
+10      116953     1169530    -2443433


-2443433u of 46529289 = -5.25138692748991% (Math: -5.263157894736842%)

19.43.46
19.53.02

------------------------------------------

Test #13

ll sessions:  1000000
All spins in loops:  280768817
All drawn numbers:   280768817
All bet spins:       46533932
All hits:            22039437

Exit points:
Result     Times     Res Tot   GrndTotal
----------------------------------------
-10      259706    -2597060    -2597060
  -9       17685     -159165    -2756225
  -8       26501     -212008    -2968233
  -7       33667     -235669    -3203902
  -6       41386     -248316    -3452218
  -5       46686     -233430    -3685648
  -4       51590     -206360    -3892008
  -3       55015     -165045    -4057053
  -2       56118     -112236    -4169289
  -1       55360      -55360    -4224649
  +0       53994           0    -4224649
  +1       43744       43744    -4180905
  +2       37387       74774    -4106131
  +3       31328       93984    -4012147
  +4       24963       99852    -3912295
  +5       19515       97575    -3814720
  +6       14004       84024    -3730696
  +7        9136       63952    -3666744
  +8        4849       38792    -3627952
  +9         766        6894    -3621058
+10      116600     1166000    -2455058


-2455058u of 46533932 = -5.27584473196892% (Math: -5.263157894736842%)

19.53.02
20.02.18

------------------------------------------

Test #14

All sessions:  1000000
All spins in loops:  280842899
All drawn numbers:   280842899
All bet spins:       46543097
All hits:            22053179

Exit points:
Result     Times     Res Tot   GrndTotal
----------------------------------------
-10      258678    -2586780    -2586780
  -9       17564     -158076    -2744856
  -8       26435     -211480    -2956336
  -7       33925     -237475    -3193811
  -6       40938     -245628    -3439439
  -5       46854     -234270    -3673709
  -4       51761     -207044    -3880753
  -3       54796     -164388    -4045141
  -2       56460     -112920    -4158061
  -1       55230      -55230    -4213291
  +0       53777           0    -4213291
  +1       43850       43850    -4169441
  +2       37603       75206    -4094235
  +3       31211       93633    -4000602
  +4       25356      101424    -3899178
  +5       19558       97790    -3801388
  +6       14213       85278    -3716110
  +7        9360       65520    -3650590
  +8        4861       38888    -3611702
  +9         737        6633    -3605069
+10      116833     1168330    -2436739


-2436739u of 46543097 = -5.23544662272904% (Math: -5.263157894736842%)

20.02.18
20.11.32

------------------------------------------

Test #15

All sessions:  1000000
All spins in loops:  280852196
All drawn numbers:   280852196
All bet spins:       46544424
All hits:            22042831

Exit points:
Result     Times     Res Tot   GrndTotal
----------------------------------------
-10      259479    -2594790    -2594790
  -9       17567     -158103    -2752893
  -8       25808     -206464    -2959357
  -7       34359     -240513    -3199870
  -6       41237     -247422    -3447292
  -5       47260     -236300    -3683592
  -4       51983     -207932    -3891524
  -3       54868     -164604    -4056128
  -2       56168     -112336    -4168464
  -1       55690      -55690    -4224154
  +0       53783           0    -4224154
  +1       44060       44060    -4180094
  +2       37521       75042    -4105052
  +3       31023       93069    -4011983
  +4       24630       98520    -3913463
  +5       19332       96660    -3816803
  +6       14135       84810    -3731993
  +7        9203       64421    -3667572
  +8        4689       37512    -3630060
  +9         752        6768    -3623292
+10      116453     1164530    -2458762


-2458762u of 46544424 = -5.2826134447383% (Math: -5.263157894736842%)

20.11.32
20.20.50

------------------------------------------

Test #16

All sessions:  1000000
All spins in loops:  280876272
All drawn numbers:   280876272
All bet spins:       46507338
All hits:            22028797

Exit points:
Result     Times     Res Tot   GrndTotal
----------------------------------------
-10      258562    -2585620    -2585620
  -9       17534     -157806    -2743426
  -8       26716     -213728    -2957154
  -7       34423     -240961    -3198115
  -6       41028     -246168    -3444283
  -5       46735     -233675    -3677958
  -4       51572     -206288    -3884246
  -3       54949     -164847    -4049093
  -2       56226     -112452    -4161545
  -1       55867      -55867    -4217412
  +0       53996           0    -4217412
  +1       44012       44012    -4173400
  +2       37365       74730    -4098670
  +3       31121       93363    -4005307
  +4       25361      101444    -3903863
  +5       19404       97020    -3806843
  +6       14015       84090    -3722753
  +7        9330       65310    -3657443
  +8        4710       37680    -3619763
  +9         721        6489    -3613274
+10      116353     1163530    -2449744


-2449744u of 46507338 = -5.26743543137214% (Math: -5.263157894736842%)

20.20.50
20.30.11

------------------------------------------

Test #17

All sessions:  1000000
All spins in loops:  280739573
All drawn numbers:   280739573
All bet spins:       46551738
All hits:            22057389

Exit points:
Result     Times     Res Tot   GrndTotal
----------------------------------------
-10      258797    -2587970    -2587970
  -9       17470     -157230    -2745200
  -8       26139     -209112    -2954312
  -7       33811     -236677    -3190989
  -6       41098     -246588    -3437577
  -5       46959     -234795    -3672372
  -4       51591     -206364    -3878736
  -3       55097     -165291    -4044027
  -2       56336     -112672    -4156699
  -1       55746      -55746    -4212445
  +0       53609           0    -4212445
  +1       43859       43859    -4168586
  +2       37578       75156    -4093430
  +3       31078       93234    -4000196
  +4       25400      101600    -3898596
  +5       19533       97665    -3800931
  +6       14205       85230    -3715701
  +7        9329       65303    -3650398
  +8        4757       38056    -3612342
  +9         698        6282    -3606060
+10      116910     1169100    -2436960


-2436960u of 46551738 = -5.23494955225947% (Math: -5.263157894736842%) *** LOWEST so far

20.30.11
20.40.01

------------------------------------------

Test #18

All sessions:  1000000
All spins in loops:  280787867
All drawn numbers:   280787867
All bet spins:       46485392
All hits:            22017100

Exit points:
Result     Times     Res Tot   GrndTotal
----------------------------------------
-10      259471    -2594710    -2594710
  -9       17403     -156627    -2751337
  -8       26189     -209512    -2960849
  -7       33835     -236845    -3197694
  -6       41264     -247584    -3445278
  -5       47025     -235125    -3680403
  -4       51650     -206600    -3887003
  -3       54912     -164736    -4051739
  -2       56361     -112722    -4164461
  -1       55501      -55501    -4219962
  +0       53742           0    -4219962
  +1       43986       43986    -4175976
  +2       37651       75302    -4100674
  +3       31010       93030    -4007644
  +4       25359      101436    -3906208
  +5       19424       97120    -3809088
  +6       14113       84678    -3724410
  +7        9184       64288    -3660122
  +8        4766       38128    -3621994
  +9         738        6642    -3615352
+10      116416     1164160    -2451192


-2451192u of 46485392 = -5.27303717262404% (Math: -5.263157894736842%)

20.40.01
20.49.50

------------------------------------------

Test #19

All sessions:  1000000
All spins in loops:  280673231
All drawn numbers:   280673231
All bet spins:       46488229
All hits:            22024685

Exit points:
Result     Times     Res Tot   GrndTotal
----------------------------------------
-10      258776    -2587760    -2587760
  -9       17650     -158850    -2746610
  -8       26316     -210528    -2957138
  -7       33871     -237097    -3194235
  -6       41349     -248094    -3442329
  -5       47131     -235655    -3677984
  -4       51323     -205292    -3883276
  -3       54651     -163953    -4047229
  -2       56271     -112542    -4159771
  -1       55273      -55273    -4215044
  +0       53907           0    -4215044
  +1       44208       44208    -4170836
  +2       37362       74724    -4096112
  +3       31178       93534    -4002578
  +4       25326      101304    -3901274
  +5       19492       97460    -3803814
  +6       14015       84090    -3719724
  +7        9324       65268    -3654456
  +8        4733       37864    -3616592
  +9         707        6363    -3610229
+10      117137     1171370    -2438859


-2438859u of 46488229 = -5.24618608293295% (Math: -5.263157894736842%)

20.49.50
20.59.40

------------------------------------------

Test #20

All sessions:  1000000
All spins in loops:  280817395
All drawn numbers:   280817395
All bet spins:       46496243
All hits:            22024012

Exit points:
Result     Times     Res Tot   GrndTotal
----------------------------------------
-10      259183    -2591830    -2591830
  -9       17580     -158220    -2750050
  -8       25904     -207232    -2957282
  -7       34097     -238679    -3195961
  -6       41084     -246504    -3442465
  -5       47106     -235530    -3677995
  -4       52249     -208996    -3886991
  -3       54818     -164454    -4051445
  -2       56015     -112030    -4163475
  -1       55640      -55640    -4219115
  +0       53728           0    -4219115
  +1       44074       44074    -4175041
  +2       37433       74866    -4100175
  +3       31138       93414    -4006761
  +4       24974       99896    -3906865
  +5       19346       96730    -3810135
  +6       14065       84390    -3725745
  +7        9247       64729    -3661016
  +8        4830       38640    -3622376
  +9         733        6597    -3615779
+10      116756     1167560    -2448219


-2448219u of 46496243 = -5.26541251945883% (Math: -5.263157894736842%)

20.59.40
21.09.34

------------------------------------------

Test #21

All sessions:  1000000
All spins in loops:  280841950
All drawn numbers:   280841950
All bet spins:       46500063
All hits:            22031961

Exit points:
Result     Times     Res Tot   GrndTotal
----------------------------------------
-10      258551    -2585510    -2585510
  -9       17600     -158400    -2743910
  -8       26016     -208128    -2952038
  -7       33999     -237993    -3190031
  -6       40888     -245328    -3435359
  -5       47264     -236320    -3671679
  -4       51647     -206588    -3878267
  -3       54648     -163944    -4042211
  -2       56442     -112884    -4155095
  -1       55711      -55711    -4210806
  +0       53822           0    -4210806
  +1       43999       43999    -4166807
  +2       37600       75200    -4091607
  +3       31131       93393    -3998214
  +4       25313      101252    -3896962
  +5       19644       98220    -3798742
  +6       14152       84912    -3713830
  +7        9205       64435    -3649395
  +8        4859       38872    -3610523
  +9         708        6372    -3604151
+10      116801     1168010    -2436141


-2436141u of 46500063 = -5.23900580521794% (Math: -5.263157894736842%)

21.09.34
21.19.29

------------------------------------------

Test #22

All sessions:  1000000
All spins in loops:  280717958
All drawn numbers:   280717958
All bet spins:       46552083
All hits:            22055710

Exit points:
Result     Times     Res Tot   GrndTotal
----------------------------------------
-10      259068    -2590680    -2590680
  -9       17568     -158112    -2748792
  -8       26477     -211816    -2960608
  -7       33904     -237328    -3197936
  -6       40914     -245484    -3443420
  -5       47079     -235395    -3678815
  -4       51540     -206160    -3884975
  -3       55001     -165003    -4049978
  -2       55836     -111672    -4161650
  -1       55235      -55235    -4216885
  +0       53512           0    -4216885
  +1       43860       43860    -4173025
  +2       38040       76080    -4096945
  +3       31364       94092    -4002853
  +4       25434      101736    -3901117
  +5       19263       96315    -3804802
  +6       14173       85038    -3719764
  +7        9354       65478    -3654286
  +8        4706       37648    -3616638
  +9         745        6705    -3609933
+10      116927     1169270    -2440663


-2440663u of 46552083 = -5.24286528703775% (Math: -5.263157894736842%)

21.19.29
21.29.23

------------------------------------------

Test #23

All sessions:  1000000
All spins in loops:  280633368
All drawn numbers:   280633368
All bet spins:       46507725
All hits:            22025016

Exit points:
Result     Times     Res Tot   GrndTotal
----------------------------------------
-10      259728    -2597280    -2597280
  -9       17717     -159453    -2756733
  -8       25948     -207584    -2964317
  -7       34078     -238546    -3202863
  -6       41211     -247266    -3450129
  -5       47021     -235105    -3685234
  -4       51527     -206108    -3891342
  -3       54530     -163590    -4054932
  -2       56814     -113628    -4168560
  -1       55476      -55476    -4224036
  +0       53851           0    -4224036
  +1       44325       44325    -4179711
  +2       37405       74810    -4104901
  +3       30968       92904    -4011997
  +4       25079      100316    -3911681
  +5       19015       95075    -3816606
  +6       14114       84684    -3731922
  +7        9171       64197    -3667725
  +8        4726       37808    -3629917
  +9         736        6624    -3623293
+10      116560     1165600    -2457693


-2457693u of 46507725 = -5.28448338421198% (Math: -5.263157894736842%)

21.29.23
21.39.10

------------------------------------------

Test #24

All sessions:  1000000
All spins in loops:  280777374
All drawn numbers:   280777374
All bet spins:       46545899
All hits:            22056658

Exit points:
Result     Times     Res Tot   GrndTotal
----------------------------------------
-10      258272    -2582720    -2582720
  -9       17772     -159948    -2742668
  -8       26415     -211320    -2953988
  -7       33846     -236922    -3190910
  -6       40622     -243732    -3434642
  -5       47320     -236600    -3671242
  -4       51818     -207272    -3878514
  -3       54917     -164751    -4043265
  -2       56397     -112794    -4156059
  -1       55399      -55399    -4211458
  +0       53674           0    -4211458
  +1       43663       43663    -4167795
  +2       37566       75132    -4092663
  +3       31326       93978    -3998685
  +4       25429      101716    -3896969
  +5       19420       97100    -3799869
  +6       13971       83826    -3716043
  +7        9310       65170    -3650873
  +8        4804       38432    -3612441
  +9         732        6588    -3605853
+10      117327     1173270    -2432583


-2432583u of 46545899 = -5.22620263495179% (Math: -5.263157894736842%) *** LOWEST so far

21.39.10
21.48.59

------------------------------------------

Test #25

All sessions:  1000000
All spins in loops:  280737001
All drawn numbers:   280737001
All bet spins:       46541241
All hits:            22044885

Exit points:
Result     Times     Res Tot   GrndTotal
----------------------------------------
-10      259325    -2593250    -2593250
  -9       17600     -158400    -2751650
  -8       26301     -210408    -2962058
  -7       33681     -235767    -3197825
  -6       41063     -246378    -3444203
  -5       46846     -234230    -3678433
  -4       51857     -207428    -3885861
  -3       55275     -165825    -4051686
  -2       56307     -112614    -4164300
  -1       55201      -55201    -4219501
  +0       53874           0    -4219501
  +1       44123       44123    -4175378
  +2       37790       75580    -4099798
  +3       31212       93636    -4006162
  +4       25040      100160    -3906002
  +5       19358       96790    -3809212
  +6       13955       83730    -3725482
  +7        9173       64211    -3661271
  +8        4850       38800    -3622471
  +9         690        6210    -3616261
+10      116479     1164790    -2451471


-2451471u of 46541241 = -5.26730905177195% (Math: -5.263157894736842%)

21.48.59
21.58.49

gizmotron

Kon-Fu-Sed, thank you for all that effort that you put into this.

I don't know why I didn't think of this before. If any of us testing this thing were to also take the exact same spins and bet them without the waiting at the same time then the difference between each test should show a difference. Without waiting rules the results should come way closer to the statistical average. All I ever did was to confirm the average of the RNG independently. It should be tested at the same time the sim runs the conditional selection process too. Then you would see a result with a difference for each test. With any luck the conditional test should always be lower than the non conditional test.

gizmotron

-