I am confused over calculating the number of ways in which I can select a pair out of a deck of 52 cards. This is how I go about solving the problem:
Following the definition of a pair in card games, its like 2 cards having the same ranks for instance two 6's or two Aces etc. Hence I can select a first card out of the 52 cards in $C(52,1) = 52$ ways and now that I have selected this card, I only have 3 other cards to select my 2nd card which will be of a different suit but of the same rank so $C(3,1)$ ways to select this card, hence the total number of ways is $52*3 = 156$, but according to this link - Link looking at solution (4) I am not able to get why is this such a huge number. Can someone explain it succinctly where am I going wrong?
The correct way to proceed is the following: there are $C(52,2)$ possible pairs of cards that can be taken out from the deck. The number of pairs in which the two cards have the same rank is $C(4,2)\times 13$. So the probability of taking two cards from the deck and getting a pair of cards with the same rank is $(C(4,2)\times 13)/C(52,2)$.