If we have an ordinary deck of 52 cards, how many possible 7 card poker hands are there that contain exactly one "2" and 1 "King"?
Originally, I was thinking of it as $$ \frac{\binom{52}{4}*\binom{48}{4}}{\binom{52}{7}}$$. However, I'm not sure that it takes into account all necessary combinations. So now I'm thinking that maybe it is just 52*48*(44*43*42*41*40). Does that seem correct?
Thank you in advance for any help that anyone can provide!
Ways. The number of possible hands with exactly one Deuce and exactly one King is $${4\choose 1}^2 {44 \choose 5},$$ as in the numerator of @Henry's first fraction. Evaluated in R as:
Exact probability. Then the probability of getting that outcome is $$\frac{{4\choose 1}^2 {44 \choose 5}}{{52\choose y}} = 0.1298814,$$ as in his Comment. Evaluated in R as follows:
Simulated probability. This probability can be simulated with reasonable accuracy by looking at results from 10 million 7-card hands. For simplicity in coding I have simulated Aces (1) and Deuces (20), instead of Deuces and Kings. [Code numbers assigned to denominations are arbitrary as long as there is no ambiguity in the desired total (here 21).]
With ten million iterations, the probability should be accurate to within $\pm 0.0002$ in 95% of such simulations.