In the game of basketball, a player can make a basket for 1, 2, or 3 points.
While a probabilistic solution exists to answer this question , it is a simple matter to understand that if a team has a total of 7 points, that total can be made by considering how many baskets of each type were made.
The possible combinations are:
3, 3, 1 -- 3, 2, 2 -- 3, 2, 1, 1 -- 3, 1, 1, 1, 1 -- (4 combinations)
2, 2, 2, 1 -- 2, 2, 1, 1, 1 -- 2, 1, 1, 1, 1, 1 -- (3 combinations)
1, 1, 1, 1, 1, 1, 1 -- (1 combination)
So, the answer is 8 combinations.