Average for SSC CGL — Concept, Tricks, and PYQ Solutions

beginner 18 min read

Concept

Average is the central value of a group — the single number that would replace every item in a set without changing their total. Formally:

Average=Sum of all itemsNumber of items\text{Average} = \frac{\text{Sum of all items}}{\text{Number of items}}

Think of it like distributing water equally into containers. You have 5 containers holding different amounts. Pour them all into one tank, then split equally back into 5 — each now holds the average amount. The total water never changed.

This single idea drives every average question on SSC CGL:

Here's why average problems feel easy but trap candidates: the formula is simple, but questions layer two or three group changes on top of each other. The examiner doesn't want to see if you know the formula — they want to see if you can track the total sum correctly under pressure.

Analogy: Imagine a class where everyone has to "donate" marks to a common pool and take back an equal share. If one student with unusually high marks is removed, everyone gets a smaller share. Your job in most SSC questions is to find exactly how high (or low) that one outlier's marks were.

The core principle you must internalize:

When the average increases or decreases after a change, the difference in totals tells you what was added or removed. This is the backbone of the "teacher's age," "new member joins," and "one number excluded" question families — which together account for a large share of SSC CGL average questions.


Deep Dive

The Sum-First Rule

Never work with the average directly in multi-group problems. Always convert to sums immediately.

Sum=Average×Count\text{Sum} = \text{Average} \times \text{Count}

Then add or subtract sums, and divide by the new count. This is the one habit that prevents every calculation error in this topic.

Type 1: One Member Added or Removed

Standard structure: Average of n items is A. One item is added/removed and the new average is A'. Find the added/removed item.

Formula: Item=New SumOld Sum\text{Item} = \text{New Sum} - \text{Old Sum} =(n±1)×An×A= (n \pm 1) \times A' - n \times A

Use + when someone joins, - when someone leaves.

Example: Average of 30 students = 14 years. Teacher joins, new average = 15 years.

The shortcut version: The average went up by 1 for 31 people. So someone contributed 31 × 1 = 31 extra above the old average of 14. Teacher's age = 14 + 31 = 45. Same answer, fewer multiplications.

Type 2: Splitting into Sub-Groups

Structure: Average of n items is A. Sub-group 1 has average a₁, sub-group 2 has average a₂. Find the average of sub-group 3.

Approach: Sum3=Total SumSum1Sum2\text{Sum}_{3} = \text{Total Sum} - \text{Sum}_{1} - \text{Sum}_{2} Average3=Sum3Count3\text{Average}_{3} = \frac{\text{Sum}_{3}}{\text{Count}_{3}}

There is no shortcut here. Compute each sum, subtract, divide. The numbers are usually small and manageable.

Type 3: Scalar Multiplication / Addition

If every number in a set is multiplied by k, the new average = k × old average.

If a constant c is added to every number, the new average = old average + c.

This is a direct consequence of how sums work: New Average=k×Sumn=k×Old Average\text{New Average} = \frac{k \times \text{Sum}}{n} = k \times \text{Old Average}

SSC uses this type to test if you know the property or if you'll waste time recomputing everything.

Type 4: Average of Arithmetic Sequences

First n natural numbers: Average = n+1{2}\frac{n+1}\{2\}

First n multiples of k: Average = k×n+1{2}k \times \frac{n+1}\{2\}

This comes from the sum formula S=n(n+1){2}S = \frac{n(n+1)}\{2\} for natural numbers and S=kn(n+1){2}S = k \cdot \frac{n(n+1)}\{2\} for multiples of k.

For any evenly spaced (arithmetic) sequence: Average = (First term + Last term) / 2

So first 10 multiples of 6: first = 6, last = 60, average = (6 + 60)/2 = 33. Done in 4 seconds.

Type 5: Average Speed

Look — this is the most commonly mishandled average problem in SSC CGL. The instinct is to average the speeds directly: (60 + 40)/2 = 50. That is wrong when the distances (not times) are equal.

