Mathematical Operations for RRB Group D — Symbol Substitution & Number Patterns

beginner 18 min read

Concept

Mathematical Operations in reasoning is actually two things stitched together, and RRB Group D tests both:

Type 1 — Symbol Substitution: The question swaps the standard arithmetic symbols (+, -, ×, ÷) with non-standard ones. You're told the substitution key, you swap back, then solve using normal BODMAS. Example: "If + means ÷ and ÷ means -, find 40 + 8 ÷ 3." The math itself is not hard — the trap is forgetting to apply proper order of operations after substitution.

Type 2 — Number Pattern Recognition: A sequence of numbers follows a hidden rule — could be squares, doubles-plus-increment, Fibonacci, or a formula like 2n². You identify the rule, then apply it to find the missing term.

Think of it like this: Symbol substitution is a translation exercise. You're given a coded language (the swapped symbols), told the decoder ring (the substitution table), and asked to translate back into normal arithmetic. The only skill being tested is careful translation + BODMAS discipline.

Number patterns are slightly more creative — they test whether you can spot the underlying generator formula quickly. But here's the key insight for RRB Group D: the patterns are never exotic. You'll almost always see one of about six standard templates (perfect squares, 2n², powers of 2 minus 1, Fibonacci, arithmetic progressions, or "multiply by 2 and add increasing integers"). Memorise those six and you cover the vast majority of questions.

The analogy that works: symbol substitution is like reading a railway route map where stations are renamed — you just look up the real name and use your existing knowledge of the route. Number patterns are like recognising a raga — once you've heard the sequence enough times, you know what comes next before the musician plays it.

Where RRB Group D candidates lose marks: they rush the substitution step and carry the wrong sign into the calculation. Slow down for exactly 5 seconds on the substitution. The arithmetic after that is trivial.


Deep Dive

Type 1: Symbol Substitution — The Exact Process

You will be given a substitution table like:

| Symbol in question | Actual operation | |--------------------|-----------------| | + | ÷ | | - | × | | × | + | | ÷ | - |

The question then gives you an expression like: 40 - 2 + 4 × 6 ÷ 3

Step 1 — Rewrite with actual operations. Go symbol by symbol. Do not skip this step mentally — write it out on your rough sheet.

40 - 2 + 4 × 6 ÷ 3 becomes: 40 × 2 ÷ 4 + 6 - 3

Step 2 — Apply BODMAS strictly. BODMAS: Brackets → Orders (powers) → Division → Multiplication → Addition → Subtraction.

40 × 2 ÷ 4 + 6 - 3

Division and multiplication have equal precedence — go left to right: 40 × 2 = 8080 ÷ 4 = 20

Now: 20 + 6 - 3 = 23

Answer: 23

The trap here is doing 40 × (2 ÷ 4) instead of left-to-right. Many candidates get 40 × 0.5 = 20 and still land on 23 by accident in this case — but a slightly different expression would break that. Always go strictly left-to-right for same-precedence operations.

Type 2: Number Pattern Recognition — The Six Templates

Learn these cold. Most RRB Group D number operation questions map to one of these:

Template 1 — Perfect Squares () 1, 4, 9, 16, 25, 36... where n = 1, 2, 3... Recognition trigger: differences are 3, 5, 7, 9... (consecutive odd numbers).

Template 2 — Double Squares (2n²) 2, 8, 18, 32, 50, 72...2n² Recognition trigger: differences are 6, 10, 14, 18... (increasing by 4 each time).

Template 3 — Powers of 2 Minus 1 (2ⁿ - 1) 3, 7, 15, 31, 63, 127... → each term = previous term × 2 + 1. Recognition trigger: each term is roughly double the previous.

Template 4 — Fibonacci-style (each term = sum of previous two) 1, 1, 2, 3, 5, 8, 13, 21... Recognition trigger: small numbers, not doubling but growing moderately. Check: does term₃ = term₁ + term₂?

