HCF
The HCF (Highest Common Factor, also called GCD) of two or more numbers is the largest number that divides each of them exactly. It is one of the quiet workhorses of CAT Number System — rarely glamorous, but it underpins a whole family of word problems about cutting things into equal pieces, distributing items without remainder, and finding the greatest divisor that leaves fixed remainders. CAT and XAT almost never ask a bare "find the HCF of 24 and 36"; instead they wrap it inside a story: the largest tile that paves a floor exactly, the biggest container that measures out three liquids, the greatest number dividing a set leaving given remainders. This chapter builds HCF from two angles — prime factorization (take the lowest power of each shared prime) and the Euclidean algorithm (repeated division, the fastest method for large numbers). It then turns to applications: HCF of fractions, the remainder trick (HCF of the differences), and the standard tile-and-container problems. Master both the mechanics and the translation from words to "this is an HCF question", and an entire problem type becomes nearly automatic in the exam.
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.
- For large numbers skip factoring — run the Euclidean algorithm: HCF(a, b) = HCF(b, a mod b) until the remainder is 0.
- Pull out an obvious common factor first: HCF(ka, kb) = k × HCF(a, b), so HCF(1230,1450) = 10 × HCF(123,145).
- Greatest number leaving the SAME remainder = HCF of the pairwise differences, HCF(a−b, b−c, a−c).
- Greatest number leaving remainders r1, r2, r3 = HCF(a−r1, b−r2, c−r3) — subtract each remainder to make division exact.
- HCF of fractions = HCF(numerators)/LCM(denominators); the answer is always ≤ the smallest fraction.
- Largest tile/container = HCF of the dimensions; number of pieces = product of (each dimension ÷ HCF).
⚠️ Common mistakes & traps
CAT is designed so that careless errors here cost you marks. Internalise each trap before the exam.
- Taking the HIGHEST power of common primes (that gives LCM) instead of the LOWEST power for HCF.
- Forgetting to subtract the remainders before taking the HCF in "leaves remainder r" problems.
- Mixing up units in tile/plot problems — convert km, m and cm to the same unit before taking the HCF.
- For HCF of fractions, taking LCM of numerators or HCF of denominators (it is HCF of numerators over LCM of denominators).
- Stopping the Euclidean algorithm one step early — the HCF is the LAST non-zero remainder, not the final quotient.
📈 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 HCF 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
Core HCF rules
| Prime factorization HCF | product of each common prime raised to its LOWEST power |
|---|---|
| Euclidean algorithm | HCF(a, b) = HCF(b, a mod b), until remainder = 0 |
| HCF × LCM (two numbers) | HCF(a, b) × LCM(a, b) = a × b |
| HCF of fractions | HCF(numerators) / LCM(denominators) |
| Co-prime check | a, b are co-prime ⇔ HCF(a, b) = 1 |
CAT application formulas
| Largest tile / container | side or capacity = HCF of the given dimensions |
|---|---|
| Greatest number dividing a, b, c exactly | HCF(a, b, c) |
| Greatest number leaving same remainder r | HCF(a − r, b − r, c − r) |
| Greatest number leaving remainders r1, r2, r3 | HCF(a − r1, b − r2, c − r3) |
| HCF scales with a common factor | HCF(ka, kb) = k × HCF(a, b) |