When equal distances are covered at speeds a and b: Average Speed=2aba+b\text{Average Speed} = \frac{2ab}{a+b}

This is the harmonic mean of the two speeds. It is always less than the arithmetic mean. The reason: you spend more time at the slower speed, so it drags the average down.

When equal times are spent at speeds a and b: Average speed = (a + b)/2 — the arithmetic mean. This case is rarer in SSC.

Always check: does the problem say equal distance or equal time? The word "half of the journey" almost always means equal distance — use the harmonic mean formula.

Weighted Average

When groups of different sizes have different averages: Weighted Average=n1A1+n2A2+n1+n2+\text{Weighted Average} = \frac{n_1 A_1 + n_2 A_2 + \ldots}{n_1 + n_2 + \ldots}

This is just the sum-first approach applied to multiple groups simultaneously. SSC doesn't often use the word "weighted average" but every multi-group combination problem is exactly this.


Memory Tricks & Shortcuts

patternDeviation Method for Teacher/New Member Problems

When one person joins and the average changes, the new person's value = New average + (change in average × new total count).

Example: 30 students, average 14. Teacher joins, average becomes 15. Rise = 1. New count = 31. Teacher's age = 15 + (1 × 31) — wait, that's wrong. Correct: Teacher's age = Old average + rise × new count = 14 + (1 × 31) = 45.

More cleanly: the new member must cover the old average for themselves AND lift every one of the 31 people by 1 year. = 14 (their own share at old average) + 31 × 1 (the lift they provide) = 45.

Standard method: two multiplications + subtraction = 6 steps. This method: 1 multiplication + addition = 3 steps.

patternArithmetic Sequence Average — First+Last Divided by 2

For any arithmetic progression (evenly spaced list), average = (first + last) / 2.

First 10 multiples of 7: first = 7, last = 70. Average = (7 + 70)/2 = 77/2 = 38.5. First 50 natural numbers: first = 1, last = 50. Average = 51/2 = 25.5.

Standard method: compute sum using n(n+1)/2 formula, then divide by n — 3 steps. This method: identify first and last, add, halve — 2 steps. Saves 15-20 seconds on these questions.

patternHarmonic Mean Recall for Equal-Distance Speed Problems

For two speeds a and b covering equal distances: Average speed = 2ab/(a+b).

Quick recall: it's the harmonic mean. A number trick — the harmonic mean is always less than (a+b)/2. If your answer equals (a+b)/2, you've made the classic error.

For 60 and 40: 2×60×40 / 100 = 4800/100 = 48. Check: (60+40)/2 = 50 ≠ 48. Correct.

Step count — standard (computing total distance and total time): 5-6 steps. Formula: 2 multiplications + 1 addition + 1 division = 4 operations, completable in 20 seconds.

patternScalar Operation Shortcut

If every number is multiplied by k: new average = k × old average. No need to touch individual numbers. If a constant c is added to every number: new average = old average + c.

SSC question type: "Average of 8 numbers is 21. Each number multiplied by 8. New average?" Trap answer: 21 + 8 = 29 (wrong — they added instead of multiplied). Correct: 8 × 21 = 168.

Recognition time: under 5 seconds. Computation: 1 multiplication. Vs. standard approach of recomputing sum: 2 steps. Saves ~30 seconds on this question type.

eliminationThree-Group Split: Compute Two Sums, Subtract from Total

When a set is split into three sub-groups and you know the averages of two of them, find the third.

Total sum = n × A. Sum₁ = n₁ × A₁. Sum₂ = n₂ × A₂. Sum₃ = Total − Sum₁ − Sum₂. Average₃ = Sum₃ / n₃.

The elimination is: don't guess, don't work backwards from options. Compute all three sums first, then subtract. This approach makes decimal-heavy questions (like 3.95, 3.4, 3.85) mechanical — no estimation needed.

