Achievable logoAchievable logo
AMC
Sign in
Sign up
Purchase
Textbook
Practice exams
Support
How it works
Exam catalog
Mountain with a flag at the peak
Textbook
Introduction
1. Algebra
2. Geometry
3. Number theory
4. Counting and probability
4.1 Permutations and combinations
4.2 Probability
4.3 Stars and bars
5. Intermediate topics (AMC 10/12)
6. Advanced topics (AMC 12)
7. General approaches
8. Practical strategies
Wrapping up
Achievable logoAchievable logo
4.1 Permutations and combinations
Achievable AMC
4. Counting and probability

Permutations and combinations

7 min read
Font
Discuss
Share
Feedback

This chapter applies to all AMC 8/10/12 test takers.

Permutations and combinations are tools for counting selections from a set.

  • Permutations count arrangements where order matters.
  • Combinations count selections where order doesn’t matter.

Permutations

Use permutations when the order of elements matters, like counting the number of ways people can stand in a line.

Variables:

  • n is the total number of options available
  • k is the number of times you have to choose

Permutations=(n−k)!n!​

This formula counts the number of ordered sequences of length k you can make from n distinct options.

Let’s solve the following question using this equation.

Five kindergarteners are lining up for recess. How many ways could they line up?

Which values match n and k? Use them to set up and evaluate the permutations expression.

(spoiler)

n=5 k=5

Permutations=(n−k)!n!​=(5−5)!5!​=120

There are 5 kindergarteners total, so there are n=5 options. A complete line uses all 5 kids, so k=5.

Here’s the full math equation:

Permutations=(n−k)!n!​=(5−5)!5!​=0!5!​=15∗4∗3∗2∗1​=120

Sidenote
Zero factorial (0!) is equal to 1

It’s important to know that 0!=1. One way to interpret this is: there is exactly 1 way to arrange (or “choose”) 0 objects - do nothing.

Example: The question below is from 2022 AMC 10A

A rectangle is partitioned into 5 regions as shown. Each region is to be painted a solid color - red, orange, yellow, blue, or green - so that regions that touch are painted different colors, and colors can be used more than once. How many different colorings are possible?

Rectangle partitioned into 5 regions

A. 120
B. 270
C. 360
D. 540
E. 720

(spoiler)

Answer: D. 540

In this problem, the basic permutation formula is a useful starting point, but you also have to account for the “touching regions must be different” constraint.

Start by counting the colorings where all five regions use different colors. That gives 5!/0!=120.

Next, consider colorings where exactly two regions share a color (and the rest are different). This corresponds to using 4 distinct colors, which can be arranged in 5!/(5−4)!=120 ways. There are three ways to choose a pair of nonadjacent regions that are allowed to match in color, so this contributes 3⋅120=360.

Finally, consider the case where there are two matching pairs (so only 3 distinct colors are used). This can happen when diagonal corner regions match. Treating each matching pair as a single “choice” gives 5!/(5−3)!=60.

Adding the cases gives 120+360+60=540.

Combinations

Use combinations when the order of elements does not matter, like counting the number of ways to pick marbles from a jar.

Variables: -n is the total number of options available

  • k is the number of times you have to choose

Combinations=k!(n−k)!n!​

This formula counts the number of groups of size k you can form from n distinct options.

Let’s solve the following question using this equation. Which values match n and k? Use them to set up and evaluate the combinations expression.

How many pairs of news anchors could be picked from six news anchor applicants?

(spoiler)

n=6 k=2

Combinations=k!(n−k)!n!​=2!(6−2)!6!​=15

There are 6 applicants total, so n=6. A pair is a group of 2, so k=2.

Here’s the full math equation:

Combinations=k!(n−k)!n!​=2!(6−2)!6!​=2!∗4!6!​=(2∗1)∗(4∗3∗2∗1)6∗5∗4∗3∗2∗1​=2∗16∗5​=15

Notice what happened in the simplification: the 4∗3∗2∗1in the denominator cancels with the same factor in the numerator. This kind of cancellation is common in permutation and combination expressions, so it’s often worth looking for shared factors before multiplying everything out.

Example: The question below is from 2001 AMC 8

PointsR, S and T are vertices of an equilateral triangle, and points X, Y and Z are midpoints of its sides. How many noncongruent triangles can be drawn using any three of these six points as vertices?

Six points of an equilateral triangle

A. 1
B. 2
C. 3
D. 4
E. 20

(spoiler)

Answer: D. 4

A natural first step is to count all ways to choose 3 points from 6, regardless of triangle type:

  • Total combinations: 6!/(3!(6−3)!)=20

