Let's consider two events: the first one - sum of the dices is odd, the second one - sum is less than 5.
In order to get odd sum, the possible combinations can be {1,3,5} (1st die) + {2,4,6} (2nd die) or {2,4,6} (1st die) + {1,3,5} (2nd die). The total number of combinations with odd sum is . There are possible outcomes of throwing 2 dices. So,
To get sum less than 5, we can have pairs (1, 1), (1,2),(2,1), (3,1), (1,3), (2,2). Only 6 combinations satisfy given condition. So,
And finally,
The last term here is for all events where the sum is odd and less than five (there are only 2 of them - (1,2) and (2,1)). We need to subtract it because otherwise we double-count these events.
Answer:
Comments