By the end of this chapter you'll be able to…

  • 1Distinguish face value from place value and classify numbers correctly (natural, whole, integer, rational, prime, composite)
  • 2Apply divisibility rules for 2, 3, 4, 5, 6, 8, 9 and 11 without performing full division
  • 3Find the unit digit of any power using cycle position (exponent mod 4)
  • 4Simplify nested-bracket expressions correctly using strict BODMAS order
  • 5Apply RRB NTPC's guessing threshold correctly for 4-option questions under 1/3 negative marking
💡
Why this chapter matters in RRB NTPC
Number System questions are among the fastest points available in CBT 1 — every question type resolves in under 30 seconds once the underlying rule (a divisibility test, a cyclicity pattern, BODMAS order) is automatic recall rather than something re-derived under time pressure.

Number System — RRB NTPC Mathematics

Number System carries roughly 8% of Mathematics's 30 questions (see docs/exam-briefs/rrb-ntpc-2026-brief.md for CBT 1's overall structure — 100 questions, 90 minutes, +1/−1/3 marking). Every question type in this chapter can be solved in under 30 seconds once the underlying rule is automatic.


1. What RRB NTPC actually asks

Number System questions in CBT 1 typically test: place value versus face value, classification of numbers (natural, whole, integer, rational), divisibility rules, identifying prime numbers, unit-digit cyclicity of powers, basic remainder problems, and BODMAS-based simplification. Nothing here demands more than a clean, memorised rule applied carefully — the difficulty is almost entirely in avoiding a careless slip under time pressure, not in the underlying concept.


2. Place value and face value

The face value of a digit is the digit itself, regardless of position. The place value is the face value multiplied by the value of the position it occupies (units, tens, hundreds, and so on).

In the number 6,472: the face value of 7 is 7; the place value of 7 is 7 × 10 = 70. Face value and place value are identical only for a digit in the units place.


3. Number classification

SetDefinitionExamples
Natural numbersCounting numbers starting from 11, 2, 3, ...
Whole numbersNatural numbers plus zero0, 1, 2, 3, ...
IntegersWhole numbers plus negatives..., −2, −1, 0, 1, 2, ...
Rational numbersExpressible as p/q, q ≠ 01/2, −3, 0.75
Irrational numbersNot expressible as p/q√2, π
Prime numbersExactly two distinct factors: 1 and itself2, 3, 5, 7, 11
Composite numbersMore than two factors4, 6, 8, 9

2 is the only even prime number — every other even number is divisible by 2 and therefore has at least three factors (1, 2, itself). 1 is neither prime nor composite, since a prime requires exactly two distinct factors and 1 has only one.


4. Divisibility rules

DivisorRule
2Last digit is even (0, 2, 4, 6, 8)
3Sum of digits divisible by 3
4Last two digits form a number divisible by 4
5Last digit is 0 or 5
6Divisible by both 2 and 3
8Last three digits form a number divisible by 8
9Sum of digits divisible by 9
11Difference between the sum of digits in odd positions and even positions is 0 or divisible by 11

These rules answer "is X divisible by Y" without performing the division — the entire point is speed, so they are worth memorising cold rather than re-derived.


5. Unit digit cyclicity

The unit digit of any power follows a repeating cycle of at most 4. To find the unit digit of a^b: find the unit digit's own cycle (compute a^1, a^2, a^3, a^4 and note the unit digits repeat from there), then take b mod 4 (using 4 instead of 0) to pick the position in that cycle.

For example, powers of 7 cycle through unit digits 7, 9, 3, 1 (for exponents 1, 2, 3, 4) and then repeat. To find the unit digit of 7^123: 123 mod 4 = 3, so the answer is the third value in the cycle, which is 3.


6. Simplification (BODMAS)

Evaluate in this strict order: Brackets, Of, Division, Multiplication, Addition, Subtraction. Division and multiplication are evaluated left to right as they appear (division does not automatically come before multiplication if multiplication appears first in the expression), and the same applies to addition and subtraction.


Worked examples

Question 1 of 2

Q1. What is the unit digit of 7¹²³?

