In this activity, you will make connections between arranging colored balls and entries in Pascal’s Triangle. By the end of this activity, you should understand the role that recursion plays in Pascal’s Triangle (e.g., how each entry depends on entries before it).

In how many ways can two colored balls, red (R) and blue (B) be arranged in order?

Answer: ways

and
In how many ways can three colored balls, red (R), blue (B) and yellow (Y) be arranged in order?

Answer: ways

Write out the complete list:

Try starting by writing all of the arrangements that start with red (R).
In how many ways can four colored balls, red (R), blue (B), yellow (Y) and green (G) be arranged in order?
  • Person 1 - Write out the possibilities that begin with R. How many are there?
  • Person 2 - Write out the possibilities that begin with B. How many are there?
  • Person 3 - Write out the possibilities that begin with Y. How many are there?
  • Person 4 - Write out the possibilities that begin with G. How many are there?

Hence, there are ways that four colored balls can be arranged in order.

In how many ways can five colored balls, red (R), blue (B), yellow (Y), green (G) and purple (P) be arranged in order?
  • Person 1 - Write out the possibilities that begin with PR.
  • Person 2 - Write out the possibilities that begin with PB.
  • Person 3 - Write out the possibilities that begin with PY.
  • Person 4 - Write out the possibilities that begin with PG.

There are ways five colored balls can be arranged in order.

How do your answers to this question compare to your answers for the previous question?
As you write out the possibilities that begin with PR, PB, etc., find a pattern that helps you keep track of which ones you’ve already written down.
In how many ways can colored balls be arranged in order? There are ways.
Your answer should be in terms of .
In how many ways can three balls from among five colored balls, red (R), blue (B), yellow (Y), green (G) and purple (P) be arranged in order?
  • Person 1 - Write out the possibilities that begin with R.
  • Person 2 - Write out the possibilities that begin with B.
  • Person 3 - Write out the possibilities that begin with Y.
  • Person 4 - Write out the possibilities that begin with G.
  • Person 5 - Write out the possibilities that begin with P.

There are ways.

One of the possibilities that begins with R is RBY.
In how many ways can balls from among colored balls be arranged in order?

There are ways.

There are ways to arrange objects in order. If we are only looking to arrange of those balls in order, how many arrangements are unnecessary?
How many of the permutations in Problem 6 contain the colors R,G,B in some order?

In other words, there are ways to order the colors R,G,B.

How is this related to Problem 2?

In how many ways can balls from among colored balls be chosen, if order doesn’t matter? In other words, how many combinations are there?

There are ways.

How many arrangements of letter (in order) are treated as the same? Your expression will need to eliminate these redundant combinations.

The notation for the number of combinations of balls from a total of balls is read as ’ choose ’ and is denoted by

Show the recursion in Pascal’s Triangle works for combinations in this example: Show that the number of combinations of 4 colors chosen from 10 equals the number of combinations of 4 colors chosen from 9 plus the number of combinations of 3 colors chosen from 9.
Examine the 10th color. In how many combinations is the 10th color present?
In how many combinations is the 10th color not present?