Welcome to the World of Counting!

Welcome! If you've ever felt overwhelmed by the idea of "calculating the number of ways" something can happen, you are not alone. In this chapter, we explore Combinatorial Probability. At its heart, this is just a fancy way of saying "advanced counting."

Why is this important for Exam P? Because probability is often just a fraction: the number of ways an event can happen divided by the total number of ways anything can happen. To get those numbers, we need the tools of permutations and combinations. Let’s dive in!

1. The Foundation: The Multiplication Principle

Before we get to the complex formulas, we need the most basic rule of counting. Imagine you are picking an outfit. You have 3 shirts and 2 pairs of pants. How many different outfits can you make? You have \(3 \times 2 = 6\) choices.

The Rule: If one task can be done in \(n\) ways and a second task can be done in \(m\) ways, then both tasks can be done in \(n \times m\) ways.

Example: A license plate has 3 letters followed by 3 numbers. How many possible plates are there?
Step 1 (Letters): \(26 \times 26 \times 26\)
Step 2 (Numbers): \(10 \times 10 \times 10\)
Total: \(26^3 \times 10^3 = 17,576,000\)

Key Takeaway:

Whenever you see "and" in a sequence of choices, think multiplication.

2. Factorials: The "All the Way Down" Tool

In combinatorics, we often need to multiply a series of descending numbers. We use the factorial symbol \(!\) to show this.

\(n! = n \times (n-1) \times (n-2) \times ... \times 1\)

Example: \(4! = 4 \times 3 \times 2 \times 1 = 24\).
Important Note: By definition, \(0! = 1\). This might seem weird, but it makes our formulas work perfectly!

3. Permutations: When Order Matters

A Permutation is an arrangement of items where the order is strictly important. Think of a race: finishing 1st, 2nd, and 3rd is very different from finishing 3rd, 2nd, and 1st!

The Formula

If you have \(n\) total items and you want to choose and arrange \(r\) of them, the formula is:
\(P(n, r) = \frac{n!}{(n-r)!}\)

Real-World Analogy: Think of a Permutation as a Phone Number. If you dial the right numbers but in the wrong order, you get the wrong person! Order is everything.

Step-by-Step Example:
There are 10 students in a club. How many ways can we elect a President, Vice President, and Secretary?
1. Does order matter? Yes, because the roles are specific.
2. \(n = 10\), \(r = 3\).
3. Calculation: \(P(10, 3) = \frac{10!}{(10-3)!} = \frac{10!}{7!} = 10 \times 9 \times 8 = 720\).

Quick Review:

Use Permutations when you are arranging items or assigning specific roles.

4. Combinations: When Order Does NOT Matter

A Combination is a selection of items where the order doesn't matter. You are just picking a group or a "set."

The Formula

We often use the "n-choose-r" notation: \(\binom{n}{r}\).
\(\binom{n}{r} = \frac{n!}{r!(n-r)!}\)

Real-World Analogy: Think of a Combination as a Committee. If Alice, Bob, and Charlie are on a committee, it's the exact same group as Charlie, Bob, and Alice. The order they were picked doesn't change the group.

Did you know? The combination formula is just the permutation formula divided by \(r!\). We divide by \(r!\) to "cancel out" all the different ways the same group could have been ordered.

Step-by-Step Example:
There are 10 students in a club. How many ways can we choose a committee of 3 people?
1. Does order matter? No, they are all just committee members.
2. \(n = 10\), \(r = 3\).
3. Calculation: \(\binom{10}{3} = \frac{10!}{3!(10-3)!} = \frac{10 \times 9 \times 8}{3 \times 2 \times 1} = 120\).

Key Takeaway:

Permutation = Position (Order matters)
Combination = Choice (Order doesn't matter)

5. Special Case: Indistinguishable Items

Sometimes you are arranging items where some are identical (like the letters in the word "APPLE"). Since you can't tell the two "P"s apart, swapping them doesn't create a new arrangement.

The Formula: \(\frac{n!}{n_1! n_2! ... n_k!}\)
Where \(n\) is the total items and \(n_1, n_2...\) are the counts of the identical items.

Example: How many ways can you arrange the letters in "STAT"?
Total letters: 4. Identical letters: Two "T"s.
Ways = \(\frac{4!}{2!} = \frac{24}{2} = 12\).

6. Putting it Together: Combinatorial Probability

On Exam P, you will often be asked for the probability of an event. You calculate this by:
\(P(A) = \frac{\text{Ways the specific event can happen}}{\text{Total possible ways the situation can happen}}\)

Example: A jar contains 5 red balls and 5 blue balls. If you pick 3 balls at random, what is the probability that all 3 are red?
Step 1: Total Ways. Pick 3 balls from 10: \(\binom{10}{3} = 120\).
Step 2: Favorable Ways. Pick 3 red balls from the 5 red balls available: \(\binom{5}{3} = 10\).
Step 3: Probability. \(\frac{10}{120} = \frac{1}{12}\).

7. Common Mistakes to Avoid

1. Mixing up P and C: Always ask yourself, "If I swap the order of the items I picked, is it a different outcome?" If yes, use Permutations. If no, use Combinations.
2. Overcounting: This happens when you don't account for identical items. If you see "identical," "indistinguishable," or "same," you likely need to divide by a factorial.
3. Forgetting the denominator: In probability questions, students often find the number of ways an event happens but forget to divide by the total possible outcomes.

Chapter Summary

1. Multiplication Principle: Multiply choices for sequential steps.
2. Permutations \(P(n, r)\): Order matters. Use for rankings, specific roles, or arrangements.
3. Combinations \(\binom{n}{r}\): Order doesn't matter. Use for committees, samples, or groups.
4. Probability: \(\frac{\text{Favorable Outcomes}}{\text{Total Outcomes}}\). Use counting methods for both top and bottom!

Don't worry if this seems tricky at first! Combinatorics is a skill that improves with practice. Start by identifying whether order matters in every problem you see, and the rest will fall into place.