Moments, Skewness and Kurtosis for SSC CGL Statistics

intermediate 18 min read

Concept

Think of a distribution as a mountain range. The average tells you where the centre of mass sits. Standard deviation tells you how spread out the terrain is. But two very different mountain profiles can share the same centre and spread — one could be perfectly symmetric, the other could have a long tail on one side; one could be a sharp needle peak, another could be a broad flat plateau.

Moments, skewness, and kurtosis are the tools that describe these shape characteristics beyond just "where" and "how wide."

Moments are the numerical descriptors of a distribution's shape. In statistics, the r-th moment about any value a is the average of the r-th power of deviations from a. When a is the mean, these are called central moments (denoted μᵣ). The first central moment μ₁ is always zero. The second central moment μ₂ is the variance. The third and fourth central moments carry information about asymmetry and peakedness.

Skewness measures whether the distribution leans left or right. A perfectly symmetric distribution (like the normal curve) has zero skewness. When the right tail is longer, the distribution is positively skewed (right-skewed), and the mean gets pulled in that direction beyond the median and mode. When the left tail is longer, it is negatively skewed.

The practical analogy: imagine income distribution in India. Most people earn near the median, but a handful of very high earners drag the mean upward, creating a long right tail — that is positive skewness.

Kurtosis measures the "peakedness" of a distribution relative to the normal curve. The word comes from the Greek "kurtos" meaning curved or arching. A very sharp peak with heavy tails is leptokurtic. A flat-topped, thin-tailed distribution is platykurtic. The normal distribution sits in the middle and is called mesokurtic.

These three concepts — moments as raw material, skewness as asymmetry, kurtosis as peakedness — form a complete shape-description toolkit that SSC CGL tests in direct calculation questions.


Deep Dive

Central Moments

For a frequency distribution with observations x₁, x₂, ..., xₙ and mean , the r-th central moment is:

μᵣ = (1/n) × Σfᵢ(xᵢ - x̄)ʳ

Key values to commit to memory:

| Moment | Symbol | Value | Meaning | |--------|--------|-------|---------| | 1st central | μ₁ | Always 0 | By definition | | 2nd central | μ₂ | Variance = σ² | Spread | | 3rd central | μ₃ | Can be +, −, or 0 | Drives skewness | | 4th central | μ₄ | Always positive | Drives kurtosis |

μ₁ = 0 always — if an exam gives you μ₁ ≠ 0, something is wrong. This fact alone lets you verify the problem setup instantly.

Beta and Gamma Coefficients

Pearson introduced dimensionless coefficients using central moments. These are what the exam actually tests:

Beta coefficients:

Gamma coefficients:

For skewness: if μ₃ > 0, the distribution is positively skewed; if μ₃ < 0, negatively skewed; if μ₃ = 0, symmetric. β₁ alone can't tell you the direction — you need γ₁ for that.

Skewness Measures

Karl Pearson's Coefficient of Skewness:

Skp = (Mean − Mode) / Standard Deviation

When mode is ill-defined, use the empirical relation Mode ≈ 3Median − 2Mean:

Skp = 3(Mean − Median) / Standard Deviation

Range: typically −3 to +3. Zero means perfect symmetry.

The order rule is the fastest tool in the exam hall:

Bowley's Coefficient of Skewness (Quartile Skewness):

Skb = (Q₃ + Q₁ − 2Q₂) / (Q₃ − Q₁)

This formula is built entirely on quartiles — Q₁ (lower), Q₂ (median), Q₃ (upper). The numerator measures how much the median deviates from the midpoint of Q₁ and Q₃. The denominator is the interquartile range (IQR), which standardises the measure.

Range: −1 to +1. This measure is preferred when the data has extreme outliers, because quartiles are resistant to outliers whereas the mean is not.

Kurtosis and the β₂ Benchmark

β₂ = μ₄ / μ₂²

The normal distribution has β₂ = 3. This is the single most important kurtosis fact for SSC CGL.

| β₂ Value | Distribution Type | Shape | |----------|-------------------|-------| | β₂ = 3 | Mesokurtic | Normal-peaked | | β₂ > 3 | Leptokurtic | Sharper peak, heavier tails | | β₂ < 3 | Platykurtic | Flatter peak, lighter tails |

