Three ordinary dice are thrown and the points obtained are added up. What is the probability of obtaining 10 points?
I tried to build by extension, the set of favorable results:
{
(1,6,3);(1,3,6);(3,1,6);
(2,5,3);(2,3,5);(3,2,5);
(3,4,3);(3,3,4);(3,3,4);
(4,3,3);(4,3,3);(3,4,3);
(5,2,3);(5,3,2);(3,5,2);
(6,1,3);(6,3,1);(3,6,1)
}
They are 18, except the 2 repeated.
Is there a way to do the calculation for these types of exercises, without having to count one by one?