Perfect Squares
A perfect square is any integer you get by multiplying a whole number by itself: 0, 1, 4, 9, 16, 25 and so on. CAT rarely asks you to recognise a square in isolation; instead it buries the idea inside number-system questions — counting factors, finding the smallest multiplier that makes a number a perfect square, testing whether an expression can ever be a square, or working out how many squares lie in a range. The students who clear the QA cut-off treat perfect squares as a quick filter. They know a square can only end in 0, 1, 4, 5, 6 or 9, so a number ending in 2, 3, 7 or 8 is instantly rejected without any calculation. They know a perfect square is the only kind of number with an odd count of factors, because its square-root factor pairs with itself. And they know the gap between consecutive squares grows linearly, so between n² and (n+1)² there sit exactly 2n non-squares. This chapter builds those reflexes through two focused topics — the digit and digital-root properties that let you reject impostors on sight, and the factor-count test that turns "is it a perfect square?" into a one-glance check on the prime factorisation.
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.
- Reject on sight: any number ending in 2, 3, 7 or 8 is never a perfect square.
- Digital-root filter: a square’s digital root is only 1, 4, 7 or 9 — roots of 2, 3, 5, 6, 8 are impossible.
- Odd factor count ⇔ perfect square. So "odd number of divisors" always means "the squares".
- Perfect-square test = every prime exponent in the factorisation is even.
- Smallest multiplier to a square = product of the primes carrying an odd exponent.
- Count of perfect squares up to M is just ⌊√M⌋; between n² and (n+1)² sit exactly 2n non-squares.
⚠️ Common mistakes & traps
CAT is designed so that careless errors here cost you marks. Internalise each trap before the exam.
- Thinking the unit-digit or digital-root test PROVES a square — it can only reject; passing is necessary, not sufficient.
- Counting 2n+1 instead of 2n for the non-squares strictly between n² and (n+1)².
- Forgetting 0 and 1 are perfect squares when listing or counting them.
- Multiplying by the full number instead of only the odd-exponent primes to reach the nearest square.
- Assuming an odd factor count is "rare" — it is exactly the perfect squares, nothing else.
📈 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 Perfect Squares 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
Identity & gap rules
| Perfect square definition | N = k² for some integer k ≥ 0 |
|---|---|
| Possible unit digits | last digit ∈ {0, 1, 4, 5, 6, 9} only |
| Digital root of a square | digital root ∈ {1, 4, 7, 9} only |
| Non-squares between n² and (n+1)² | (n+1)² − n² − 1 = 2n |
| Sum of first n odd numbers | 1 + 3 + 5 + … + (2n−1) = n² |
Factor-count power-tools
| Number of factors | if N = p^a · q^b · r^c then d(N) = (a+1)(b+1)(c+1) |
|---|---|
| Perfect-square test | N is a square ⇔ every prime exponent a, b, c … is even |
| Odd factor count | d(N) is odd ⇔ N is a perfect square |
| Smallest multiplier to a square | multiply by the product of primes with odd exponent |
| Squares ≤ M | count = ⌊√M⌋ |