Memory anchor: "lepto" means slender in Greek — a leptokurtic curve is a slender, tall peak. "Platy" means flat — platykurtic is flat-topped.

The excess kurtosis γ₂ = β₂ − 3 re-centres everything around zero:

Some exam problems give you γ₂ and ask for β₂, or vice versa — just add or subtract 3.

Relationship Between Moments and These Coefficients

When an exam gives you μ₁, μ₂, μ₃, μ₄ directly, the calculation chain is:

  1. Confirm μ₁ = 0 (sanity check)
  2. Square μ₃ → divide by μ₂³ → get β₁
  3. Divide μ₄ by μ₂² → get β₂
  4. Compare β₂ to 3 → determine kurtosis type

This four-step chain handles every "calculate β₂" question in under 30 seconds if you keep μ₂² = (μ₂)², not μ₂ × 2.


Memory Tricks & Shortcuts

patternMean-Median-Mode Order Rule

When the exam shows you mean, median, and mode values and asks for skewness type, apply the order rule directly — no formula needed.

Positive skew: Mean > Median > Mode (the mean is "pulled" toward the long right tail). Negative skew: Mean < Median < Mode (the mean is pulled toward the long left tail).

Micro-example: Mean = 10, Median = 9, Mode = 7. Since 10 > 9 > 7, positively skewed. Done.

