gilbert's reply:
The point I am trying to get is: besides the modified RNG that you
mentioned, is there any other changes/modifications to areas such
as
the average number of occurences each particular winning hand is
supposed to appear.
For example, WinPoker shows stats like (approximate average in 9/6
JoB):
Full House -- Occurs Every 86.86 draws
Flush -- Occurs Every 90.78 draws
Two Pair -- Occurs Every 7.73 draws
Jacks or Better -- Occurs Every 4.66 draws
Can the program be modified so that Full House to occur on average
of
every 90+ draws, Flush to occur every 95+ draws, etc. or will this
type of modification be considered illegal?
It would be illegal.
For the Royal Flush (since it occurs around the average of 40,000
hands, my guess is that there is no modification needed in this
area/routine.
Some people had asked me this topic before but, I do not know the
answer so any info I could get here will be helpful in case the
same
question pops up in the future.
The cycle times of the various hands is a by-product of randomness
combined with strategy. If the VP program is random (as required by
law and the assumption we buy into when talking here) then the same
strategy will generate the same cycle times. Of course, these cycle
times take a whole bunch of hands to start converging on the computed
values.
Also, keep in mind the program that deals cards knows nothing about
the various hand types. It simply displays 5 cards on the deal and
replaces whatever you choose to throw away on the draw. When this is
all done another chunk of code evaluates the results and pays
accordingly.
Dick
···
--- In vpFREE@yahoogroups.com, "gilbert_616" <gilbert_616@...> wrote: