Question
In how many ways can 5 people sit in a row?
This is the foundational permutation question — every student meets it in Class 11, and it’s the building block for every harder arrangement problem in JEE and boards.
Solution — Step by Step
We have 5 seats in a row. The key insight: we’re not filling all seats at once — we fill them one by one, and each choice affects the next.
Start with the leftmost seat. Any of the 5 people can sit there, so we have 5 choices.
Once someone sits in Seat 1, they’re committed — they can’t be in Seat 2. So for the second seat, we only have 4 remaining people to choose from.
This is the core logic of permutations: each placement removes one option.
Seat 3: 3 people left → 3 choices
Seat 4: 2 people left → 2 choices
Seat 5: only 1 person remains → 1 choice
By the Fundamental Principle of Counting, when we make a series of independent decisions, we multiply the number of choices at each stage:
This product has a name: 5! (5 factorial). The general formula for arranging distinct objects in a row is .
The answer is 120 ways.
Why This Works
The multiplication here isn’t arbitrary — it comes from the Fundamental Principle of Counting. If Task A can happen in ways and Task B can happen in ways after that, together they happen in ways.
Filling a row of seats is exactly this: 5 sequential tasks (one per seat), each with a shrinking number of options. Multiply them and you get the total.
For our problem: . Every distinct arrangement — say, A-B-C-D-E versus A-C-B-D-E — is counted exactly once.
Alternative Method
We can also use the permutation formula directly. Arranging 5 people in 5 seats is the same as selecting 5 people from 5 and arranging them:
We use by definition (there’s exactly one way to arrange zero objects — do nothing). This connects the seat-filling logic to the standard formula you’ll use for tougher problems like “how many ways to choose and arrange 3 people from 7.”
When all objects fill all positions, always equals . No need to apply the full formula — just write directly and save time in exams.
Common Mistake
Adding instead of multiplying. Some students write and think that’s the answer. This would be correct if you were choosing a seat for one person with 15 total options — but here we’re filling all seats for all people simultaneously. Separate sequential decisions must be multiplied, not added.
A quick sanity check: with just 2 people (A and B) in 2 seats, there are clearly 2 arrangements (AB and BA). Our formula gives ✓. With 3 people: ABC, ACB, BAC, BCA, CAB, CBA — that’s 6, and ✓. The multiplication logic holds.