Standard method (plugging into Pearson's formula): ~40 seconds. Order-rule method: 5 seconds. You save 35 seconds per question.

patternβ₂ Calculation: Square the Denominator, Not Multiply

The most common arithmetic mistake in kurtosis questions is computing μ₂² incorrectly. When μ₂ = 4, students often write 4 × 2 = 8 instead of 4² = 16.

Locked rule: β₂ = μ₄ ÷ (μ₂ × μ₂). Always multiply μ₂ by itself.

Micro-example: μ₄ = 48, μ₂ = 4. β₂ = 48 ÷ (4 × 4) = 48 ÷ 16 = 3. Not 48 ÷ 8 = 6.

This single pattern check eliminates a trap that catches roughly half of test-takers on these questions. It reduces wrong answers to 0 extra steps — just a mental "always multiply μ₂ by itself" check before computing.

eliminationBowley vs Pearson Identification

When a question asks "which formula/measure is based on quartiles?" — the answer is always Bowley (also called quartile coefficient of skewness). When it involves mean, mode, or SD — it is Pearson.

No calculation needed. The word "quartile" in the question or options locks the answer to Bowley.

Saves the full time of recalling and applying a formula (~30 seconds). The trigger word "quartile" → Bowley is a 3-second identification, reducing 6 mental steps to 1.

patternLeptokurtic vs Platykurtic: The Height Heuristic

"Lepto" = slender/tall spike → β₂ > 3 (higher than normal). "Platy" = flat/broad → β₂ < 3 (lower than normal). "Meso" = middle = exactly 3.

For β₂ = 6: is 6 > 3? Yes → leptokurtic. For β₂ = 2: is 2 < 3? Yes → platykurtic.

The comparison to 3 is always a one-second check once β₂ is computed. Eliminates any confusion between the three terms — 0 errors vs an estimated 20–30% error rate when memorised as pure definitions.

patternNormal Distribution Anchor Values

For a normal distribution, commit exactly two values:

  • β₁ = 0 (perfectly symmetric, so μ₃ = 0, so β₁ = 0)
  • β₂ = 3 (mesokurtic benchmark)

These two numbers answer at least one direct MCQ per exam cycle. No derivation needed in the exam hall — pure recall.

Standard approach (recalling the derivation): ~20 seconds. Direct recall: 3 seconds. Net saving: 17 seconds per question.


Fast-Solving Framework

When a moments/skewness/kurtosis question appears, classify it in the first 5 seconds:

Type 1 — Mean/Median/Mode given, ask skewness type: Apply the order rule. Mean > Median > Mode → positive. Mean < Median < Mode → negative. Mean = Median = Mode → symmetric. No formula, no calculation.

Type 2 — Central moments (μᵣ) given, ask β₂: Compute β₂ = μ₄ ÷ μ₂². Remember μ₂² means μ₂ × μ₂. Compare result to 3. If > 3: leptokurtic. If < 3: platykurtic. If = 3: mesokurtic (normal).

Type 3 — Formula identification (Bowley vs Pearson vs moments-based): Quartiles mentioned → Bowley. Mean/Mode/SD mentioned → Pearson. μᵣ notation → moments-based (β₁, β₂).

Type 4 — Normal distribution properties: Lock in β₁ = 0, β₂ = 3, γ₁ = 0, γ₂ = 0. These are constants — treat them as given facts.

Type 5 — β₂ to kurtosis type or vice versa: Single comparison: is the number greater than, equal to, or less than 3?

If a question mixes skewness and kurtosis in one setup, handle the skewness part first (it is usually quicker via order rule) and then compute β₂ separately. Never conflate the two measures — a leptokurtic distribution can be symmetric or skewed.


Solved PYQs

Why this question: The most direct test of the mesokurtic benchmark — every exam cycle includes at least one question anchored to β₂ = 3 for the normal distribution.

Previous Year Questionपिछले वर्ष का प्रश्न
For a normal distribution, the value of kurtosis (β₂) is:
एक सामान्य (Normal) वितरण के लिए कुर्तोसिस (β₂) का मान क्या होता है?
  1. 3
  2. 0
  3. 2
  4. 1
  1. 3
  2. 0
  3. 2
  4. 1
Solutionसमाधान
For a normal (mesokurtic) distribution, the kurtosis β₂ = μ₄/μ₂² = 3. Distributions with β₂ > 3 are called leptokurtic and those with β₂ < 3 are called platykurtic. This value of 3 is the standard benchmark.
सामान्य (मेसोकर्टिक) वितरण के लिए कुर्तोसिस β₂ = μ₄/μ₂² = 3 होता है। जिन वितरणों में β₂ > 3 होता है उन्हें लेप्टोकर्टिक और β₂ < 3 वाले को प्लेटीकर्टिक कहते हैं। 3 का यह मान मानक संदर्भ बिंदु है।

Solving path: Normal distribution → mesokurtic → β₂ = 3. Pure recall, 3 seconds. The distractor "0" is designed for candidates who confuse β₁ (skewness coefficient, which is 0 for normal) with β₂.


Why this question: Tests the order-rule shortcut directly. No formula is needed — this is the question where the order-rule trick saves the most time.

Previous Year Questionपिछले वर्ष का प्रश्न
If for a distribution the mean = 10, median = 9, and mode = 7, then the distribution is:
यदि किसी वितरण में माध्य = 10, माध्यिका = 9 और बहुलक = 7 है, तो वह वितरण कैसा होगा?
  1. Symmetrical
  2. Mesokurtic
  3. Negatively skewed
  4. Positively skewed
  1. सममित (Symmetrical)
  2. मेसोकर्टिक (Mesokurtic)
  3. ऋणात्मक रूप से तिरछा (Negatively Skewed)
  4. धनात्मक रूप से तिरछा (Positively Skewed)
Solutionसमाधान
When Mean > Median > Mode, the distribution is positively (right) skewed. Here Mean = 10 > Median = 9 > Mode = 7, so it is positively skewed. In a negatively skewed distribution the order is reversed: Mean < Median < Mode.
जब माध्य > माध्यिका > बहुलक होता है, तो वितरण धनात्मक रूप से तिरछा (दाईं ओर) होता है। यहाँ माध्य = 10 > माध्यिका = 9 > बहुलक = 7 है, इसलिए यह धनात्मक रूप से तिरछा है। ऋणात्मक तिरछे वितरण में क्रम विपरीत होता है: माध्य < माध्यिका < बहुलक।

Solving path: Mean = 10 > Median = 9 > Mode = 7. Descending order → positively skewed. The distractor "negatively skewed" catches candidates who misremember the order (they think the largest value means the distribution is pulled left, which is the opposite of what happens). The mean is always pulled toward the long tail.


Why this question: Tests the definition of Pearson's coefficient for symmetric distributions — a foundational fact question.

Previous Year Questionपिछले वर्ष का प्रश्न
For a perfectly symmetrical distribution, the value of Karl Pearson's coefficient of skewness is:
एक पूर्णतः सममित वितरण के लिए कार्ल पियर्सन के विषमता गुणांक का मान क्या होता है?
  1. 0
  2. 1
  3. 0.5
  4. -1
  1. 0
  2. 1
  3. 0.5
  4. -1
Solutionसमाधान
Karl Pearson's coefficient of skewness = (Mean − Mode) / Standard Deviation. For a perfectly symmetrical distribution, Mean = Median = Mode, so the numerator becomes zero, making the coefficient equal to 0.
कार्ल पियर्सन का विषमता गुणांक = (माध्य − बहुलक) / मानक विचलन। पूर्णतः सममित वितरण में माध्य = माध्यिका = बहुलक होता है, इसलिए अंश शून्य हो जाता है और गुणांक 0 होता है।

Solving path: Skp = (Mean − Mode) / SD. Symmetric distribution → Mean = Mode → numerator = 0 → Skp = 0. Notice this does not require knowing the actual values of Mean or SD. The symmetry condition alone resolves it.


Why this question: Direct β₂ computation from given central moments — tests whether you square μ₂ correctly.

Previous Year Questionपिछले वर्ष का प्रश्न
If the first four central moments of a distribution are μ₁ = 0, μ₂ = 4, μ₃ = 0, μ₄ = 48, then the kurtosis (β₂) of the distribution is:
यदि किसी वितरण के प्रथम चार केंद्रीय आघूर्ण μ₁ = 0, μ₂ = 4, μ₃ = 0, μ₄ = 48 हों, तो कुर्तोसिस (β₂) का मान क्या होगा?
  1. 12
  2. 4
  3. 2
  4. 3
  1. 12
  2. 4
  3. 2
  4. 3
Solutionसमाधान
β₂ = μ₄ / (μ₂)² = 48 / (4)² = 48 / 16 = 3. A β₂ value of 3 indicates a mesokurtic (normal) distribution.
β₂ = μ₄ / (μ₂)² = 48 / (4)² = 48 / 16 = 3। β₂ = 3 का मान मेसोकर्टिक (सामान्य) वितरण को दर्शाता है।

Solving path: β₂ = μ₄ / μ₂² = 48 / (4)² = 48 / 16 = 3. The answer 12 (= 48/4) is the trap for those who forget to square μ₂. The answer 3 also tells you this is mesokurtic — the question is designed to connect the computation to the normal distribution fact.


Why this question: Tests the identification of which skewness measure uses quartiles — a pure definitional question.

Previous Year Questionपिछले वर्ष का प्रश्न
Bowley's coefficient of skewness is based on which measures?
बोले का विषमता गुणांक किन मापों पर आधारित होता है?
  1. Median and Mean Deviation
  2. Mode and Range
  3. Quartiles
  4. Mean and Standard Deviation
  1. माध्यिका और माध्य विचलन
  2. बहुलक और परिसर
  3. चतुर्थांश (Quartiles)
  4. माध्य और मानक विचलन
Solutionसमाधान
Bowley's coefficient of skewness is calculated as (Q₃ + Q₁ − 2Q₂) / (Q₃ − Q₁), which is entirely based on quartiles (Q₁, Q₂, Q₃). It is also known as the quartile measure of skewness.
बोले का विषमता गुणांक = (Q₃ + Q₁ − 2Q₂) / (Q₃ − Q₁) सूत्र पर आधारित है, जो पूरी तरह चतुर्थांशों (Q₁, Q₂, Q₃) पर निर्भर करता है। इसे चतुर्थांश विषमता माप भी कहते हैं।

Solving path: Skb = (Q₃ + Q₁ − 2Q₂) / (Q₃ − Q₁) — entirely in terms of Q₁, Q₂, Q₃. The formula uses no mean, no mode, no SD. Trigger word "quartiles" → Bowley. The distractor "Mean and Standard Deviation" describes Pearson's method, which is the most common wrong choice here.


Why this question: Tests leptokurtic identification — applying the β₂ > 3 rule.

Previous Year Questionपिछले वर्ष का प्रश्न
A distribution is called leptokurtic if its β₂ value is:
एक वितरण लेप्टोकर्टिक कहलाता है यदि उसका β₂ मान:
  1. Equal to 0
  2. Greater than 3
  3. Less than 3
  4. Equal to 3
  1. 0 के बराबर हो
  2. 3 से अधिक हो
  3. 3 से कम हो
  4. 3 के बराबर हो
Solutionसमाधान
β₂ = μ₄/(μ₂)² is the measure of kurtosis. If β₂ > 3, the distribution is leptokurtic (more peaked than normal). If β₂ = 3, it is mesokurtic (normal). If β₂ < 3, it is platykurtic (flatter than normal).
β₂ = μ₄/(μ₂)² कुर्तोसिस का माप है। यदि β₂ > 3 हो तो वितरण लेप्टोकर्टिक (सामान्य से अधिक नुकीला) होता है। β₂ = 3 पर मेसोकर्टिक और β₂ < 3 पर प्लैटीकर्टिक होता है।

Solving path: Leptokurtic → sharp peak → β₂ > 3. The distractor "Equal to 3" catches candidates who confuse leptokurtic with mesokurtic (normal). "Less than 3" is platykurtic. "Equal to 0" has no standard interpretation for β₂ (and is impossible since β₂ = μ₄/μ₂² and μ₄ ≥ 0).


Why this question: A higher β₂ value (6) confirms leptokurtic classification and tests the squaring step.

Previous Year Questionपिछले वर्ष का प्रश्न
For a distribution, the first four central moments are: μ₁ = 0, μ₂ = 4, μ₃ = 8, μ₄ = 96. What is the value of Pearson's measure of kurtosis (β₂)?
किसी बंटन के लिए, पहले चार केंद्रीय आघूर्ण हैं: μ₁ = 0, μ₂ = 4, μ₃ = 8, μ₄ = 96। Pearson के कुर्तोसिस माप (β₂) का मान क्या होगा?
  1. 9
  2. 4
  3. 6
  4. 3
  1. 9
  2. 4
  3. 6
  4. 3
Solutionसमाधान
Pearson's measure of kurtosis is β₂ = μ₄ / μ₂². Here μ₄ = 96 and μ₂ = 4, so μ₂² = 16. Therefore β₂ = 96 / 16 = 6. Since β₂ > 3, the distribution is leptokurtic.
Pearson का कुर्तोसिस माप β₂ = μ₄ / μ₂² होता है। यहाँ μ₄ = 96 और μ₂ = 4 है, इसलिए μ₂² = 16। अतः β₂ = 96 / 16 = 6। चूँकि β₂ > 3 है, इसलिए यह बंटन लेप्टोकर्टिक है।

Solving path: β₂ = μ₄ / μ₂² = 96 / (4)² = 96 / 16 = 6. Since 6 > 3 → leptokurtic. The distractor "9" likely comes from computing √(μ₄/μ₂) or some mis-recalled formula. Keep the formula clean: numerator is μ₄, denominator is μ₂ squared.


Why this question: Similar structure to above but with μ₄ = 80, testing whether you can handle a non-integer result versus being tripped up by the options.

Previous Year Questionपिछले वर्ष का प्रश्न
For a distribution, the first four central moments are: μ₁ = 0, μ₂ = 4, μ₃ = 8, μ₄ = 80. What is the value of the coefficient of kurtosis (β₂)?
किसी वितरण के पहले चार केंद्रीय आघूर्ण हैं: μ₁ = 0, μ₂ = 4, μ₃ = 8, μ₄ = 80। कुर्टोसिस के गुणांक (β₂) का मान क्या होगा?
  1. 4
  2. 20
  3. 5
  4. 2.5
  1. 4
  2. 20
  3. 5
  4. 2.5
Solutionसमाधान
The coefficient of kurtosis is defined as β₂ = μ₄ / (μ₂)². Here μ₄ = 80 and μ₂ = 4, so β₂ = 80 / (4)² = 80 / 16 = 5. Since β₂ = 5 > 3, the distribution is leptokurtic.
कुर्टोसिस का गुणांक β₂ = μ₄ / (μ₂)² होता है। यहाँ μ₄ = 80 और μ₂ = 4 है, इसलिए β₂ = 80 / (4)² = 80 / 16 = 5। चूँकि β₂ = 5 > 3 है, यह वितरण लेप्टोकर्टिक (leptokurtic) है।

Solving path: β₂ = μ₄ / μ₂² = 80 / (4)² = 80 / 16 = 5. Since 5 > 3 → leptokurtic. The distractor "20" = 80/4 (forgetting to square). The distractor "2.5" likely inverts the formula as μ₂²/μ₄ = 16/80. Confirm your formula direction: μ₄ on top, μ₂² on bottom.


Common Mistakes


Related Topics

Practice on SarkariRise

Sign up + get 3 free mocks →