Multiples
Counting multiples looks deceptively simple, yet it is one of the most reused micro-skills in CAT Number System and Modern Maths. The entire idea rests on a single fact: the count of multiples of k in the range 1 to N is exactly floor(N/k) — the integer part of N divided by k. From that one expression flows a surprising amount of CAT machinery: how many numbers up to 1000 are divisible by 7, how many are divisible by 2 OR 5, how many leave a given remainder, and how many escape a whole set of divisors. The genuinely tricky part is never the floor itself; it is handling "a or b" without double counting, which is where inclusion–exclusion and the LCM step in. This chapter builds the skill cleanly: first the count of common multiples and how LCM controls them, then the full counting toolkit — multiples of one number, of a or b, of a and b, and the "neither" case via complementary counting. Master these and a whole family of set-counting, range and remainder questions collapses into a few quick floor divisions.
Topics
⚡ CAT shortcuts & speed methods
The fastest ways to crack this chapter under time pressure — the techniques that separate a 95+ percentiler from the rest.
- Count of multiples of k up to N is just floor(N/k) — never list, always divide.
- For a range [A, B]: floor(B/k) − floor((A−1)/k). Use A−1, not A, or you drop the boundary.
- Common multiples of a and b are multiples of LCM(a,b); count = floor(N/LCM). Do NOT use a×b unless HCF = 1.
- "a OR b" = floor(N/a) + floor(N/b) − floor(N/LCM(a,b)). Subtracting the LCM term kills the double count.
- "Neither a nor b" = N − (a OR b count). Complementary counting is faster than direct.
- "a but not b" = floor(N/a) − floor(N/LCM(a,b)); "exactly one" = (a OR b) − 2·floor(N/LCM).
⚠️ Common mistakes & traps
CAT is designed so that careless errors here cost you marks. Internalise each trap before the exam.
- Using a × b for common multiples when a and b share factors — only LCM is correct (a×b overcounts).
- Forgetting the −floor(N/LCM) term in "a OR b", which double counts numbers divisible by both.
- In a range [A, B], subtracting floor(A/k) instead of floor((A−1)/k) and losing the A endpoint.
- Confusing "divisible by a and b" (the LCM count) with "divisible by a or b" (inclusion–exclusion).
- Rounding N/k instead of taking the floor — 1000/7 is 142, not 143.
📈 CAT exam insight & PYQ analysis
🎴 Flashcards — instant recall
Tap a card to reveal the answer. Drill these until they are automatic.
📌 Quick revision
Chapter test
🏆 Vidaara CAT success checklist
You have truly mastered Multiples when you can tick every box below.
- Recall every formula in this chapter without looking them up
- Solve each topic’s practice set with at least 80% accuracy
- Use the chapter shortcuts to cut your solving time in half
- Spot and avoid every common trap listed above
- Score 80%+ on the timed chapter test
📋 Chapter mastery scorecard
Track where you stand. Aim for the target before moving to the next chapter.
| Skill checkpoint | Target |
|---|---|
| Concept theory & formulas understood | 100% |
| Topic practice sets attempted (2 topics) | 2/2 |
| Best topic-test score | — → 80%+ |
| Chapter test score | — → 80%+ |
| Flashcards drilled to instant recall | 12 cards |
Formula Reference Sheet
Counting in a range
| Multiples of k in [1, N] | floor(N / k) |
|---|---|
| Multiples of k in [A, B] | floor(B/k) − floor((A−1)/k) |
| Common multiples of a, b in [1, N] | floor(N / LCM(a, b)) |
| kth common multiple of a, b | k × LCM(a, b) |
| nth multiple of k | n × k |
Inclusion–exclusion (divisibility)
| Divisible by a OR b | floor(N/a) + floor(N/b) − floor(N/LCM(a,b)) |
|---|---|
| Divisible by a AND b | floor(N / LCM(a, b)) |
| Divisible by NEITHER a nor b | N − [floor(N/a) + floor(N/b) − floor(N/LCM)] |
| Three sets a, b, c (OR) | Σfloor(N/x) − Σfloor(N/LCM pairs) + floor(N/LCM(a,b,c)) |
| Exactly one of a, b | [floor(N/a) − floor(N/LCM)] + [floor(N/b) − floor(N/LCM)] |