Pick an option to check your answer.

Show explanation

Solution. Powers of 7 cycle through unit digits 7, 9, 3, 1 for exponents 1, 2, 3, 4, then repeat. 123 mod 4 = 3, so the unit digit matches the 3rd position in the cycle, which is 3.

(a) would be correct only if 123 mod 4 were 0 (i.e., exponent a multiple of 4). (c) is the unit digit for exponent 1 or 5, not 123. (d) is the unit digit for exponent 2 or 6. Answer: (b).

Question 2 of 2

Q2. Simplify: 45 + [10 − {6 − (5 − 3)}]

Pick an option to check your answer.

Show explanation

Solution. Work from the innermost bracket outward. (5 − 3) = 2. Then {6 − 2} = 4. Then [10 − 4] = 6. Finally, 45 + 6 = 51.

A common error is resolving brackets in the wrong order or misreading which bracket nests inside which — always start from the innermost parentheses and work outward, one layer at a time. Answer: (c).


8. Common traps

  • Confusing face value with place value. Face value never changes with position; place value depends entirely on it.
  • Treating 1 as prime. A prime number must have exactly two distinct factors — 1 has only one, so it is excluded by definition.
  • Getting the unit-digit cycle position wrong when the exponent is an exact multiple of 4. Use 4, not 0, as the cycle position in that case (e.g., for exponent 4, 8, 12, use position 4 of the cycle, not position 0).
  • Resolving nested brackets out of order. Always start from the innermost bracket and work outward.
  • Applying division before multiplication automatically. Both are evaluated strictly left to right in the order they appear in the expression, not division-always-first.

9. Guessing strategy

With RRB NTPC's 1/3 negative marking and zero penalty for skipping (see docs/exam-briefs/rrb-ntpc-2026-brief.md), a blind guess among 4 options has an expected value of −0.083 marks — worse than skipping. Only guess once you've eliminated at least one option, which brings the odds to break-even or better; a divisibility check or a quick parity check is often enough to eliminate one or two options in seconds even without solving the question fully.


Summary

  • Number System is roughly 8% of Mathematics's 30 questions in CBT 1.
  • Face value is the digit itself; place value is face value × positional weight — identical only in the units place.
  • 2 is the only even prime; 1 is neither prime nor composite.
  • Divisibility rules for 2, 3, 4, 5, 6, 8, 9, and 11 should be automatic recall, not re-derived.
  • Unit-digit cyclicity repeats every 4 powers — use the exponent mod 4 (treating a result of 0 as position 4) to find the position.
  • BODMAS order is strict, but division/multiplication and addition/subtraction within their tiers go strictly left to right.
  • A blind 4-option guess has negative expected value under RRB NTPC's marking scheme — only guess after eliminating at least one option.

Key formulas & results

Everything to memorise for the exam hall, in one card. Screenshot this for revision.

Place value
place value = face value × (positional weight: 1, 10, 100, ...)
Equal to face value only in the units place.
Unit digit cyclicity
unit digit of a^b = (unit digit cycle of a)[b mod 4, using 4 instead of 0]
Every base's unit digit cycle repeats after at most 4 powers.
Divisibility by 11
(sum of digits at odd positions) − (sum of digits at even positions) is 0 or a multiple of 11
Count positions from the right.
BODMAS order
Brackets, Of, Division/Multiplication (left to right), Addition/Subtraction (left to right)
Division and multiplication are not always in that order — whichever appears first, left to right, is evaluated first.
⚠️

Traps RRB NTPC sets — and how to dodge them

These are the exact option-traps and misreads that cost marks under negative marking.

WATCH OUT
Confusing face value with place value
Face value never changes with position; place value is face value multiplied by the positional weight — they're equal only in the units place.
WATCH OUT
Treating 1 as a prime number
A prime number needs exactly two distinct factors; 1 has only one factor (itself), so it is excluded by definition — memorise 2 as the smallest and only even prime.
WATCH OUT
Using exponent mod 4 = 0 as the cycle position directly
When the exponent is an exact multiple of 4, use position 4 of the cycle, not position 0 — there is no 'zeroth' position.
WATCH OUT
Resolving nested brackets from the outside in
Always start from the innermost bracket and work outward, one layer at a time.

