2) Rina is making a necklace using 3 different colors of beads, Red, White and Blue, and a center stone. How many ways can she string 4 beads using all 3 colors of beads?
Note: Consider that two beads of the same color are interchangeable and don't count as 2 separate combinations
|
The wording of this problem is tricky. What it means is that you can duplicate each color to make 4 choices.
Use R for red, W for white and B for blue. So your 3 choices are:
    2 reds, 1 white, 1 blue (R R W B)
    2 whites, 1 red, 1 blue (W W R B)
    2 blues, 1 red, 1 white (B B R W)
There are 2 ways to approach this:
Method 1: List the possibilities for RRWB and multiply by 3 for the other two options.
List all the possibilities for the first option containing 2 reds. Remember that the two red beads are the same and that a combination of R1 R2 W B is the same as R2 R1 W B.
(I'll give you the first 2 combinations with 2 reds:
    R R W B
    R R B W
This is ____ combinations.
Multiply this by 3 to get the total number of color combinations = _____
Method 2: Use the formula for permutations of words with repeated letters. This is the same problem, except we have beads instead of words.
This formula is :
    P = n! / r! where:
    n = the number of colors (the exclamation point means to take the factorial of n.)
    r = the number of repeated colors (again, factorial)
Once you have this number, multiply by 3 because you can duplicate each of the 3 colors.
The number of combinations is _____
|