permutations() — Permutations

Counts the ways to put things in order.

nPr = n! / (n − r)!

Key idea

Definition

how many things you can choose from
how many you line up in order
n times every whole number down to 1

In plain words

Think of a race: who gets gold, silver, and bronze? Swapping two runners makes a new result, so the order counts.

Where you'd use it

Worked example 6

With 5 runners, the number of ways to hand out gold, silver, and bronze (pick 3 in order) is 60.

Frequently asked questions

Permutations or combinations?
Permutations when order matters; combinations when it doesn’t.