The probability is a ratio of two things. First, you need to compute the number of all possible ways. In this problem, how many ways are there to get a sum of "8." There are 5 ways: 2+6, 3+5, 4+4, 5+3, and 6+2. Second, you need to know how many ways to achieve the goal -- to get a "5" in one of the two draws. Apparently, there are 2 different ways: 3+5 and 5+3. So the answer is 2/5. |