ACT MATH • PREPARING FOR HIGHER MATH

Counting Methods

Master the fundamental techniques for counting arrangements and selections that appear on the ACT.

Historical Context & Motivation

Humans have been counting and organizing objects for thousands of years, but the formal mathematics of counting methods — also called combinatorics — developed more recently. The need to count the number of possible outcomes in games of chance, arrange soldiers in formations, and compute odds drove mathematicians to create systematic techniques. These methods let you answer questions like "How many different ways can I arrange my schedule?" without listing every single possibility.

~300 BCE
Early Combinatorics in India
Ancient Indian mathematicians, including Pingala, studied the number of ways to arrange syllables in poetry, laying groundwork for binary combinations and Pascal-like triangle ideas centuries before Europe.
1654
Pascal & Fermat Correspondence
Blaise Pascal and Pierre de Fermat exchanged letters about gambling problems, formalizing the counting techniques behind probability theory. Pascal's Triangle became a key tool for computing combinations.
1713
Bernoulli's Ars Conjectandi
Jakob Bernoulli published his landmark treatise, which systematically organized permutations and combinations and connected them to probability, making counting methods a rigorous mathematical discipline.
Modern Era
Counting in the Digital Age
Today, counting methods power computer science, cryptography, and data analysis. Every time your phone generates a password or a website recommends content, combinatorics is working behind the scenes.

The central question these methods address is deceptively simple: How many ways can something happen? Whether it's choosing a committee, arranging books on a shelf, or selecting answers on a test, counting methods give you efficient formulas so you never have to list every option by hand. On the ACT, you'll encounter these problems in the "Preparing for Higher Math" section, and knowing when to multiply, when to use permutations, and when to use combinations is the key to solving them quickly.

Core Principles & Definitions

All counting methods rest on a small set of foundational ideas. Once you understand these core principles, every counting problem on the ACT becomes a matter of identifying which principle applies and plugging in numbers.

1

Fundamental Counting Principle

If one event can happen in m ways and a second event can happen in n ways, then both events together can happen in m × n ways. This multiplies across any number of stages.
2

Factorial (n!)

The product of all positive integers from 1 to n. For example, 5! = 5 × 4 × 3 × 2 × 1 = 120. Factorials count the total arrangements of n distinct objects.
3

Permutations

Arrangements where order matters. Choosing a president, vice president, and secretary from a group is a permutation because switching who gets which role creates a different outcome.
4

Combinations

Selections where order does NOT matter. Choosing 3 people to form a committee is a combination because the same 3 people make the same committee regardless of the order you pick them.
5

Addition Principle

