Tricky Cards !

Two cards are drawn at random from a pack of 52 cards. The probability of getting at least a spade and an ace , is

8/221 3 / 34 29/442 1/26

This section requires Javascript.
You are seeing this because something didn't load right. We suggest you, (a) try refreshing the page, (b) enabling javascript if it is disabled on your browser and, finally, (c) loading the non-javascript version of this page . We're sorry about the hassle.

2 solutions

In order to avoid duplication, the combinations we are looking for are

(i) the ace of spades along with any other card, or

(ii) a non-spade ace along with a non-ace spade.

There are 51 51 possible combinations in case (i), and 3 12 = 36 3*12 = 36 possible combinations in case (ii). Since in general there are ( 52 2 ) = 1326 \binom{52}{2} = 1326 possible combinations of two cards, the probability of getting at least a spade and an ace is

51 + 36 1326 = 29 442 \dfrac{51 + 36}{1326} = \boxed{\dfrac{29}{442}} .

Sir, what is wrong with this, { S P A D E 1 ( a c e ) 2 3 4 5 6 7 8 9 10 J Q K { A C E S h e a r t d i a m o n d c l u b s p a d e . \begin{cases}\underline{SPADE}\\1(ace)\\2\\3\\4\\5\\6\\7\\8\\9\\10\\J\\Q\\K\end{cases}\begin{cases}\underline{ACES}\\heart\\diamond\\club\\spade\end{cases}. Now,let us take the 1 1 of spades which is also the ace of spades.Now,we can pair it with the 2 , 3 , 4....10 , J , Q , K 2,3,4....10,J,Q,K of spades and also with the aces(heart,diamond,club).Thus,we have 12 + 3 = 15 12+3=15 pairs.Now,let us take the 2 2 of spades,we can pair it with the ace of hearts,diamonds and club.Similarly for the other cards of spades.Thus,total number of cases = 15 + 12 3 = 51. =15+12*3=51. Total number of ways of choosing two cards = ( 52 2 ) = 51 26. =\dbinom{52}{2}=51*26. Thus,the required probability = 1 26 . =\dfrac{1}{26}.

Adarsh Kumar - 6 years, 6 months ago

Log in to reply

If you have the ace of spades, then you already have an ace and a spade, all in one card. Thus you have satisfied all the conditions, and thus can pair it with any of the remaining 51 51 cards. The second part of your reasoning is correct, so the total number of pairs that satisfy the conditions is 51 + 36 = 87 51 + 36 = 87 , giving a probability of 87 51 26 = 29 442 \frac{87}{51*26} = \frac{29}{442} .

Brian Charlesworth - 6 years, 6 months ago

Log in to reply

wow!that is super amazing! I \text{I} \heartsuit Brian Charlseworth’s brain. \text{ Brian Charlseworth's brain.}

Adarsh Kumar - 6 years, 6 months ago

@brian charlesworth

Adarsh Kumar - 6 years, 6 months ago

Thanks for reviewing it ! Big fan ! :D

Keshav Tiwari - 6 years, 5 months ago
Brock Brown
Dec 27, 2014
 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
from fractions import Fraction as f
cards = set()
for suit in "cdhs":
    for val in "234567890jqka":
        cards.add(suit+val)
top = 0
bottom = 0
for a in cards:
    for b in cards-set((a,)):
        bottom += 1
        if 'a' in a+b and 's' in a+b:
            top += 1
print f(top, bottom)

0 pending reports

×

Problem Loading...

Note Loading...

Set Loading...