Statistics for NDA — Mean, Variance, Standard Deviation and Probability Distributions
intermediate22 min read
Concept
Statistics, in the context of NDA Mathematics, is the science of collecting, organising, and interpreting numerical data. The exam tests two closely linked ideas: descriptive statistics (how you summarise a dataset) and inferential probability (how you reason about uncertain outcomes). These appear together on the paper and you need to treat them as a unified chapter, not separate islands.
Here is the core mental model. Every dataset has a centre and a spread. The centre is captured by measures of central tendency — mean (arithmetic average), median (middle value), mode (most frequent value). The spread is captured by variance and standard deviation. Almost every NDA Statistics question asks you to compute one or both, sometimes after a transformation of the data.
Think of it this way: if you have the heights of 50 army recruits, the mean tells you the "typical" recruit, and the standard deviation tells you how much variation to expect. A tight cluster means low SD; a wide scatter means high SD.
The analogy that works best in the exam hall: mean is the balance point of a see-saw, variance is how wobbly the see-saw feels. When you shift every person on the see-saw by the same amount (add a constant), the balance point moves but the wobbliness does not. When you scale everyone up (multiply by a constant), both the balance point and the wobbliness scale — but variance scales by the square of that constant, SD scales linearly.
This single analogy unlocks almost every transformation question on NDA.
Beyond descriptive stats, the chapter bleeds directly into probability distributions — Binomial, Poisson, and the basics of expected value. NDA treats these as one chapter and so should you.
Deep Dive
Measures of Central Tendency
Arithmetic Mean for raw data: xˉ=n∑xi
For grouped/frequency data: xˉ=∑fi∑fixi
Median — middle value when data is sorted. For n observations:
If n is odd: median = (2n+1)th value
If n is even: median = average of (2n)th and (2n+1)th values
Mode — the most frequently occurring observation. For a frequency distribution, it is the observation with the highest frequency.
Relationship between the three for a moderately skewed distribution: Mode≈3Median−2Mean. This is a useful check but is rarely tested directly.
Variance and Standard Deviation
Variance (population): σ2=n∑xi2−(n∑xi)2
This is the version NDA uses. Remember it as: mean of squares minus square of mean.
Standard Deviation: σ=σ2
Coefficient of Variation (CV): CV=xˉσ×100
CV is a dimensionless measure used to compare variability across two datasets that have different units or different means. A higher CV means more relative variability.
Effect of Linear Transformation
This is the single most tested concept in NDA Statistics. If Y=aX+b:
| Measure | New Value |
|---|---|
| Mean | axˉ+b |
| Variance | a2σ2 |
| Standard Deviation | ∣a∣⋅σ |
| CV | Changes (because both mean and SD change) |
Look — adding a constant b does nothing to variance or SD. Only the scaling factor a matters for spread.
Frequency Distribution and Variance Formula
For grouped data with frequencies fi and class midpoints xi:
σ2=∑fi∑fixi2−(∑fi∑fixi)2
NDA sometimes gives you ∑X, ∑X2, and n directly (as in the 2025 PYQ). The formula then simplifies to:
σ2=n∑X2−(n∑X)2
Probability — Core Rules
P(A∪B)=P(A)+P(B)−P(A∩B)
For independent events: P(A∩B)=P(A)⋅P(B)
So the union formula becomes: P(A∪B)=P(A)+P(B)−P(A)⋅P(B)
Note: In a Poisson distribution, mean equals variance — this is a diagnostic fact that NDA tests directly.
Setting Up Probability Distributions
A common NDA pattern: you are given P(X=r) in terms of k for r=0,1,2,… Use ∑P(X=r)=1 to find k, then compute E(X) or E(X2).
The trap here is forgetting that E(X2)=[E(X)]2. These are almost always different, and the question will have [E(X)]2 as a wrong option to catch you.
Memory Tricks and Shortcuts
patternMean of Squares Minus Square of Mean
Variance = n∑X2−(n∑X)2. Memorise this as a two-step process: (1) compute the mean of the X2 column, (2) subtract the square of the mean of X. In the 2025 NDA PYQ, this computes in under 20 seconds once you have the numbers: 900/50−(200/50)2=18−16=2. No intermediate formula hunting needed. Standard method of expanding from scratch: 60s. This pattern: 15s.
patternTransformation Rule — SD Ignores Addition
When the question says "each observation is multiplied by a and then b is added," the new SD is simply ∣a∣×old SD. The b vanishes. So for Y=3X+10: new SD =3×5=15. You do not need to recompute anything. Standard method (recompute variance from scratch): 90s. This rule applied directly: 5s. The only step left is the new mean: 3×50+10=160.
substitutionCV Reverse-Engineering the Mean
CV=xˉσ×100, so xˉ=CVσ×100. When NDA gives you CV and SD and asks for the mean, just plug in directly. For CV = 60%, SD = 21: Mean =21×100/60=35. No algebra needed. This takes 4 seconds compared to setting up and solving the equation from first principles (25 seconds).
patternPoisson Condition P(1) = P(2) Forces λ = 2
If P(X=1)=P(X=2) in a Poisson distribution, set e−λλ=e−λλ2/2. The e−λ cancels instantly, leaving λ=λ2/2, so λ=2. This two-line derivation saves you from expanding Poisson terms fully. General approach of writing out both probabilities and cross-multiplying: 40s. Pattern recognition and cancellation: 8s.
eliminationBinomial At-Least Problems — Complement Check First
For P(X≥k) in a Binomial, always check whether it is faster to use the complement 1−P(X<k). For n=6, P(X≥4)=P(4)+P(5)+P(6) — three terms, which is fewer than P(0)+P(1)+P(2)+P(3)=1−P(X≥4), four terms. So here, direct computation is faster. The rule: pick whichever side has fewer terms. Counting the terms before computing saves ~30s on decisions that lead you down the wrong path. For P(X≥4) with n=6: direct approach gives [15+6+1]/64=22/64=11/32 in about 25s.
Fast-Solving Framework
When you see a Statistics/Probability question in the NDA paper, run this decision tree in the first 10 seconds:
Step 1 — Identify the type:
Given ∑X, ∑X2, n → Variance formula directly
Given CV and SD → Mean = SD × 100 / CV
Linear transformation (Y=aX+b) → New mean = axˉ+b, New SD = ∣a∣σ
Probability distribution with unknowns → Sum of probabilities = 1 first, then compute E(X) or E(X2)
Conditional probability → List the sample space of the conditioning event, count favourable outcomes
Independence given → Use P(A∩B)=P(A)⋅P(B) in the union formula
Step 2 — One formula, one substitution. NDA Statistics questions almost never require more than two lines of arithmetic once you identify the right formula. If you find yourself doing more than three lines, you have the wrong formula.
Step 3 — Sanity check the answer. Variance is always non-negative. SD ≤ range. CV is a percentage, typically between 0% and 100% for well-behaved data. Probability is always between 0 and 1.
Solved PYQs
Why this question: This 2025 NDA PYQ tests the variance formula directly with ∑X and ∑X2 given — the cleanest possible test of whether you know the "mean of squares minus square of mean" pattern.
Previous Year Questionपिछले वर्ष का प्रश्न2025
The sum and the sum of squares of the observations corresponding to length X (in cm) and weight Y (in gm) of 50 tropical tubers are given as ΣX = 200, ΣY = 250, ΣX² = 900 and ΣY² = 1400. Which one of the following is correct?
Solving path: Variance(X) =50900−(50200)2=18−16=2. Variance(Y) =501400−(50250)2=28−25=3. Since 2<3, Variance(X) < Variance(Y). Done in under 30 seconds.
Why this question: A classic discrete probability distribution setup. The trap is computing E(X2) directly rather than [E(X)]2.
Previous Year Questionपिछले वर्ष का प्रश्न
A random variable X has the following probability distribution: P(X=0)=k, P(X=1)=2k, P(X=2)=3k, P(X=3)=4k, and P(X=r)=0 for r>3. What is the value of E(X²)?
एक यादृच्छिक चर X का निम्नलिखित प्रायिकता वितरण है: P(X=0)=k, P(X=1)=2k, P(X=2)=3k, P(X=3)=4k, और r>3 के लिए P(X=r)=0। E(X²) का मान क्या है?
5
6
4
3
5
6
4
3
Solutionसमाधान
Since all probabilities sum to 1: k+2k+3k+4k=10k=1, so k=1/10. E(X²)=0²(1/10)+1²(2/10)+2²(3/10)+3²(4/10)=0+2/10+12/10+36/10=50/10=5.
सभी प्रायिकताओं का योग 1 होता है: k+2k+3k+4k=10k=1, अतः k=1/10। E(X²)=0²(1/10)+1²(2/10)+2²(3/10)+3²(4/10)=0+2/10+12/10+36/10=50/10=5।
Solving path: Sum all probabilities: k+2k+3k+4k=10k=1, so k=1/10. Then E(X2)=02(1/10)+12(2/10)+22(3/10)+32(4/10)=0+2/10+12/10+36/10=50/10=5.
Why this question: Conditional probability on dice — tests whether you correctly identify the reduced sample space.
Previous Year Questionपिछले वर्ष का प्रश्न
Two dice are thrown simultaneously. Given that the sum of numbers on both dice is 8, what is the conditional probability that the number on the first die is 5?
दो पासे एक साथ फेंके जाते हैं। यह दिया गया है कि दोनों पासों पर संख्याओं का योग 8 है, तो पहले पासे पर संख्या 5 होने की सशर्त प्रायिकता क्या है?
1/6
2/5
1/5
1/4
1/6
2/5
1/5
1/4
Solutionसमाधान
Event A: sum=8. Pairs: (2,6),(3,5),(4,4),(5,3),(6,2) — 5 outcomes. Event B∩A: first die=5, sum=8 means (5,3) — 1 outcome. P(B|A)=1/5.
घटना A: योग=8। युग्म: (2,6),(3,5),(4,4),(5,3),(6,2) — 5 परिणाम। घटना B∩A: पहला पासा=5, योग=8 अर्थात (5,3) — 1 परिणाम। P(B|A)=1/5।
Solving path: Condition is sum = 8. List all pairs: (2,6), (3,5), (4,4), (5,3), (6,2) — exactly 5 outcomes. Of these, first die = 5 is only (5,3) — 1 outcome. So P=1/5.
Why this question: Independence + union formula. This is a direct drill on the formula P(A∪B)=P(A)+P(B)−P(A)P(B) when independence is stated.
Previous Year Questionपिछले वर्ष का प्रश्न
If A and B are independent events such that P(A)=0.3 and P(A∪B)=0.6, what is P(B)?
यदि A और B स्वतंत्र घटनाएँ हैं और P(A)=0.3 तथा P(A∪B)=0.6 है, तो P(B) क्या है?
0.3
4/9
3/7
0.5
0.3
4/9
3/7
0.5
Solutionसमाधान
P(A∪B)=P(A)+P(B)−P(A)P(B) for independent events. 0.6=0.3+P(B)−0.3·P(B)=0.3+0.7P(B). So 0.7P(B)=0.3, P(B)=0.3/0.7=3/7.
स्वतंत्र घटनाओं के लिए P(A∪B)=P(A)+P(B)−P(A)P(B)। 0.6=0.3+P(B)−0.3·P(B)=0.3+0.7P(B)। अतः P(B)=0.3/0.7=3/7।
Solving path:0.6=0.3+P(B)−0.3⋅P(B)=0.3+0.7⋅P(B). So 0.7⋅P(B)=0.3, giving P(B)=3/7.
Why this question: Tests the transformation rule for mean and SD — the single most important NDA transformation fact.
Previous Year Questionपिछले वर्ष का प्रश्न
The mean and standard deviation of 100 observations are 50 and 5 respectively. If each observation is multiplied by 3 and then 10 is added, what are the new mean and standard deviation respectively?
100 प्रेक्षणों का माध्य और मानक विचलन क्रमशः 50 और 5 हैं। यदि प्रत्येक प्रेक्षण को 3 से गुणा किया जाए और फिर 10 जोड़ा जाए, तो नया माध्य और मानक विचलन क्रमशः क्या होंगे?
160 and 15
160 and 5
150 and 15
160 and 45
160 और 15
160 और 5
150 और 15
160 और 45
Solutionसमाधान
If Y=3X+10, then new mean=3×50+10=160. Standard deviation is not affected by adding a constant but is scaled by 3: new SD=3×5=15.
यदि Y=3X+10 है, तो नया माध्य=3×50+10=160। स्थिरांक जोड़ने से मानक विचलन प्रभावित नहीं होता परंतु 3 से गुणा होने पर नया SD=3×5=15 होता है।
Solving path:Y=3X+10. New mean =3(50)+10=160. New SD =3(5)=15 (adding 10 does not affect SD). Answer: 160 and 15.
Why this question: Coefficient of Variation reverse-calculation — tests whether you can invert the CV formula to find the mean.
Previous Year Questionपिछले वर्ष का प्रश्न
The coefficient of variation of two series A and B are 60% and 70% respectively, and their standard deviations are 21 and 35. What are the means of A and B respectively?
दो श्रेणियों A और B के भिन्नता गुणांक क्रमशः 60% और 70% हैं, और उनके मानक विचलन 21 और 35 हैं। A और B के माध्य क्रमशः क्या हैं?
35 and 50
35 and 40
40 and 50
30 and 45
35 और 50
35 और 40
40 और 50
30 और 45
Solutionसमाधान
CV=SD/Mean×100. For A: 60=21/Mean_A×100, Mean_A=21×100/60=35. For B: 70=35/Mean_B×100, Mean_B=35×100/70=50.
CV=SD/माध्य×100। A के लिए: 60=21/माध्य_A×100, माध्य_A=35। B के लिए: 70=35/माध्य_B×100, माध्य_B=50।
Solving path: MeanA=(21×100)/60=35. MeanB=(35×100)/70=50. Means are 35 and 50.
Why this question: Poisson condition P(1)=P(2) — tests the pattern-based cancellation trick.
Previous Year Questionपिछले वर्ष का प्रश्न
In a Poisson distribution, if P(X=1)=P(X=2), what is the mean of the distribution?
एक पॉइसन वितरण में, यदि P(X=1)=P(X=2) है, तो वितरण का माध्य क्या है?
1/2
1
2
3
1/2
1
2
3
Solutionसमाधान
For Poisson distribution P(X=r)=e^(−λ)·λʳ/r!. Setting P(X=1)=P(X=2): e^(−λ)·λ/1!=e^(−λ)·λ²/2!, so λ=λ²/2, giving λ=2. Hence the mean=2.
पॉइसन वितरण के लिए P(X=r)=e^(−λ)·λʳ/r!। P(X=1)=P(X=2) रखने पर: λ=λ²/2, अतः λ=2। इसलिए माध्य=2।
Solving path:e−λλ=e−λλ2/2. Cancel e−λ: λ=λ2/2, so λ=2.
Why this question: At-least Binomial probability — the classic n=6 coin toss question that appears in multiple NDA papers.
Previous Year Questionपिछले वर्ष का प्रश्न
A fair coin is tossed 6 times. What is the probability of getting at least 4 heads?
एक उचित सिक्के को 6 बार उछाला जाता है। कम से कम 4 चित आने की प्रायिकता क्या है?
Forgetting that variance scales by a2, not a. When Y=aX+b, variance multiplies by a2. A common error is to write new variance =a⋅σ2. You will see this trap as an option in the paper.
Using E(X2)=[E(X)]2. These are equal only in the degenerate case where all probability is at a single point. In virtually every NDA problem, E(X2)>[E(X)]2. Compute them separately.
Not listing the conditional sample space. In conditional probability questions, you must restrict to outcomes where the conditioning event has already occurred. A common error is computing P(A∩B)/P(total) instead of P(A∩B)/P(B).
Misapplying the independence condition. Independence means P(A∩B)=P(A)⋅P(B). Mutually exclusive events with non-zero probabilities are NOT independent — they are the opposite. These are distinct concepts that NDA options deliberately conflate.
Poisson mean-variance confusion. In a Poisson distribution, mean = variance =λ. If a question gives you the variance and asks for the mean (or vice versa), they are the same number. This is a giveaway if you know it, a trap if you do not.
Wrong denominator in variance formula. NDA uses population variance σ2=n∑xi2−xˉ2, not the sample variance with n−1 in the denominator. Dividing by n−1 will give you a slightly different number that will match a wrong option in the choices.