View Single Post
  #3  
Old 10-12-2007, 05:47 PM
RobNottsUk RobNottsUk is offline
Senior Member
 
Join Date: May 2006
Posts: 359
Default Re: Basic Omaha 8 Probability Calculations

I like it, here's a suggested enhancement for non Excel users, or ppl who like pencil & paper

[ QUOTE ]
Q1 - What is this notation I keep seeing that looks like this:
c(4,2)

A1 - This is the number of combinations in which four cards could go into two spaces. For example, if you are dealt two of the four aces, you could have (Ah Ac), (Ah Ad), (Ah As), (Ac Ad), (Ac As), (Ad As) for six possibile combinations.


[/ QUOTE ]
The formula for combinations of n cards in r spaces is :

c(n,r) = n! / ((n-r)! x r!)

[ QUOTE ]

Q3 - How can I figure out C(45,4)

A3 - If you have microsoft excel, type in '=Combin(45,4)' and you will get the answer.


[/ QUOTE ]
From formula given in A1

c(45,4) = 45! / (45-4)! * 4! = 45! / 41! * 4! = 45*44*43*42 / 24
Reply With Quote