From there, you eliminate choices that don’t produce a triangle or that produce triangles congruent to others.

For example:

  • There are 4 small equilateral triangles, so you would subtract 3 of those to leave one representative.
  • There are 3 collinear triples that aren’t triangles at all: RXT, RYS, and SZT.

After removing the other repeated isosceles and right triangles, the remaining count is 20−3−3−5−5=4.

n choose k notation (nCk)

You may also see combinations written in a compact notation that looks like a fraction without a dividing line. This is read as “n choose k,” and it represents the same value as the combinations formula.

(kn​)=(35​)=3∗2∗15∗4∗3​

This notation becomes more useful later when working with combinatorial identities.

The notation (35​) means “5C3” or “5 choose 3”: the number of ways to choose a group of 3 from 5 distinct options. The n and k have the same meanings as in the sections above.

Which answer choice matches the situation below?

How many groups of four coins can be pulled from a coin purse that contains nine unique coins from all around the world?

A. (94​)
B. (49​)
C. (19​)
D. (99​)
E. (44​)

(spoiler)

Answer: B

Common themes

  • When you are looking for “at least one” of something, one quick method is to find the total number of ways of never selecting it and subtract that from the total combinations possible.
  • When two or more elements of a combination are indistinguishable, we divide by that number factorial. For example, we can make a word out of the letters ABBEF in 5!/2! ways because there are 5 letters, but two are identical.
  • There will likely be some constraints to the combinations, like “Steve cannot be next to Tim”. Whenever there is a constraint, the best approach is actually to ignore it first, solve for all possible combinations, and then consider what percent of the total is the constraint broken. You can then just subtract that number from the total.

Permutations

  • Order matters in arrangements
  • Formula: (n−k)!n!​
  • n = total options, k = choices made

Permutations Example

  • Lining up 5 kids: 5!=120 ways
  • 0!=1 (important factorial fact)

Combinations

  • Order does not matter in selections
  • Formula: k!(n−k)!n!​
  • n = total options, k = choices made

Combinations Example

  • Picking 2 anchors from 6: 2!4!6!​=15 ways
  • Factorial cancellation simplifies calculations

n Choose k notation (nCk)

  • (kn​) means “n choose k”
  • Same as combinations formula
  • Example: (49​) = ways to choose 4 from 9

Common Themes

  • “At least one” problems: subtract cases with none from total
  • Indistinguishable elements: divide by (number of repeats)!
    • Example: ABBEF → 5!/2!
  • Constraints: solve without constraint, subtract violating cases

Sign up for free to take 6 quiz questions on this topic

Previous
Next  | 4.2 Probability
All rights reserved ©2016 - 2026 Achievable, Inc.

Permutations and combinations

This chapter applies to all AMC 8/10/12 test takers.

Permutations and combinations are tools for counting selections from a set.

  • Permutations count arrangements where order matters.
  • Combinations count selections where order doesn’t matter.

Permutations

Use permutations when the order of elements matters, like counting the number of ways people can stand in a line.

Variables:

  • n is the total number of options available
  • k is the number of times you have to choose

Permutations=(n−k)!n!​

This formula counts the number of ordered sequences of length k you can make from n distinct options.

Let’s solve the following question using this equation.

Five kindergarteners are lining up for recess. How many ways could they line up?

Which values match n and k? Use them to set up and evaluate the permutations expression.

(spoiler)

n=5 k=5

Permutations=(n−k)!n!​=(5−5)!5!​=120

There are 5 kindergarteners total, so there are n=5 options. A complete line uses all 5 kids, so k=5.

Here’s the full math equation:

Permutations=(n−k)!n!​=(5−5)!5!​=0!5!​=15∗4∗3∗2∗1​=120

Sidenote
Zero factorial (0!) is equal to 1

It’s important to know that 0!=1. One way to interpret this is: there is exactly 1 way to arrange (or “choose”) 0 objects - do nothing.

Example: The question below is from 2022 AMC 10A

A rectangle is partitioned into 5 regions as shown. Each region is to be painted a solid color - red, orange, yellow, blue, or green - so that regions that touch are painted different colors, and colors can be used more than once. How many different colorings are possible?

Rectangle partitioned into 5 regions

A. 120
B. 270
C. 360
D. 540
E. 720

(spoiler)

Answer: D. 540

In this problem, the basic permutation formula is a useful starting point, but you also have to account for the “touching regions must be different” constraint.

Start by counting the colorings where all five regions use different colors. That gives 5!/0!=120.