Step count vs. back-substituting options: back-substitution requires checking up to 4 answer choices (4×3 = 12 multiplications). Forward computation: 3 multiplications + 2 subtractions + 1 division = 6 operations.


Fast-Solving Framework

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

  1. Is it one number added/removed? → Compute old sum and new sum. Subtract. Done.
  2. Is it a scalar operation (multiply/add a constant)? → Apply directly to the average. Don't touch individual numbers.
  3. Is it an arithmetic sequence (natural numbers, multiples)? → Use (first + last)/2.
  4. Is it a speed problem with "half the journey"? → Use 2ab/(a+b). Do not average speeds directly.
  5. Is it a three-subgroup split? → Compute all three sums, subtract the two known ones from the total.

If the question doesn't fit cleanly into one of these five types within 10 seconds, default to: Total = Average × Count for each group mentioned, then set up the equation. This brute-force approach solves every average question on SSC CGL, just slower. Use the typed shortcuts when you can recognize the pattern; fall back to totals when you can't.

Never start with the answer options on average questions — forward computation is fast enough and back-substitution adds confusion risk.


Solved PYQs

Why this question: The "excluded number" format is the most frequently repeated average question in SSC CGL. It tests whether you can work backwards from average to sum.

Previous Year Questionपिछले वर्ष का प्रश्न
The average of 5 numbers is 27. If one number is excluded, the average becomes 25. What is the excluded number?
5 संख्याओं का औसत 27 है। यदि एक संख्या को हटा दिया जाए, तो औसत 25 हो जाता है। हटाई गई संख्या क्या है?
  1. 32
  2. 37
  3. 35
  4. 30
  1. 32
  2. 37
  3. 35
  4. 30
Solutionसमाधान
Sum of 5 numbers = 5 × 27 = 135. Sum of remaining 4 numbers = 4 × 25 = 100. Excluded number = 135 − 100 = 35.
5 संख्याओं का योग = 5 × 27 = 135। शेष 4 संख्याओं का योग = 4 × 25 = 100। हटाई गई संख्या = 135 − 100 = 35।

Solving path: Sum of 5 numbers = 5 × 27 = 135. Sum of remaining 4 = 4 × 25 = 100. Excluded number = 135 − 100 = 35. The question is purely about tracking two totals. No algebra required.


Why this question: The "teacher joins the class" format is structurally identical to any "new member added" problem. SSC repeats this template with different contexts — factory workers, cricket teams, committees.

Previous Year Questionपिछले वर्ष का प्रश्न
The average age of a class of 30 students is 14 years. If the teacher's age is included, the average becomes 15 years. What is the teacher's age?
30 छात्रों की एक कक्षा की औसत आयु 14 वर्ष है। यदि शिक्षक की आयु भी शामिल कर ली जाए, तो औसत 15 वर्ष हो जाता है। शिक्षक की आयु क्या है?
  1. 50 years
  2. 45 years
  3. 35 years
  4. 40 years
  1. 50 वर्ष
  2. 45 वर्ष
  3. 35 वर्ष
  4. 40 वर्ष
Solutionसमाधान
Sum of students' ages = 30 × 14 = 420. Sum including teacher = 31 × 15 = 465. Teacher's age = 465 − 420 = 45 years.
छात्रों की आयु का योग = 30 × 14 = 420। शिक्षक सहित योग = 31 × 15 = 465। शिक्षक की आयु = 465 − 420 = 45 वर्ष।

Solving path: Old sum = 30 × 14 = 420. New sum = 31 × 15 = 465. Teacher's age = 465 − 420 = 45. Deviation method check: 14 + 31 × 1 = 45. Both give the same answer — use whichever you computed faster.


Why this question: Average of a specific multiple sequence. Tests knowledge of the arithmetic sequence shortcut vs. brute-force summation.

Previous Year Questionपिछले वर्ष का प्रश्न
The average of the first 10 multiples of 6 is:
6 के पहले 10 गुणजों का औसत क्या है?
  1. 39
  2. 33
  3. 36
  4. 30
  1. 39
  2. 33
  3. 36
  4. 30
