In how many ways can 52 cards be divided equally among four players(1,2,3,4) in order.
I interpreted this question as
Let there be 52 different cards(1.e each numbered with unique number from 1 to 52,like c1,c2,c3,c4....,c52).
In how many ways can cards be divided equally among four players(1,2,3,4) in order(i.e Player 1 gets card(c1,c5,c9....),Player 2 gets(c2,c6,c10...),Player 3 gets(c3,c7,c11....),Player 4 gets(c4,c8,c12....))
In my textbook it's answer is given as
For the first player we have C(52,13) choices,for the second player we have C(39,13) choices, for the third player we have C(26,13) choices and for the last player we have C(13,13) choices . Hence the total number of ways
= C(52,13)C(39,13) C(26,13)* C(13,13)
But,
According to me each player gets unique set of cards.Therefore,all will have C(13,13) ways. Hence total number of ways
=C(13,13)*C(13,13)*C(13,13)*C(13,13) =1
Where am I wrong?