Template 5 — Multiply by 2 and Add Incrementally 6, 13, 28, 59, 122, 249...term × 2 + 1, term × 2 + 2, term × 2 + 3... Recognition trigger: roughly doubles each time but not exactly.

Template 6 — Sum of Squares (a² + b²) Used in the coded-equation type: 3 + 4 = 25 because 3² + 4² = 9 + 16 = 25. Recognition trigger: the result is way larger than a normal sum or product.

Coded Equation Questions (Hybrid Type)

Sometimes the question says "if 3 + 4 = 25, 5 + 6 = 61, find 9 + 10." This is not symbol substitution — it's a hidden formula question. The + symbol here represents a custom operation, not the standard one and not a simple swap.

Your approach: test the three most common hidden formulas in order:

  1. a² + b² → check: 3² + 4² = 9 + 16 = 25. Yes, matches. Confirmed.
  2. If that fails, try (a + b)² - something.
  3. If that fails, try a × b + (a + b).

Once you confirm the formula on the given examples, apply it to the target pair.

For 9 + 10: 9² + 10² = 81 + 100 = 181. Done.


Memory Tricks & Shortcuts

patternSWAP-THEN-BODMAS Protocol

Write the substitution as a two-column table on your rough sheet before touching the expression. Then rewrite the entire expression underneath with substituted symbols. Never try to hold the swapped symbols in your head while computing.

Example: for a 5-symbol expression, this takes 8 seconds to write out but saves the 15 seconds you'd waste catching an error midway.

Standard method (mental substitution + calculation together): ~45 seconds with one error risk. SWAP-THEN-BODMAS (write substitution first, then compute): ~25 seconds, near-zero error rate.

patternDifference-of-Differences for Series

When you see a number series you don't recognise, write the first differences (term₂ - term₁, term₃ - term₂, etc.) below the series. If those differences are constant → arithmetic progression. If the second differences are constant → quadratic sequence (likely or 2n² family). If terms roughly double → powers of 2 family.

Example for 2, 8, 18, 32, 50: First differences: 6, 10, 14, 18 — not constant. Second differences: 4, 4, 4 — constant. Quadratic. Test 2n²: 2(1)=2, 2(4)=8, 2(9)=18. Confirmed.

Step count: standard (guess-and-check formulas): 4-5 tries. Difference-of-differences: 2 lines, confirms in under 20 seconds.

patternFibonacci Finger-Check

For any series that looks like it might be Fibonacci-type, take three consecutive terms and check: does the middle one = sum of the two flanking it? No — does the third = sum of the first two? That's the Fibonacci check.

For 1, 1, 2, 3, 5, 8: check 2 = 1 + 1 (yes), 3 = 1 + 2 (yes). Confirmed in 3 seconds. If confirmed, the next term = last two terms added: 8 + 5 = 13.

Standard method (look for ratio or formula): ~30 seconds. Finger-check: ~5 seconds.

substitutionSum-of-Squares First Guess for Coded Equations

When a question says a + b = [large number far from a+b] and gives 2-3 examples, your first test should always be a² + b². This covers roughly 60% of RRB-level coded equation questions.

Check: 3 + 4 = 253² + 4² = 25. One check is often enough because the second example (5 + 6 = 61, since 25 + 36 = 61) will confirm without extra work.

Standard method (test multiple formulas systematically): 4-5 tests, ~40 seconds. Sum-of-squares first: confirmed or ruled out in 2 tests, ~12 seconds.

patternPowers-of-2 Doubling Check

For series like 3, 7, 15, 31, 63, add 1 to each term: 4, 8, 16, 32, 64. These are 2², 2³, 2⁴, 2⁵, 2⁶. So the series is 2ⁿ - 1. The next term: 2⁷ - 1 = 128 - 1 = 127.

The trick: whenever a series "almost doubles" each time but not quite, add 1 (or subtract 1) to each term and check if you get clean powers of 2.

Standard method (test ratio formula): ~35 seconds. Add-1 trick: ~10 seconds.


