A population consists of the numbers 4,7,10,11 and 13
1.enumerate all possible samples of size 2 without replacement
With no replacement, the possible samples of size 2 are:
4,7,10,11 and 13
Sample space
{4,7}
(4,10}
{4,11}
{4,13}
{7,10}
{7,11}
{7,13}
{10,11}
{10,13}
{11,13}
Comments
Leave a comment