Next, consider colorings where exactly two regions share a color (and the rest are different). This corresponds to using 4 distinct colors, which can be arranged in 5!/(5−4)!=120 ways. There are three ways to choose a pair of nonadjacent regions that are allowed to match in color, so this contributes 3⋅120=360.

Finally, consider the case where there are two matching pairs (so only 3 distinct colors are used). This can happen when diagonal corner regions match. Treating each matching pair as a single “choice” gives 5!/(5−3)!=60.

Adding the cases gives 120+360+60=540.

Combinations

Use combinations when the order of elements does not matter, like counting the number of ways to pick marbles from a jar.

Variables: -n is the total number of options available

  • k is the number of times you have to choose

Combinations=k!(n−k)!n!​

This formula counts the number of groups of size k you can form from n distinct options.

Let’s solve the following question using this equation. Which values match n and k? Use them to set up and evaluate the combinations expression.

How many pairs of news anchors could be picked from six news anchor applicants?

(spoiler)

n=6 k=2

Combinations=k!(n−k)!n!​=2!(6−2)!6!​=15

There are 6 applicants total, so n=6. A pair is a group of 2, so k=2.

Here’s the full math equation:

Combinations=k!(n−k)!n!​=2!(6−2)!6!​=2!∗4!6!​=(2∗1)∗(4∗3∗2∗1)6∗5∗4∗3∗2∗1​=2∗16∗5​=15

Notice what happened in the simplification: the 4∗3∗2∗1in the denominator cancels with the same factor in the numerator. This kind of cancellation is common in permutation and combination expressions, so it’s often worth looking for shared factors before multiplying everything out.

Example: The question below is from 2001 AMC 8

PointsR, S and T are vertices of an equilateral triangle, and points X, Y and Z are midpoints of its sides. How many noncongruent triangles can be drawn using any three of these six points as vertices?

Six points of an equilateral triangle

A. 1
B. 2
C. 3
D. 4
E. 20

(spoiler)

Answer: D. 4

A natural first step is to count all ways to choose 3 points from 6, regardless of triangle type:

  • Total combinations: 6!/(3!(6−3)!)=20

From there, you eliminate choices that don’t produce a triangle or that produce triangles congruent to others.

For example:

  • There are 4 small equilateral triangles, so you would subtract 3 of those to leave one representative.
  • There are 3 collinear triples that aren’t triangles at all: RXT, RYS, and SZT.

After removing the other repeated isosceles and right triangles, the remaining count is 20−3−3−5−5=4.

n choose k notation (nCk)

You may also see combinations written in a compact notation that looks like a fraction without a dividing line. This is read as “n choose k,” and it represents the same value as the combinations formula.

(kn​)=(35​)=3∗2∗15∗4∗3​

This notation becomes more useful later when working with combinatorial identities.

The notation (35​) means “5C3” or “5 choose 3”: the number of ways to choose a group of 3 from 5 distinct options. The n and k have the same meanings as in the sections above.

Which answer choice matches the situation below?

How many groups of four coins can be pulled from a coin purse that contains nine unique coins from all around the world?

A. (94​)
B. (49​)
C. (19​)
D. (99​)
E. (44​)

(spoiler)

Answer: B

Common themes

  • When you are looking for “at least one” of something, one quick method is to find the total number of ways of never selecting it and subtract that from the total combinations possible.
  • When two or more elements of a combination are indistinguishable, we divide by that number factorial. For example, we can make a word out of the letters ABBEF in 5!/2! ways because there are 5 letters, but two are identical.
  • There will likely be some constraints to the combinations, like “Steve cannot be next to Tim”. Whenever there is a constraint, the best approach is actually to ignore it first, solve for all possible combinations, and then consider what percent of the total is the constraint broken. You can then just subtract that number from the total.
Key points

Permutations

  • Order matters in arrangements
  • Formula: (n−k)!n!​
  • n = total options, k = choices made

Permutations Example

  • Lining up 5 kids: 5!=120 ways
  • 0!=1 (important factorial fact)

Combinations

  • Order does not matter in selections
  • Formula: k!(n−k)!n!​
  • n = total options, k = choices made

Combinations Example

  • Picking 2 anchors from 6: 2!4!6!​=15 ways
  • Factorial cancellation simplifies calculations

n Choose k notation (nCk)

  • (kn​) means “n choose k”
  • Same as combinations formula
  • Example: (49​) = ways to choose 4 from 9

Common Themes

  • “At least one” problems: subtract cases with none from total
  • Indistinguishable elements: divide by (number of repeats)!
    • Example: ABBEF → 5!/2!
  • Constraints: solve without constraint, subtract violating cases

More from Counting and probability

  • Probability
  • Stars and bars