Exam-pattern practice

PYQ-style questions with full solutions. Work through them as a readiness check — mark yourself honestly and get your gap report at the end.

Readiness check

Are you exam-ready for Number System?

8 problems from this chapter. Try each one, reveal the worked solution, mark yourself honestly — get your gap report at the end.

8 questions~6 min

5-minute revision

The whole chapter, distilled. Read this the night before the exam.

  • Number System is roughly 8% of Mathematics's 30 CBT 1 questions.
  • Face value never changes with position; place value = face value × positional weight, equal only in the units place.
  • 2 is the only even prime; 1 is neither prime nor composite.
  • Divisibility rules for 2, 3, 4, 5, 6, 8, 9 and 11 should be automatic recall.
  • Unit-digit cycles repeat every 4 powers — use exponent mod 4, treating a result of 0 as position 4.
  • BODMAS: brackets innermost-out first, then division/multiplication left to right, then addition/subtraction left to right.
  • A blind 4-option guess has negative expected value under 1/3 negative marking — eliminate at least one option before guessing.

RRB NTPC question blueprint

How this topic is asked, tier by tier — so you can prep to the pattern.

Typical weightage: Roughly 8% of Mathematics's 30 questions in CBT 1 (each worth +1/−1/3)

Question styleMarks eachTypical countWhat it tests
Number classification1~1Identifying primes, composites, and number-set membership
Place value1~1Distinguishing face value from place value
Divisibility1~1Applying divisibility rules without full division
Unit digit cyclicity1~1Finding the unit digit of a large power
Simplification1~1Strict BODMAS order on nested-bracket expressions
Prep strategy
  • First pass: memorise the divisibility rules table and the unit-digit cycles for bases 2 through 9 until instant recall.
  • Second pass: drill nested-bracket BODMAS problems specifically, since bracket-order errors are the most common mistake in this topic.
  • Final pass: time yourself on a 10-question mixed set, targeting well under 40 seconds per question.

Exam-hall strategy

Battle-tested tips from mentors and toppers for this topic under the sectional clock.

  1. Treat divisibility rules and unit-digit cycles as flashcard-level recall, not something to re-derive during the exam.
  2. For BODMAS questions, write out each bracket's resolved value step by step rather than trying to track multiple nested layers mentally.
  3. Use a quick parity or divisibility check to eliminate at least one option before ever attempting a blind guess.

Beyond the exam

Where this skill shows up in the job you're competing for — and in life.

Computing and cryptography

Divisibility rules and modular arithmetic (the same logic behind unit-digit cyclicity) underpin checksum algorithms, hashing, and cryptographic key generation.

Everyday billing and estimation

Quick divisibility checks are used constantly in splitting bills, verifying change, and sanity-checking calculations without a calculator.

Where else this topic is tested

Prepare once, score in every exam that asks it.

SSC CGL / CHSL Quantitative AptitudeVery high overlap — number system fundamentals are core to nearly every government competitive exam's quant section
Bank PO / Clerk Quantitative AptitudeHigh overlap in divisibility, unit digits and simplification question types
RRB Group D MathematicsNear-identical syllabus and difficulty level, given both are RRB-conducted exams

Questions aspirants ask

Pulled from the Q&A community and mentor sessions.

Memorise them. Deriving a divisibility rule from scratch under a 90-minute, 100-question time budget costs more time than the rule saves — these are worth having completely automatic.

Find the base's own 4-term unit-digit cycle once (by computing the base raised to powers 1 through 4), then take the exponent mod 4 (using 4 in place of a result of 0) to read off the position directly — no need to compute the full power.

Neither. A prime number requires exactly two distinct factors, and 1 has only one factor (itself) — this exclusion is what keeps prime factorisation unique for every other integer.

Given 100 questions in 90 minutes across all three sections, aim for under 30-40 seconds per question here — these are typically the fastest points on the paper once the underlying rule is memorised.
Header Logo