A bag contains 3 balls labeled 2, 4 and 8. A ball is to be picked, the value on the label is to be recorded and then the ball is to be returned to the bag. This will be done three times and then the values will be added together. What is the sum of all of the possible distinct sums?
The answer I got was sadly wrong...
These are the possiblites:
2,2,2
4,4,4
8,8,8
2,2,4
2,2,8
2,4,2
2,8,2
2,4,4
2,8,8
2,4,8
2,8,4
4,2,2
4,8,8
4,2,8
4,8,2
4,8,4
4,2,4
4,4,2
4,4,8
8,2,2
8,4,4
8,4,2
8,2,4
8,8,2
8,8,4
8,4,8
8,2,8
Just add them all up and you will get 378