Fast-Solving Framework

In the exam hall, classify the question type in the first 5 seconds:

Is it symbol substitution? (You see a substitution table like "+ means ÷") → Write substitution table on rough sheet (5 sec) → Rewrite the expression (5 sec) → Apply BODMAS left-to-right (10 sec) → Done in ~20 sec.

Is it a number series? (Just a sequence of numbers) → Write first differences → Are they constant? Arithmetic progression. Are second differences constant? Square-family. Do terms roughly double? Power-of-2 family. Does term = sum of previous two? Fibonacci. → Apply confirmed formula → Done in ~25 sec.

Is it a coded equation? ("a + b = [big number]" with 2 examples) → Test a² + b² first (5 sec) → If that fails, test (a+b)² minus something (5 sec) → If that fails, test a×b + (a+b) (5 sec) → Apply confirmed formula → Done in ~20 sec.

Never spend more than 60 seconds on any single question. If you haven't cracked the pattern in two attempts, mark your best guess, flag it, and return after finishing the rest of the section.


Solved PYQs

Why this question: The core symbol-substitution template for RRB Group D — tests whether you apply BODMAS after substituting, not before.

Previous Year Questionपिछले वर्ष का प्रश्न
If + means ÷, - means ×, × means +, and ÷ means -, then what is 40 - 2 + 4 × 6 ÷ 3?
यदि + का मतलब ÷ है, - का मतलब × है, × का मतलब + है, और ÷ का मतलब - है, तो 40 - 2 + 4 × 6 ÷ 3 का मान क्या होगा?
  1. 23
  2. 25
  3. 27
  4. 29
  1. 23
  2. 25
  3. 27
  4. 29
Solutionसमाधान
Substituting the operations: 40 × 2 ÷ 4 + 6 - 3 = 80 ÷ 4 + 6 - 3 = 20 + 6 - 3 = 26 - 3 = 23. Following the order of operations after substitution.
संकेतों को बदलने पर: 40 × 2 ÷ 4 + 6 - 3 = 80 ÷ 4 + 6 - 3 = 20 + 6 - 3 = 26 - 3 = 23।

Solving path: Write the substitution table: - becomes ×, + becomes ÷, × becomes +, ÷ becomes -. Rewrite: 40 × 2 ÷ 4 + 6 - 3. Apply left-to-right for equal-precedence operations: 40 × 2 = 80, 80 ÷ 4 = 20. Then: 20 + 6 - 3 = 23.


Why this question: The coded-equation type — tests whether you can spot a² + b² as the hidden operation from two given examples.

Previous Year Questionपिछले वर्ष का प्रश्न
If 3 + 4 = 25, 5 + 6 = 61, 7 + 8 = 113, then 9 + 10 = ?
यदि 3 + 4 = 25, 5 + 6 = 61, 7 + 8 = 113 है, तो 9 + 10 = ?
  1. 181
  2. 171
  3. 191
  4. 201
  1. 181
  2. 171
  3. 191
  4. 201
Solutionसमाधान
The pattern is (a+b)² + (a×b): For 3+4: (7)²+12=49+12=61. Wait, let me recalculate: 3+4=7, and result is 25. Actually the pattern is (a+b)²-2(a+b)+2ab. Let me try: a²+b²+2ab-2a-2b+2ab = a²+b²+4ab-2a-2b. For 9+10: 81+100+360-18-20=503. This doesn't match. Let me try another approach: (3+4)²-2=49-2=47≠25. Actually, 3²+4²=9+16=25. So pattern is a²+b². For 9+10: 9²+10²=81+100=181.
पैटर्न a²+b² है: 3²+4²=9+16=25, 5²+6²=25+36=61, 7²+8²=49+64=113। अतः 9²+10²=81+100=181।

Solving path: Look at 3 + 4 = 25. Test 3² + 4² = 9 + 16 = 25. Confirmed. Verify on second example: 5² + 6² = 25 + 36 = 61. Confirmed. Apply to target: 9² + 10² = 81 + 100 = 181.


