You can put this solution on YOUR website! given a regular 52 card deck, what is the probability of getting a 5 card hand with a least 2 aces?
-----
# of ways to succeed::
4C2*48C3 + 4C3*48C2 + 4C4*48C1
= 103776+4512+48
= 108336
-----
# of random 5 card hands = 52C5 = 2598960
----
Ans: 0.0417
==================
Cheers,
Stan H.