| New Reply |
What is the probability of drawing cards from a deck? |
Share Thread | Thread Tools |
| Oct3-12, 03:13 PM | #1 |
|
|
What is the probability of drawing cards from a deck?
It's been some time since I studied probability. So, forgive me if this seems like a very simple question to answer, but after trying to wrap my head around it for two days without any success, I'm confident that once I understand it, the rest will become very clear.
Let me start with what I know: Given a well-shuffled deck, what is the probability that the first hand drawn will be a 21 (an ace and a ten-valued card [T,J,Q,K])? I know that drawing an ace will occur (4/52) and a ten will occur (16/51). Since the ten could have been drawn first, the probability is 2*(4/52)*(16/51) = 0.4827. First question: Technically, should the equation be written as 2! * (4/52) * (16/51) = 0.4827 (note the factorial)? Secondly, is there a generic form that allows me to calculate the probability of drawing cards? For example, drawing three 5s? Three aces and a four? Am I correct for three 5s to write (4/52)*(3/51)*(2/50)*3! and (4/52)*(3/51)*(2/50)*(4/49)*4! for the three aces and a four? I'm trying to write an algorithm to gather probabilities of drawing cards. I was surprised at being able to solve a subset sum problem earlier yet these basic probability problems elude me. :-/ Thank you! |
| Oct3-12, 07:33 PM | #2 |
|
Recognitions:
|
I think you miscounted:
There is a 4/52 chance of an ace in the first draw and a 16/51 of a 10-value on the second. There is a 48/52 chance you didn't draw an ace first time ... in which event, there is a 16/48 chance of a 10-value first and a 4/51 chance of an ace the second time. Spot the difference. afaik: there s no generic form apart from the kind of reasoning you just used. |
| Oct6-12, 03:40 PM | #3 |
|
Recognitions:
|
But there are often many valid ways of approaching these problems. (Simon, I think your way is not valid.) For your more complicated example, (4 C 3)*(4 C 3)*(4 C 1)/(52 C 7). I leave you to check whether that's the same as you got. |
| Oct6-12, 09:38 PM | #4 |
|
Recognitions:
|
What is the probability of drawing cards from a deck?I just constructed the probability tree ... here's the numbers: (4/52)*(16/51)+(16/48)*(48/52)*(4/51) = 0.048265 |
| Oct7-12, 03:12 AM | #5 |
|
Recognitions:
|
|
| Oct7-12, 07:02 AM | #6 |
|
Recognitions:
|
Fair enough. denjay said: 2*(4/52)*(16/51) = 0.4827 with the "2*" in there because "the ten could have been drawn first"... i.e. two different ways of getting the result.
mine was (4/52)(16/51)+(4/51)(16/52) as it happened ... this this is the same calculation but (possibly) arrived at by counting in a different way. I had not computed the number - so missed the factor of ten - I was commenting on the reasoning. It could have been that OP was aware of the difference though and had just missed out a step ;) |
| Oct7-12, 08:32 AM | #7 |
|
|
Assume we have a deck of N cards, with ni of the cards labelled with the integer i, where i=1,2,3,...,a, and Ʃni=N. If we draw r cards at random, what is the probability of getting exactly ri labelled i, for i=1,2,...,a, and Ʃri=r? If we simply count the number of desired possibilites, divided by all possibilities, we arrive at the following fomula involving binomial coefficients: Probability = (n1 r1)(n2 r2)...(na ra)/(N r) |
| New Reply |
| Tags |
| blackjack, probability |
| Thread Tools | |
Similar Threads for: What is the probability of drawing cards from a deck?
|
||||
| Thread | Forum | Replies | ||
| Counting Techniques Question: Drawing 5 specific cards out of a deck | Precalculus Mathematics Homework | 2 | ||
| Probability- drawing cards from a deck. | Set Theory, Logic, Probability, Statistics | 11 | ||
| Probability using a deck o' cards! | Precalculus Mathematics Homework | 1 | ||
| Probability of a deck of cards | Precalculus Mathematics Homework | 11 | ||
| Drawing from a deck of cards | Set Theory, Logic, Probability, Statistics | 2 | ||