Why this question: The "double-and-add" series template — tests if you spot that the series isn't clean powers of 2 but has an additive increment.

Previous Year Questionपिछले वर्ष का प्रश्न
Find the missing number: 6, 13, 28, 59, ?, 249
लुप्त संख्या ज्ञात कीजिए: 6, 13, 28, 59, ?, 249
  1. 122
  2. 118
  3. 120
  4. 124
  1. 122
  2. 118
  3. 120
  4. 124
Solutionसमाधान
The pattern is 2n²+n+1: For n=2: 2(4)+2+1=11≠13. Let me try 3n²-2n+2: For n=2: 3(4)-4+2=14≠13. Actually, let me check: 6×2+1=13, 13×2+2=28, 28×2+3=59, 59×2+4=122, 122×2+5=249. So the pattern is multiply by 2 and add increasing numbers.
पैटर्न है पिछली संख्या को 2 से गुणा करके बढ़ती संख्याएं जोड़ना: 6×2+1=13, 13×2+2=28, 28×2+3=59, 59×2+4=122।

Solving path: Check if terms roughly double: 6×2=12≠13. So it's not clean doubling. Try term×2 + increment: 6×2+1=13 (yes), 13×2+2=28 (yes), 28×2+3=59 (yes), 59×2+4=122 (yes). Next check: 122×2+5=249 (yes). Missing term is 122.


Why this question: The 2ⁿ - 1 series — tests the "add 1 and check powers of 2" trick directly.

Previous Year Questionपिछले वर्ष का प्रश्न
Find the next term: 3, 7, 15, 31, 63, ?
अगला पद ज्ञात कीजिए: 3, 7, 15, 31, 63, ?
  1. 127
  2. 125
  3. 129
  4. 131
  1. 127
  2. 125
  3. 129
  4. 131
Solutionसमाधान
The pattern is 2ⁿ - 1: 2² - 1 = 3, 2³ - 1 = 7, 2⁴ - 1 = 15, 2⁵ - 1 = 31, 2⁶ - 1 = 63, 2⁷ - 1 = 127. Each term is one less than a power of 2.
पैटर्न 2ⁿ - 1 है: 2² - 1 = 3, 2³ - 1 = 7, 2⁴ - 1 = 15, 2⁵ - 1 = 31, 2⁶ - 1 = 63, 2⁷ - 1 = 127। प्रत्येक पद 2 की घात से 1 कम है।

Solving path: Add 1 to each term: 4, 8, 16, 32, 64. These are 2², 2³, 2⁴, 2⁵, 2⁶. Pattern is 2ⁿ - 1. Next term: 2⁷ - 1 = 128 - 1 = 127.


Why this question: Fibonacci is a guaranteed template that appears across RRB and SSC exams — recognise it by the three-term check.

Previous Year Questionपिछले वर्ष का प्रश्न
What comes next in the sequence: 1, 1, 2, 3, 5, 8, ?
इस श्रृंखला में आगे क्या आएगा: 1, 1, 2, 3, 5, 8, ?
  1. 11
  2. 13
  3. 15
  4. 12
  1. 11
  2. 13
  3. 15
  4. 12
Solutionसमाधान
This is the Fibonacci series where each number is the sum of the two preceding numbers: 1+1=2, 1+2=3, 2+3=5, 3+5=8, 5+8=13. The next number is 13.
यह फिबोनाची श्रृंखला है जहाँ प्रत्येक संख्या पिछली दो संख्याओं का योग है: 1+1=2, 1+2=3, 2+3=5, 3+5=8, 5+8=13।

Solving path: Check if each term = sum of previous two: 1+1=2 (yes), 1+2=3 (yes), 2+3=5 (yes), 3+5=8 (yes). Fibonacci confirmed. Next term: 5+8=13.


Common Mistakes


Related Topics

Practice on SarkariRise

Sign up + get 3 free mocks →