Quote:
Originally Posted by RushMXC
So I gather that 5764:1 is a cold deck for sure. The rest I'm having a hard time understanding. Hard to admit I'm having a hard time with the rest given I consider myself a grinder, or did before I was banned with the rest of America from playing online. I don't even know what the C means. Or 48,3 or =~. Why is it =~ instead of just = ... ?
|
C(x,y) is the number of ways to choose y cards out of x cards without regard to the order that they are chosen (combinations). In the first case we are just using it for the total number of flops. C(48,3) is the number of ways to choose 3 cards out of the 48 remaining cards for the flop. In the second case, C(48,5) is the total number of 5 card boards. Then C(44,2) is the number of ways to get the turn and river cards out of the 44 remaining cards that are not an A.
C(48,3) = 48*47*46/(3*2*1)
C(44,5) = 44*43*42*41*40/(5*4*3*2*1)
C(44,2) = 44*43/(2*1)
What the C means.
A mentioned in that post, you can evaluate these directly in Excel or even in google.
C(x,y) is convenient notation on this forum. In texbooks you usually see
xC
y, or
xC
y or C
x,y or

. These are all equivalent.
You can also do the first one just using fractions like this:
3/48 *2/47 * 1/46 * 3 =~ 5764:1
where the 3 fractions are the probabilities of getting an A on the first flop card, times the probability of getting an A on the second flop card, times the probability of getting a T on the third flop card, and then we multiply by 3 since the T can actually occur in any of the 3 positions, not just the third card. It's good to start with fractions, but you'll want to learn combinations pretty quickly if you want to do counting problems. For example, if you try to do the second problem with fractions, you may end up needing combinations anyway because after you multiply by 5 for the number of places the T can occur, you would then have to multiply by C(4,2) places that the 2 aces can occur out of the other 4 cards.
The =~ means approximately equal to since the number is rounded off.