Most placement papers open with a number-properties question because it is fast to set and fast to mark. Speed here frees up minutes for the hard problems later, so treat this chapter as a warm-up you must never lose marks on.
Natural numbers (1, 2, 3…), whole numbers (0 included), integers (… −2, −1, 0, 1…), rationals (any p/q), and primes (exactly two factors). Knowing the family tells you which shortcuts are legal.
A factor divides a number exactly; a multiple is the number scaled up. HCF (highest common factor) is the biggest number dividing all given numbers. LCM (lowest common multiple) is the smallest number all of them divide into. For any two numbers: HCF × LCM = Product of the two numbers.
| Divisor | Quick test |
|---|---|
| 2 | Last digit is even |
| 3 | Digit sum divisible by 3 |
| 4 | Last two digits divisible by 4 |
| 5 | Ends in 0 or 5 |
| 6 | Passes both the 2-test and the 3-test |
| 8 | Last three digits divisible by 8 |
| 9 | Digit sum divisible by 9 |
| 11 | Difference of alternate digit sums is 0 or a multiple of 11 |
How to Approach It
Number questions are won by recognising structure before you calculate. Train yourself to ask 'what kind of number is this, and what property is being tested?' — the answer points you straight to the right tool.
- Identify what's being asked. Decide whether the question is about divisibility, factors and multiples, HCF/LCM, remainders, or the last digit of a power. Naming the type first stops you from blindly grinding through arithmetic.
- Reach for the matching tool. For a last digit, use unit-digit cyclicity; for 'largest/smallest number that divides...', think HCF or LCM; for 'how many factors', prime-factorise.
- Prime-factorise when you're stuck. Breaking a number into its primes exposes its factors, divisibility and HCF/LCM all at once. Whenever the path isn't obvious, factorising almost always reveals it.
- Bound-check before you commit. An HCF can't exceed the smallest number, an LCM can't be below the largest, and a remainder must be smaller than the divisor. A two-second bound check catches careless errors.
Techniques & Methods
- Unit-digit cyclicity. Last digits repeat every 4 powers. Take the exponent mod 4 (remainder 0 → use the 4th in the cycle). e.g. 8^25: 25 mod 4 = 1, 8's cycle 8,4,2,6 → last digit 8.
- HCF × LCM = product. For two numbers, multiply HCF and LCM to recover the product, then divide out the known number. e.g. HCF 6, LCM 36, one number 12 → other = 6×36/12 = 18.
- Count factors fast. Prime-factorise, add 1 to each power, multiply the results. e.g. 72 = 2^3 × 3^2 → (3+1)(2+1) = 12 factors.
- Alternating-digit test for 11. Difference of alternate digit sums divisible by 11 → the number is too; it also gives the remainder. e.g. 123456: (6−5+4−3+2−1) = 3 → remainder 3 on division by 11.
- Recognise the type: we only need the last digit of a power, so this is a cyclicity question — no need to compute 3^65 itself.
- Watch 3's last digit as the power grows: 3^1 ends in 3, 3^2 in 9, 3^3 in 7, 3^4 in 1, then it repeats. The cycle is 3, 9, 7, 1 — a period of 4.
- Divide the exponent by 4 and keep the remainder: 65 ÷ 4 = 16 remainder 1.
- A remainder of 1 points to the 1st value in the cycle, which is 3. (Had the remainder been 0, we would take the 4th.)
- Recall the identity: HCF × LCM = product of the two numbers — this finds a missing number without listing factors.
- Rearrange: other number = (HCF × LCM) ÷ known = (27 × 2079) ÷ 189.
- Compute: 27 × 2079 = 56,133; then 56,133 ÷ 189 = 297.
- Sanity-check: 189 = 27 × 7 and 297 = 27 × 11. Since 7 and 11 are coprime, HCF stays 27 and LCM is 27 × 7 × 11 = 2079 — both match.
Worked Drills
- 17's unit digit follows 7's cycle: 7, 9, 3, 1 (period 4).
- 200 ÷ 4 leaves remainder 0 → take the 4th value in the cycle = 1.
- The number must exactly divide 70 − 5 = 65 and 125 − 8 = 117.
- Take HCF(65, 117) = 13.
- 9999 ÷ 88 = 113.6, so use the whole part 113.
- 113 × 88 = 9944.
- Write the numbers as 13a and 13b with a, b coprime. Then 169ab = 2028 → ab = 12.
- Coprime pairs giving 12: (1,12) and (3,4) → 2 pairs.
- Count factors of 5: floor(25/5) = 5.
- Add higher powers: floor(25/25) = 1. Total = 5 + 1 = 6.
- 2^3 = 8 leaves remainder 1 mod 7, so powers cycle with period 3.
- 31 mod 3 = 1 → 2^1 = 2.
- It must divide the differences: 91 − 43 = 48 and 183 − 91 = 92 (and 183 − 43 = 140).
- HCF(48, 92, 140) = 4.
- 360 = 2^3 × 3^2 × 5.
- Add 1 to each power and multiply: (3+1)(2+1)(1+1) = 24.
- 13 → 3's cycle (3,9,7,1); 15 mod 4 = 3 → 7.
- 17 → 7's cycle (7,9,3,1); 13 mod 4 = 1 → 7. Sum of units 7 + 7 = 14 → unit digit 4.
- Subtract the remainders: it divides 1023 − 3 = 1020 and 750 − 2 = 748.
- HCF(1020, 748) = 68.
- Remainder 0 in cyclicity means the last position in the cycle, never the first.
- 1 is not a prime number. 2 is the only even prime.
- HCF can never be larger than the smallest number; LCM can never be smaller than the largest.
- Name the type first. Divisibility, HCF/LCM, factor-count, or last-digit each has its own fast tool.
- Cyclicity rules units. Exponent mod 4 picks the digit; remainder 0 means the 4th value.
- HCF × LCM = product recovers any missing number for a pair instantly.
- Prime-factorise to count factors — add 1 to each power and multiply.