Repeated Outcomes
If there're only k possible outcomes for each object, total possible outcomes for n objects is k^n.
Explanation: For each object, there are k outcomes. So the total number of outcomes would be k*k*k ...*k, for n times.
Example:
Ann is making a fruit basket with 3 apples, 4 plums and 2 grapefruits. If she can include however many fruits as she wants in the basket as long as there are some fruits in the basket, how many different choices does she have? (Assuming the fruits are all different from each other.)
Total number of fruits = 9
For each fruit there are 2 possible outcomes: included, not included
Total outcome = 2^9-1
(The minus one is to take out the one possible outcome where nothing is in the basket.)
Example:
Ann is making a fruit basket with 3 apples, 4 plums and 2 grapefruits. If she can include however many fruits as she wants in the basket as long as there is at least one of each kind, how many different choices does she have? (Assuming the fruits are all different from each other.)
Total outcome = (2^3-1)*(2^4-1)*(2^2-1)
Example:
There are three secretaries who work for three departments. If each of the three departments have one report to be typed out, and the reports are randomly assigned to a secretary, what is the probability that all three secretary are assigned at least one report?
For each report there are three possible outcomes: Secretary A, Secretary B, Secretary C
Total outcome: 3^3=27
Total outcome that three secretary are assigned at least one report: P(3,3)=3!=6
Probability = 6/27=2/9
Example:
There are three secretaries who work for four departments. If each of the four departments have one report to be typed out, and the reports are randomly assigned to a secretary, what is the probability that all three secretary are assigned at least one report?
For each report there are three possible outcomes: Secretary A, Secretary B, Secretary C
Total outcome: 3^4=81
Total outcome that three secretary are assigned at least one report: We need to choose one secretary C(3,1) to be assigned of two reports C(4,2) and then the rest two secretary each to be assigned of one report P(2,2). C(3,1)*C(4,2)*P(2,2)=36
Probability = 36/81=4/9
Question: in the above example, why isn't total outcome = 4^3?