the more and more you play get you closer to that house edge
I agree, the odds are not in our favor but i disagree with the bolded part
No, he's right. It's known as
the law of large numbers and it states pretty much exactly the bolded part.
To see the effect happening, you can run a simple script like the following:
#!/usr/bin/env python
import random
heads = 0
total = 0
target = 10
while True:
if random.random() < 0.5:
heads += 1
total += 1
if total == target:
print "%10d %10d %10.7f" % (heads, total, heads * 100.0 / total)
if target < 1e6:
target *= 10
else:
target += 1e6
It simulates the flipping of a coin over and over, and counts how many 'heads' it got, and shows what percentage of the flips were heads.
I just ran it. It started off like this:
3 10 30.0000000
47 100 47.0000000
495 1000 49.5000000
5072 10000 50.7200000
49937 100000 49.9370000
500296 1000000 50.0296000
So after the first 10 flips, only 3 (30%) were heads.
After the first 100, 47 (47%) were heads. So it's already closer to the expected 50%.
After a million flips, 500296 heads were seen. That's 296 more than expected, which sounds like a lot, but as a percentage of the number of spins it's small - 50.0296% were heads - even closer to 50%.
I left it running. Currently it's showing:
217997590 436000000 49.9994472
218498001 437000000 49.9995426
218997425 438000000 49.9994121
219496837 439000000 49.9992795
219997469 440000000 49.9994248
So it's seen 2531 less heads than expected out of 440 million flips, and the total percentage of heads is 49.9994% - that's now incredibly close to 50%.
That's the effect "the bolded part" was talking about. It's real, it does actually happen, but it happens slower than you might think. You have to play a lot of times before you can be reasonably confident of being close to the expected result.
(still running, and flipping either side of 50%)
306500072 613000000 50.0000117
307000013 614000000 50.0000021
307499772 615000000 49.9999629
307999875 616000000 49.9999797
308500345 617000000 50.0000559
309000869 618000000 50.0001406
If everyone went to a casino, played a little bit made 5$ profit and left and never came back again, casinos would probably start loosing money
everyone already know about this, but the fact is everyone wants more because a profit of $5 isnt really much, they wish to get atleast few hundreds buck, therefore , the more they play, they lose their bankroll abit by a bit
If everyone who went to a casino stopped playing when they were $5 up, it wouldn't change anything about the casino's expected profit as a percentage of the amount wagered. It would reduce the amount wagered, and so reduce the expected profits because of that. But it wouldn't turn their positive expectation into a negative one.
584029219 1168000000 50.0025016
584529227 1169000000 50.0025002
585029676 1170000000 50.0025364
585529527 1171000000 50.0025215
586029512 1172000000 50.0025181
Edit: hours later and I realise it's still running. That's why my legs are getting hot!
10275552688 20551000000 50.0002564
10276051812 20552000000 50.0002521
10276551995 20553000000 50.0002530
10277051831 20554000000 50.0002522
10277551548 20555000000 50.0002508