Problem statement :
+++++++++++++++
Given two identical unbiased dice, determine the probability of getting sum as 7.
Event = Sum of dots on the top face of both dice is 7.
$E = {(1,6),\ (2,5),\ (3,4),\ (4,3),\ (3,4),\ (5,2),\ (6,1)}$
$|Sample Space|$ = $36$.
Hence, $P(E) = 1/6$
I have a doubt here. As the two dice are given identical, why do we have to consider ordered pairs?
Shouldn't it be unordered consisting of only 3 possible pairs $\{(1,6),\ (2,5),\ (3,4)\} $?
Hence, $|S| = 21$ and $P(E) = 3/21$.