SSC CGL · Quantitative Aptitude
Number System & Simplification
Properties of whole numbers, integers, fractions and decimals along with BODMAS-based simplification.
Eight concepts, and the cheapest marks in any quantitative paper. Every question here is one rule applied once — the whole difficulty is knowing which rule inside ten seconds, because the paper does not pay extra for the long way round. Each concept ends in a worked ledger whose shape you can copy.
- SSC CGL
- Easy level
- 8 concepts
- 279 practice questions
1BODMAS, and the two pairs that tie
Brackets, Orders, Division, Multiplication, Addition, Subtraction. The acronym is read as six ranks, but it is really four: division and multiplication share a rank, and addition and subtraction share another. Within a shared rank you work strictly left to right, and that single sentence is where most simplification marks are lost — 36 ÷ 6 × 3 is 18, not 2.
The bar drawn over an expression, the vinculum, outranks even brackets: it is the innermost grouping there is. Clear it first, then work outwards through the brackets.
Figure. BODMAS is really an instruction to build this tree and then evaluate it from the leaves back to the root. The two leaves at the far right are one rank, so they are settled before the + they feed; the bracket is settled independently; only then does the − at the root fire. Nothing nearer the root can be evaluated until everything beyond it is a number.
How it works
- Clear the barAnything under a vinculum is evaluated before the bracket it sits inside.
- Brackets outwardsInnermost first: ( ), then { }, then [ ]. Never open two at once.
- Ranks, then left to rightOrders, then ÷ and × together, then + and − together — scanning left to right within each pair.
One line, three chances to slip
Simplify 24 ÷ 4 × 3 + 5 × 2 − (9 − 4).
- Bracket first: 9 − 45
- Left to right in the ÷ × rank: 24 ÷ 4 = 6, then 6 × 318
- The remaining product: 5 × 210
- 18 + 10 − 523
Pro tip. Row two is the whole question. Reading BODMAS as "division before multiplication" gives 24 ÷ (4 × 3) = 2 and a final answer of 7 — structurally tidy, completely wrong. The same trap runs in the last rank: 10 − 4 + 2 is 8, not 4, because subtraction and addition also tie and also run left to right.
36 ÷ 6 × 3 equals
- 2
- 18
- 6
Division and multiplication share one rank, so you scan left to right: 36 ÷ 6 = 6, then 6 × 3 = 18. Taking the D of BODMAS to mean division outranks multiplication gives 36 ÷ 18 = 2, which is the answer the acronym seems to promise and the reason this question is asked at all.
2Divisibility, and how to test a composite
The rules for 2, 4, 5, 8 and 10 read the tail of the number; the rules for 3 and 9 read its digit sum; the rule for 11 reads the alternating digit sum. For 918082 the odd places give 9 + 8 + 8 = 25 and the even places 1 + 0 + 2 = 3, and 25 − 3 = 22 is a multiple of 11 — so the number is, and indeed 918082 = 11 × 83462.
For a composite divisor there is no single rule, and the correct move is to split it into factors that are coprime. 72 = 8 × 9 works because 8 and 9 share no factor. 12 = 2 × 6 does not: 18 passes both those tests and is not a multiple of 12.
No diagram — every test reads digits: the tail for 2, 4, 5, 8 and 10, the digit sum for 3 and 9, the alternating sum for 11, coprime factors for a composite. The rules table beside this concept is the visual.
| Divisor | Test | Example |
|---|---|---|
| 2, 5, 10 | Last digit | 47952 ends in 2, so it is even |
| 4 | Last two digits form a multiple of 4 | 52 = 4 × 13, so 47952 passes |
| 8 | Last three digits form a multiple of 8 | 952 = 8 × 119, so 47952 passes |
| 3, 9 | Digit sum | 4+7+9+5+2 = 27, a multiple of 9 |
| 11 | Odd-place sum minus even-place sum | 918082: 25 − 3 = 22 |
| Composite | Split into coprime factors and test each | 72 = 8 × 9, 45 = 5 × 9, 12 = 3 × 4 |
Is 47952 a multiple of 72?
Decide without dividing by 72.
- 72 = 8 × 9, and gcd(8, 9) = 1test both
- Last three digits: 952 ÷ 8119, exact
- Digit sum: 4 + 7 + 9 + 5 + 2 = 27, and 27 ÷ 93, exact
- Both hold, so 72 divides it: 47952 ÷ 72666
Pro tip. The coprime condition is not a technicality. Split 72 as 6 × 12 and both tests can pass on a number that 72 does not divide, because 6 and 12 both re-use the factor 6 and between them guarantee only a multiple of lcm(6, 12) = 12. The number 12 itself passes both tests and is nowhere near a multiple of 72. Whenever you split a divisor, multiply your two factors back and check the product is the divisor itself, not something smaller.
A number is divisible by both 4 and 6. It must also be divisible by
- 24, since 4 × 6 = 24
- 12
- Neither 12 nor 24 is guaranteed
What two tests together guarantee is the LCM, not the product — and lcm(4, 6) = 12 because 4 and 6 share a factor of 2. Take 12 itself: divisible by 4, divisible by 6, not divisible by 24. Multiplying the two divisors is only safe when they are coprime, which is exactly why 72 is split as 8 × 9.
3Unit digits, and the cycle of four
The unit digit of a power depends on nothing but the unit digit of the base, and it repeats with a period of at most 4. Powers of 7 run 7, 9, 3, 1 and then start again; powers of 2 run 2, 4, 8, 6; powers of 4 and 9 have period 2; and 0, 1, 5 and 6 never change at all.
So reduce the exponent modulo 4 and read the cycle. The one thing to watch is a remainder of 0: an exponent that is an exact multiple of 4 lands on the fourth entry of the cycle, not the first.
Figure. Multiplying by 7 once more walks you one step round this loop, and after four steps you are back where you started. The exponent's remainder on division by 4 names the node — with the fourth node carrying remainder 0, which is the only place a candidate ever comes off this diagram wrong.
How it works
- Throw the base awayKeep only its unit digit; 17, 27 and 1237 all behave exactly like 7.
- Reduce the exponent mod 4Divide the exponent by 4 and keep the remainder, treating a remainder of 0 as 4.
- Read the cycleCount that many places along the base's cycle, starting from the first power.
A product of two large powers
Find the unit digit of 7⁹⁵ × 3⁵⁸.
- 95 ÷ 4 leaves 3; the cycle of 7 is 7, 9, 3, 17⁹⁵ ends in 3
- 58 ÷ 4 leaves 2; the cycle of 3 is 3, 9, 7, 13⁵⁸ ends in 9
- Multiply the two unit digits: 3 × 927
- Keep the unit digit of that7
Pro tip. You may multiply unit digits and take the unit digit of the product, because a carry only ever moves leftwards — nothing above the units column can reach back down into it. The same licence lets you add, so a question about the unit digit of 7⁹⁵ + 3⁵⁸ is answered from the very same two rows: 3 + 9 = 12, unit digit 2.
The unit digit of 2¹⁰⁰ is
- 2
- 4
- 6
The cycle of 2 is 2, 4, 8, 6 and 100 is an exact multiple of 4, so you land on the fourth entry, 6. Treating the remainder 0 as "start of the cycle" gives 2 and is the standard slip; 4 comes from reading the remainder as 2 instead of 0.
4Remainders, and the identity behind them
Dividend = Divisor × Quotient + Remainder, with the remainder always at least 0 and always less than the divisor. That identity is the whole subject: any statement about a remainder is a statement that a number has this form, and most remainder questions are solved by writing the number in that form and then re-dividing.
Remainders multiply and add just as the numbers do, provided you reduce again at the end. And a remainder may be taken negatively when that is smaller: 29 leaves 4 on division by 5, but treating it as −1 is quicker and gives the same answer.
Figure. The ticks are the multiples of 5, and 17 sits between two of them. The distance forward from 15 is the ordinary remainder, 2. The distance back from 20 is the negative remainder, −3, and the two always sum to the divisor. Either may be used in a calculation; pick whichever is smaller in size and convert at the end.
How it works
- Write the number out"Leaves 47 on division by 342" means the number is 342q + 47 for some whole q.
- Split by the new divisorIf the new divisor divides 342, the whole 342q term vanishes and only 47 survives.
- Reduce what is left47 is still bigger than 19, so divide once more: 47 = 19 × 2 + 9.
A remainder inside a remainder
A number leaves remainder 47 when divided by 342. What remainder does it leave when divided by 19?
- N = 342q + 47for some whole q
- 342 = 19 × 18, so 342q is a multiple of 19that term drops out
- 47 = 19 × 2 + 99
- Remainder on division by 199
Pro tip. The trick only works because 19 divides 342. If it did not — say the second divisor were 20 — the term 342q would leave a remainder that depends on q, and the question would have no unique answer. Before you drop the first term, check that the new divisor is a factor of the old one; that check is the question.
The remainder when 17 × 23 × 29 is divided by 5 is
- 24
- 4
- 0
Reduce each factor first: 17, 23 and 29 leave 2, 3 and 4. Their product is 24, and 24 must itself be reduced — 24 leaves 4 on division by 5. Stopping at 24 is the whole trap, and it fails the definition, since a remainder must be smaller than the divisor. Negative remainders are faster here: 2 × (−2) × (−1) = 4 straight away.
5Prime factorisation, and counting the factors
Write N = pᵃ qᵇ rᶜ. Any factor is built by choosing an exponent for each prime independently — anything from 0 to a for p, and so on — so the number of factors is (a+1)(b+1)(c+1). The same independence gives the sum of all the factors as a product of geometric series, one per prime.
Two consequences are worth carrying. Factors pair off around √N, so the count is odd exactly when N is a perfect square and its square root is left unpaired. And the number of ways of writing N as a product of two factors is therefore half the count, rounded up for a square.
Figure. For 360=2^3\cdot 3^2\cdot 5^1 each prime's exponent is chosen independently: 4 choices, 3 choices and 2 choices, so (3+1)(2+1)(1+1)=24 factors. The bars are the choice counts, not the primes.
How it works
- Factorise completelyStrip out 2s first, then 3s, then 5s; stop when the quotient is prime.
- Add one to each exponentThe extra choice is the exponent 0, which means leaving that prime out of the factor.
- Multiply the choicesEach combination of exponents is one distinct factor, so the counts multiply.
Everything about 360 from one factorisation
How many factors does 360 have, what do they add up to, and in how many ways can 360 be written as a product of two factors?
- 360 = 2³ × 3² × 5¹exponents 3, 2, 1
- Count = (3+1)(2+1)(1+1)24 factors
- Sum = (1+2+4+8)(1+3+9)(1+5) = 15 × 13 × 61170
- 360 is not a perfect square, so pairs = 24 ÷ 212 ways
Pro tip. The sum-of-factors row is not a separate formula to memorise; it is the same independence argument with the choices added instead of counted. Expand (1+2+4+8)(1+3+9)(1+5) mentally and every one of the 24 terms is a distinct factor of 360, which is why the product is their sum.
A positive integer has an odd number of factors. It must be
- A prime
- A perfect square
- An odd number
Factors come in pairs d and N/d, so the count is even unless one factor pairs with itself — which happens only when d = √N, i.e. when N is a perfect square. A prime has exactly two factors, an even count. And 36 is even with nine factors, so oddness of the number has nothing to do with it.
6Trailing zeroes in a factorial
A trailing zero is a factor of 10, and a factor of 10 is a 2 paired with a 5. Inside n! the 2s vastly outnumber the 5s — every second number contributes a 2 but only every fifth contributes a 5 — so the number of zeroes is simply the number of 5s available.
Count them in a ladder: ⌊n/5⌋ picks up one 5 from each multiple of 5, ⌊n/25⌋ picks up the second 5 that every multiple of 25 secretly carries, ⌊n/125⌋ the third, and so on until the term is zero. Forgetting the higher rungs is the only mistake this question ever tests.
Figure. Each floor division peels off another power of 5. Summing \lfloor 250/5\rfloor+\lfloor 250/25\rfloor+\lfloor 250/125\rfloor=62 counts the trailing zeroes in 250! — the 2s never run out first.
| Rung | 100! | 250! |
|---|---|---|
| ⌊n/5⌋ | 20 | 50 |
| ⌊n/25⌋ | 4 | 10 |
| ⌊n/125⌋ | 0 | 2 |
| Zeroes | 24 | 62 |
How many zeroes end 250! ?
Find the number of consecutive zeroes at the end of 250 factorial.
- ⌊250/5⌋50
- ⌊250/25⌋10
- ⌊250/125⌋2
- ⌊250/625⌋ = 0, so stop; total 50 + 10 + 262 zeroes
Pro tip. Read the rungs for what they mean rather than as a formula. The first row counts 5, 10, 15, … once each. The second row goes back and gives 25, 50, 75 … the extra 5 each of them was holding, and the third does the same for 125 and 250. That reading also tells you when to stop: the moment the divisor exceeds n.
The number of zeroes at the end of 30! is
- 6
- 7
- 5
⌊30/5⌋ = 6 counts one 5 each from 5, 10, 15, 20, 25 and 30 — but 25 = 5 × 5 carries a second one, which ⌊30/25⌋ = 1 picks up. Total 7. Stopping at the first rung gives 6 and is what the question is fishing for.
7The standard sums
Four results carry almost every series question at this level: 1 + 2 + ⋯ + n = n(n+1)/2, the sum of squares n(n+1)(2n+1)/6, the sum of cubes which is the square of the first result, and the sum of the first n odd numbers, which is exactly n².
None needs memorising blind. The first is the count of cells in a staircase, which is half a rectangle n by n+1; the third says the cubes add up to the square of the triangular number, so 1³ + 2³ + ⋯ + 10³ = 55² = 3025. What these are really for is subtraction: a sum over part of a range is the sum to the top minus the sum below the bottom.
Figure. The staircase holds 1 + 2 + 3 + 4 cells and sits inside a block 4 rows tall and 5 columns wide. The cells it leaves empty form the same staircase upside down, so the staircase is exactly half the block — which is n(n+1)/2, drawn rather than recalled. The +1 in the formula is the one extra column the staircase needs to be mirrored into.
The odd squares, by taking one sum from another
Find 1² + 3² + 5² + ⋯ + 19².
- All squares to 20: 20 × 21 × 41 / 62870
- Even squares: 2² + 4² + ⋯ + 20² = 4(1² + ⋯ + 10²)4 × 385 = 1540
- Odd squares = 2870 − 15401330
Pro tip. Row two is the move worth stealing. Every even square is 4 times a smaller square, so any sum over the even numbers collapses to 4 times a standard sum — and the odd ones are then free by subtraction. Trying to sum the odd squares directly needs a formula nobody carries into an exam hall.
1 + 2 + 3 + ⋯ + 100 equals
- 5000
- 5050
- 10100
n(n+1)/2 = 100 × 101 / 2 = 5050. Reading it as n²/2 gives 5000 — plausible, and out by exactly the 50 that the +1 contributes. 10100 is n(n+1) with the halving forgotten, which is the full rectangle rather than the staircase.
8Rationals, irrationals and recurring decimals
A rational number is one that can be written p/q with q ≠ 0, and its decimal either stops or repeats forever in a block. An irrational cannot, and its decimal never settles into a block — √2, π and e are the standard examples, and 22/7 is not one of them however often it stands in for π.
Which rationals stop? Put the fraction in lowest terms and look at the denominator: if its only prime factors are 2 and 5 the decimal terminates, because you can scale it into a power of ten. 7/40 terminates at 0.175; 7/30 cannot, because of the 3.
Going the other way, a repeating block of k digits becomes that block over k nines, and digits before the block are handled by putting the same count of zeroes after the nines and subtracting off the non-repeating part.
Figure. The split at the root is total: every real number is on one side or the other, and the decimal expansion decides which. Integers are rationals with denominator 1, so they sit on the rational branch and not beside it — a question asking whether an integer is rational is asking whether you have read this tree correctly.
Two recurring decimals, added
Write 0.1666… and 0.363636… as fractions and add them.
- 0.16̄ = (16 − 1)/90 = 15/901/6
- 0.3̄6̄ = 36/994/11
- 1/6 + 4/11 = 11/66 + 24/6635/66
- Check: 35 ÷ 660.5303… = 0.1666… + 0.3636…
Pro tip. The 90 in row one is not arbitrary: one nine for the single repeating digit, one zero for the single non-repeating digit after the point. Two repeating and one fixed would give 990. And always do the check in the last row — dividing back out catches a mis-set denominator in five seconds, which is cheaper than getting the question wrong.
Which of these has a terminating decimal expansion?
- 7/40
- 7/30
- 7/33
40 = 2³ × 5, so 7/40 scales to 175/1000 = 0.175 and stops. 30 = 2 × 3 × 5 and 33 = 3 × 11 both carry a prime other than 2 or 5, so both recur. The test is on the denominator only, and only after the fraction is in lowest terms — 6/15 looks like a recurring case until you cancel it to 2/5, which stops at 0.4.
Notes
- BODMAS Order of Operations: Simplify strictly in the order Brackets, Orders (powers/roots), Division, Multiplication, Addition, Subtraction; the bar (vinculum) is treated as the innermost bracket, e.g. 2+3\times4 = 2+12 = 14, not 20.
- Divisibility Rule for 11: A number is divisible by 11 if the difference between the sum of digits in odd places and the sum in even places is 0 or a multiple of 11; e.g. for 918082, (9+8+8)-(1+0+2)=22, divisible by 11.
- Unit-Digit Cyclicity: The unit digit of a^n repeats in cycles of at most 4; for example powers of 7 cycle 7,9,3,1, so 7^{22} has unit digit given by 22 \bmod 4 = 2 \Rightarrow 9.
- Number of Trailing Zeroes in n!: Equals the number of times 5 divides n!, computed as \left\lfloor\frac{n}{5}\right\rfloor+\left\lfloor\frac{n}{25}\right\rfloor+\cdots; for 100! this is 20+4=24 zeroes.
- Rational vs Irrational: A rational number can be written as \frac{p}{q} with q\neq0 and has a terminating or repeating decimal, while irrationals like \sqrt{2} have non-terminating, non-repeating decimals.
Formulas
- Sum of first n natural numbers: \sum_{k=1}^{n} k = \frac{n(n+1)}{2}
- Sum of squares: \sum_{k=1}^{n} k^2 = \frac{n(n+1)(2n+1)}{6}
- Sum of cubes: \sum_{k=1}^{n} k^3 = \left(\frac{n(n+1)}{2}\right)^2
- Number of factors of N = p^a q^b r^c: (a+1)(b+1)(c+1)
- Recurring decimal to fraction: 0.\overline{ab} = \frac{ab}{99} and 0.a\overline{b} = \frac{ab-a}{90}
- Division identity: \text{Dividend} = \text{Divisor}\times\text{Quotient} + \text{Remainder}
Exam traps & shortcuts
- For unit-digit questions on a^n, only the unit digit of a matters; reduce the exponent modulo 4 (using 4 when remainder is 0) to pick from the cyclicity table instantly.
- To test divisibility by a composite like 72, split into co-prime factors 8 and 9 and check both rules separately rather than dividing directly.
- In BODMAS simplification, convert mixed fractions to improper form first and simplify the vinculum/bar innermost outward to avoid sign errors.
Reference tables
Read the exponent's remainder on division by 4 along the top, remembering that a remainder of 0 selects the last column. The bases 0, 1, 5 and 6 keep their own digit at every power and never need this table.
| Base ends in | n ≡ 1 | n ≡ 2 | n ≡ 3 | n ≡ 0 |
|---|---|---|---|---|
| 2 | 2 | 4 | 8 | 6 |
| 3 | 3 | 9 | 7 | 1 |
| 4 | 4 | 6 | 4 | 6 |
| 7 | 7 | 9 | 3 | 1 |
| 8 | 8 | 4 | 2 | 6 |
| 9 | 9 | 1 | 9 | 1 |
Every line here should be reconstructible from the concept above it, not merely recalled.
| Quantity | Relation | Watch for |
|---|---|---|
| Order of operations | B, O, then ÷ × together, then + − together | Ties are broken left to right, not by the acronym |
| Divisibility by 11 | Odd-place sum − even-place sum is 0 or a multiple of 11 | Count places from either end, consistently |
| Composite divisor | Split into coprime factors and test each | 8 × 9 for 72; never 6 × 12 |
| Unit digit | Reduce the exponent mod 4, read the cycle | Remainder 0 means the fourth entry |
| Division identity | Dividend = Divisor × Quotient + Remainder | 0 ≤ Remainder < Divisor, always |
| Number of factors | N = pᵃqᵇrᶜ gives (a+1)(b+1)(c+1) | Odd count means N is a perfect square |
| Sum of factors | (1+p+⋯+pᵃ)(1+q+⋯+qᵇ)⋯ | Same independence, added instead of counted |
| Trailing zeroes of n! | ⌊n/5⌋ + ⌊n/25⌋ + ⌊n/125⌋ + ⋯ | The higher rungs, every time |
| Sum of naturals | n(n+1)/2 | Half a rectangle, not n²/2 |
| Sum of squares | n(n+1)(2n+1)/6 | Even squares are 4 × a smaller sum |
| Sum of cubes | (n(n+1)/2)² | The square of the triangular number |
| Recurring decimal | Repeating block over as many 9s; a 0 per fixed digit | Reduce the fraction before judging termination |
Recap
Read only this the night before.
- BODMAS
- Four ranks, not six. ÷ and × tie; + and − tie; ties run left to right. The bar beats the bracket.
- Divisibility
- 11 is the alternating digit sum. For a composite, split into coprime factors — 72 = 8 × 9, and multiply your split back to check it.
- Unit digits
- Only the base's last digit matters and the cycle is at most 4 long. Exponent divisible by 4 lands on the last entry, never the first.
- Remainders
- Write N = dq + r and re-divide. Reduce factors before multiplying, then reduce again. Negative remainders are legal and usually faster.
- Factors
- Factorise, add one to each exponent, multiply. Odd count means perfect square. n! ends in ⌊n/5⌋ + ⌊n/25⌋ + ⋯ zeroes.
- Sums
- n(n+1)/2, n(n+1)(2n+1)/6, and cubes are the first one squared. Part of a range is one sum minus another.
Practise Number System & Simplification
Reading is free and needs no account. Practice, mocks and progress live in the app.
- 279 exam-style questions on this topic, with explanations
- A 5-question practice set that ends the chapter
- Timed mocks scored with the real marking scheme
- Readiness tracked per topic, kept on your device