Solutionसमाधान
First 10 multiples of 6 are 6, 12, 18, 24, 30, 36, 42, 48, 54, 60. Their sum = 6 × (1+2+...+10) = 6 × 55 = 330. Average = 330 ÷ 10 = 33.
6 के पहले 10 गुणज हैं: 6, 12, 18, 24, 30, 36, 42, 48, 54, 60। योग = 6 × 55 = 330। औसत = 330 ÷ 10 = 33।

Solving path: First 10 multiples of 6 form an AP: 6, 12, ..., 60. Average = (6 + 60)/2 = 33. Alternatively: average of multiples of 6 = 6 × (average of 1 to 10) = 6 × 5.5 = 33. Same result, two valid routes.


Why this question: Three-subgroup split with decimals. A classic trap — candidates panic at 3.95, 3.4, 3.85 and try to estimate. Don't. Compute mechanically.

Previous Year Questionपिछले वर्ष का प्रश्न
The average of 6 numbers is 3.95. The average of two of them is 3.4, while the average of the other two is 3.85. What is the average of the remaining two numbers?
6 संख्याओं का औसत 3.95 है। उनमें से दो का औसत 3.4 है, जबकि अन्य दो का औसत 3.85 है। बची हुई दो संख्याओं का औसत क्या है?
  1. 4.4
  2. 4.6
  3. 4.8
  4. 4.2
  1. 4.4
  2. 4.6
  3. 4.8
  4. 4.2
Solutionसमाधान
Total of 6 numbers = 6 × 3.95 = 23.7. Sum of first two = 2 × 3.4 = 6.8. Sum of next two = 2 × 3.85 = 7.7. Sum of last two = 23.7 − 6.8 − 7.7 = 9.2. Average = 9.2 / 2 = 4.6.
6 संख्याओं का योग = 23.7। पहली दो का योग = 6.8, अगली दो का = 7.7। शेष दो का योग = 23.7 − 6.8 − 7.7 = 9.2। औसत = 4.6।

Solving path: Total = 6 × 3.95 = 23.7. Sum of group 1 = 2 × 3.4 = 6.8. Sum of group 2 = 2 × 3.85 = 7.7. Remaining sum = 23.7 − 6.8 − 7.7 = 9.2. Average = 9.2 / 2 = 4.6. The decimals look scary but every calculation here is manageable — the numbers are designed to work out cleanly.


Why this question: Average speed with equal distances. The most common conceptual trap on SSC CGL — many candidates write 50 km/h and move on.

Previous Year Questionपिछले वर्ष का प्रश्न
A car travels at 60 km/h for the first half of the journey and at 40 km/h for the second half. What is the average speed for the entire journey?
एक कार यात्रा के पहले आधे भाग में 60 km/h की गति से और दूसरे आधे भाग में 40 km/h की गति से चलती है। पूरी यात्रा की औसत गति क्या होगी?
  1. 52 km/h
  2. 50 km/h
  3. 45 km/h
  4. 48 km/h
  1. 52 km/h
  2. 50 km/h
  3. 45 km/h
  4. 48 km/h
Solutionसमाधान
For equal distances, average speed = 2ab/(a+b) = 2 × 60 × 40 / (60 + 40) = 4800 / 100 = 48 km/h.
समान दूरी के लिए औसत चाल = 2ab/(a+b) = 2×60×40/(60+40) = 4800/100 = 48 km/h।

Solving path: Equal distances at 60 and 40 → use harmonic mean formula: 2 × 60 × 40 / (60 + 40) = 4800 / 100 = 48 km/h. The answer 48 is less than the arithmetic mean 50 — this is always true for unequal speeds over equal distances, which serves as a quick sanity check.


Common Mistakes


Related Topics

Practice on SarkariRise

Sign up + get 3 free mocks →