All about flooble | fun stuff | Get a free chatterbox | Free JavaScript | Avatars    
perplexus dot info

Home > Probability
Three of a Kind (Posted on 2003-11-19) Difficulty: 4 of 5
You have a standard pack of 52 playing cards. You then shuffle them and begin to draw out cards until you have three of a kind. What is the most likely number of cards drawn when this happens?

You then shuffle another pack of 52 playing cards into the pile. What happens to the expected number of cards now? (i.e. does it double / halve / stay the same?)

No Solution Yet Submitted by Lewis    
Rating: 4.4000 (10 votes)

Comments: ( Back to comment list | You must be logged in to post comments.)
Hints/Tips simulation | Comment 2 of 39 |
The program:
DIM card(52)
DIM denCt(13)
DIM howMany(27)

RANDOMIZE TIMER

FOR i = 1 TO 52
  card(i) = i
NEXT

FOR trial = 1 TO 1000000
  FOR i = 1 TO 13
    denCt(i) = 0
  NEXT
  FOR i = 1 TO 52
    s = INT(52 * RND(1) + 1)
    IF i <> s THEN SWAP card(i), card(s)
  NEXT
  FOR i = 1 TO 27
    den = INT((card(i) - 1) / 4) + 1
    denCt(den) = denCt(den) + 1
    IF denCt(den) > 2 THEN EXIT FOR
  NEXT
  howMany(i) = howMany(i) + 1
NEXT
FOR i = 1 TO 27: PRINT USING "## ######"; i; howMany(i): NEXT

produces during a specific run
1 0
2 0
3 2386
4 7009
5 13553
6 21802
7 32049
8 43066
9 54850
10 65895
11 75718
12 84492
13 88909
14 90652
15 87690
16 81244
17 71369
18 58910
19 44953
20 32297
21 21086
22 12229
23 6194
24 2532
25 867
26 216
27 32

Clearly 14 is the modal number of cards dealt, which is presumably what the puzzle is calling for.
(at numbers like 90,000 the uncertainty of the true mean is give or take about 300 or so).

  Posted by Charlie on 2003-11-19 16:25:47
Please log in:
Login:
Password:
Remember me:
Sign up! | Forgot password


Search:
Search body:
Forums (0)
Newest Problems
Random Problem
FAQ | About This Site
Site Statistics
New Comments (10)
Unsolved Problems
Top Rated Problems
This month's top
Most Commented On

Chatterbox:
Copyright © 2002 - 2024 by Animus Pactum Consulting. All rights reserved. Privacy Information