If two events are mutually exclusive (they can't happen simultaneously), you add the number of ways each can occur. For example, choosing a red shirt OR a blue shirt means adding the red options to the blue options.
KEY TAKEAWAY
KEY TAKEAWAY

Visual Explanation — The Counting Principle Tree

A tree diagram is one of the most intuitive ways to visualize the Fundamental Counting Principle. Each branch represents a choice at a particular stage, and the total number of paths from start to finish equals the total number of outcomes. The diagram below shows the outcomes when choosing from 3 shirts and 2 pants.

Each path from Start to a final outcome represents one unique outfit. The three shirt branches each split into two pant branches, yielding 3 × 2 = 6 total outcomes. This is the Fundamental Counting Principle in action.

Notice that you don't have to draw the entire tree for large problems. The tree just illustrates why multiplication works: every branch at stage one pairs with every branch at stage two. If there were also 4 shoe choices, you'd simply extend: 3 × 2 × 4 = 24. On the ACT, recognizing the multi-stage structure of a problem lets you jump straight to multiplication without drawing anything.

Mathematical Framework

The three main formulas you need for ACT counting problems are the factorial, the permutation formula, and the combination formula. Each one builds on the previous, so learn them in order.

FACTORIAL
n! = n × (n − 1) × (n − 2) × … × 2 × 1
n = the number of distinct objects. By definition, 0! = 1. Factorials count the total arrangements of all n items. For example, 4! = 4 × 3 × 2 × 1 = 24.
PERMUTATION
P(n, r) = n! / (n − r)!
n = total items to choose from; r = number of items being arranged. Use this when order matters. Example: arranging 3 out of 8 trophies on a shelf.
COMBINATION
C(n, r) = n! / [r! × (n − r)!]
n = total items; r = items being selected. Use this when order does NOT matter. Notice that C(n, r) = P(n, r) / r!, because dividing by r! removes duplicate orderings.
ACT Tip: Permutation vs. Combination

Detailed Breakdown — Choosing the Right Method

The hardest part of ACT counting problems isn't the arithmetic — it's deciding which method to use. The flowchart below walks you through the decision process step by step. Start at the top, answer each question, and follow the arrow to the correct formula.

Start at the top: if the problem has multiple independent stages (e.g., pick a shirt and pick pants), use the Fundamental Counting Principle. If you're selecting from a single group, ask whether order matters to choose between permutations and combinations.
Common ACT counting scenarios and which method to use
ScenarioOrder Matters?MethodFormula
Arrange ALL 5 books on a shelfYesFactorial5! = 120
Choose 1st, 2nd, 3rd place from 10 runnersYesPermutationP(10, 3) = 720
Pick 3 students for a committee from 10NoCombinationC(10, 3) = 120
Choose an entree, a drink, and a dessertN/A (multi-stage)Counting Principlem × n × p
Create a 4-digit PIN (digits 0–9, repeats OK)YesCounting Principle10 × 10 × 10 × 10 = 10,000

Worked Example

Let's walk through a typical ACT-style problem step by step.

1
Step 1 — Read the ProblemA club has 12 members. They need to choose a president, a vice president, and a secretary. How many different ways can these 3 positions be filled?
2
Step 2 — Determine the MethodThe three positions are distinct roles. If Amy is president and Ben is vice president, that's different from Ben being president and Amy being vice president. Since order matters and we are selecting 3 from 12, this is a permutation.
Use P(n, r) where n = 12, r = 3
3
Step 3 — Apply the FormulaP(12, 3) = 12! / (12 − 3)! = 12! / 9!. Rather than computing full factorials, notice that most terms cancel: 12! / 9! = 12 × 11 × 10 (everything below 10 cancels with 9!).
12 × 11 × 10
4
Step 4 — Calculate12 × 11 = 132. Then 132 × 10 = 1,320.
P(12, 3) = 1,320 ways
5
Step 5 — Verify with Counting PrincipleAs a check, think of it stage by stage: 12 choices for president, then 11 remaining for vice president, then 10 remaining for secretary. That gives 12 × 11 × 10 = 1,320 ✓. Both approaches agree.
KEY TAKEAWAY
SHORTCUT CHECK

Permutations vs. Combinations — Side by Side

The single most common mistake on ACT counting problems is mixing up permutations and combinations. The table below puts them side by side so you can see exactly how they differ and when to use each.

Permutation vs. Combination comparison
FeaturePermutation P(n, r)Combination C(n, r)
OrderMatters — ABC ≠ BACDoes NOT matter — {A, B, C} = {B, A, C}
Formulan! / (n − r)!n! / [r! × (n − r)!]
Result sizeAlways ≥ the combinationAlways ≤ the permutation
RelationshipP(n, r) = C(n, r) × r!C(n, r) = P(n, r) / r!
Key wordsArrange, order, rank, assign, sequence, passwordChoose, select, committee, group, team, hand (cards)
ExampleGold, Silver, Bronze medals from 8 athletes: P(8, 3) = 336Pick 3 athletes for a team from 8: C(8, 3) = 56
KEY TAKEAWAY
THE PIZZA TOPPING TEST

Connections to Probability & Advanced Topics

Counting methods are not just stand-alone topics — they are the foundation of probability. On the ACT, you may see problems that ask for the probability of an event, which requires you to count favorable outcomes and divide by total outcomes. Understanding counting methods makes these probability questions much more manageable.

How counting methods connect to probability and beyond
Counting Methods (This Lesson)Probability & Advanced Topics
Count total outcomes using formulasUse total outcomes as the denominator in P(event) = favorable / total
Fundamental Counting Principle for multi-stage eventsIndependent probability: P(A and B) = P(A) × P(B)
Combinations C(n, r) for groupsBinomial probability uses C(n, r) × p^r × (1 − p)^(n−r)
Addition principle for OR scenariosP(A or B) = P(A) + P(B) − P(A and B)
Factorial for arranging all itemsDerangements, circular permutations in advanced combinatorics

On the ACT specifically, a typical probability-counting hybrid might ask: "A bag contains 5 red and 7 blue marbles. If you draw 3 marbles, what is the probability that all 3 are red?" To solve this, you'd compute C(5, 3) for the favorable outcomes and C(12, 3) for the total outcomes, then divide. The counting tools you learned in this lesson make that calculation straightforward.

Looking Ahead

Practice Problems

1
Which of the following best explains why C(8, 3) is less than P(8, 3), and what dividing by r! removes from the count?
2
A restaurant offers 4 appetizers, 6 entrees, and 3 desserts. If a customer orders one of each, how many different meals are possible?
3
From a class of 15 students, the teacher must choose a team of 4 students to represent the class at a competition. How many different teams can be formed?
4
A student council has 10 members. They need to elect a president, a vice president, and a treasurer, and then separately form a 3-person prom committee (no one can serve on both). How many ways can all positions and the committee be filled?
5
A 5-character password consists of 3 distinct letters (chosen from A–Z) followed by 2 distinct digits (chosen from 0–9). The order of the letters matters and the order of the digits matters (e.g., ABС12 and BAС12 are different passwords). How many such passwords are possible?
Varsity Tutors • ACT Math • Counting Methods