Statistics for NDA — Mean, Variance, Standard Deviation and Probability Distributions

intermediate 22 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ˉ=xin\bar{x} = \dfrac{\sum x_i}{n}

For grouped/frequency data: xˉ=fixifi\bar{x} = \dfrac{\sum f_i x_i}{\sum f_i}

Median — middle value when data is sorted. For nn observations:

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: Mode3Median2Mean\text{Mode} \approx 3\,\text{Median} - 2\,\text{Mean}. This is a useful check but is rarely tested directly.


Variance and Standard Deviation

Variance (population): σ2=xi2n(xin)2\sigma^2 = \dfrac{\sum x_i^2}{n} - \left(\dfrac{\sum x_i}{n}\right)^2

This is the version NDA uses. Remember it as: mean of squares minus square of mean.

Standard Deviation: σ=σ2\sigma = \sqrt{\sigma^2}

Coefficient of Variation (CV): CV=σxˉ×100\text{CV} = \dfrac{\sigma}{\bar{x}} \times 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+bY = aX + b:

| Measure | New Value | |---|---| | Mean | axˉ+ba\bar{x} + b | | Variance | a2σ2a^2 \sigma^2 | | Standard Deviation | aσ|a| \cdot \sigma | | CV | Changes (because both mean and SD change) |

Look — adding a constant bb does nothing to variance or SD. Only the scaling factor aa matters for spread.


Frequency Distribution and Variance Formula

For grouped data with frequencies fif_i and class midpoints xix_i:

σ2=fixi2fi(fixifi)2\sigma^2 = \dfrac{\sum f_i x_i^2}{\sum f_i} - \left(\dfrac{\sum f_i x_i}{\sum f_i}\right)^2

NDA sometimes gives you X\sum X, X2\sum X^2, and nn directly (as in the 2025 PYQ). The formula then simplifies to:

σ2=X2n(Xn)2\sigma^2 = \dfrac{\sum X^2}{n} - \left(\dfrac{\sum X}{n}\right)^2


Probability — Core Rules

P(AB)=P(A)+P(B)P(AB)P(A \cup B) = P(A) + P(B) - P(A \cap B)

For independent events: P(AB)=P(A)P(B)P(A \cap B) = P(A) \cdot P(B)

So the union formula becomes: P(AB)=P(A)+P(B)P(A)P(B)P(A \cup B) = P(A) + P(B) - P(A) \cdot P(B)

Conditional Probability: P(AB)=P(AB)P(B)P(A|B) = \dfrac{P(A \cap B)}{P(B)}


Discrete Probability Distributions

Expected Value: E(X)=xiP(X=xi)E(X) = \sum x_i \cdot P(X = x_i)

E(X²): E(X2)=xi2P(X=xi)E(X^2) = \sum x_i^2 \cdot P(X = x_i)

Binomial Distribution B(n,p)B(n, p): P(X=r)=(nr)pr(1p)nrP(X = r) = \binom{n}{r} p^r (1-p)^{n-r}

Mean =np= np, Variance =np(1p)= np(1-p), SD =np(1p)= \sqrt{np(1-p)}

Poisson Distribution with mean λ\lambda: P(X=r)=eλλrr!P(X = r) = \dfrac{e^{-\lambda} \lambda^r}{r!}

Mean =λ= \lambda, Variance =λ= \lambda

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)P(X=r) in terms of kk for r=0,1,2,r = 0, 1, 2, \ldots Use P(X=r)=1\sum P(X=r) = 1 to find kk, then compute E(X)E(X) or E(X2)E(X^2).

The trap here is forgetting that E(X2)[E(X)]2E(X^2) \neq [E(X)]^2. These are almost always different, and the question will have [E(X)]2[E(X)]^2 as a wrong option to catch you.


Memory Tricks and Shortcuts

patternMean of Squares Minus Square of Mean

Variance = X2n(Xn)2\dfrac{\sum X^2}{n} - \left(\dfrac{\sum X}{n}\right)^2. Memorise this as a two-step process: (1) compute the mean of the X2X^2 column, (2) subtract the square of the mean of XX. In the 2025 NDA PYQ, this computes in under 20 seconds once you have the numbers: 900/50(200/50)2=1816=2900/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 aa and then bb is added," the new SD is simply a×old SD|a| \times \text{old SD}. The bb vanishes. So for Y=3X+10Y = 3X + 10: new SD =3×5=15= 3 \times 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=1603 \times 50 + 10 = 160.

substitutionCV Reverse-Engineering the Mean

CV=σxˉ×100\text{CV} = \dfrac{\sigma}{\bar{x}} \times 100, so xˉ=σ×100CV\bar{x} = \dfrac{\sigma \times 100}{\text{CV}}. 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= 21 \times 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)P(X=1) = P(X=2) in a Poisson distribution, set eλλ=eλλ2/2e^{-\lambda}\lambda = e^{-\lambda}\lambda^2/2. The eλe^{-\lambda} cancels instantly, leaving λ=λ2/2\lambda = \lambda^2/2, so λ=2\lambda = 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(Xk)P(X \geq k) in a Binomial, always check whether it is faster to use the complement 1P(X<k)1 - P(X < k). For n=6n=6, P(X4)=P(4)+P(5)+P(6)P(X \geq 4) = P(4) + P(5) + P(6) — three terms, which is fewer than P(0)+P(1)+P(2)+P(3)=1P(X4)P(0) + P(1) + P(2) + P(3) = 1 - P(X \geq 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(X4)P(X \geq 4) with n=6n = 6: direct approach gives [15+6+1]/64=22/64=11/32[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:

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 \leq 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\sum X and X2\sum X^2 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?
  1. Variance (X) > Variance (Y)
  2. Variance (X) < Variance (Y)
  3. Variance (X) = Variance (Y)
  4. Cannot be determined from the given data
Solutionसमाधान
Variance(X) = ΣX²/n − (ΣX/n)² = 900/50 − (200/50)² = 18 − 16 = 2. Variance(Y) = ΣY²/n − (ΣY/n)² = 1400/50 − (250/50)² = 28 − 25 = 3. Hence Variance(X) < Variance(Y).

Solving path: Variance(X) =90050(20050)2=1816=2= \frac{900}{50} - \left(\frac{200}{50}\right)^2 = 18 - 16 = 2. Variance(Y) =140050(25050)2=2825=3= \frac{1400}{50} - \left(\frac{250}{50}\right)^2 = 28 - 25 = 3. Since 2<32 < 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)E(X^2) directly rather than [E(X)]2[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²) का मान क्या है?
  1. 5
  2. 6
  3. 4
  4. 3
  1. 5
  2. 6
  3. 4
  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=1k + 2k + 3k + 4k = 10k = 1, so k=1/10k = 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=5E(X^2) = 0^2(1/10) + 1^2(2/10) + 2^2(3/10) + 3^2(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. 1/6
  2. 2/5
  3. 1/5
  4. 1/4
  1. 1/6
  2. 2/5
  3. 1/5
  4. 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/5P = 1/5.


Why this question: Independence + union formula. This is a direct drill on the formula P(AB)=P(A)+P(B)P(A)P(B)P(A \cup 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) क्या है?
  1. 0.3
  2. 4/9
  3. 3/7
  4. 0.5
  1. 0.3
  2. 4/9
  3. 3/7
  4. 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.3P(B)=0.3+0.7P(B)0.6 = 0.3 + P(B) - 0.3 \cdot P(B) = 0.3 + 0.7 \cdot P(B). So 0.7P(B)=0.30.7 \cdot P(B) = 0.3, giving P(B)=3/7P(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 जोड़ा जाए, तो नया माध्य और मानक विचलन क्रमशः क्या होंगे?
  1. 160 and 15
  2. 160 and 5
  3. 150 and 15
  4. 160 and 45
  1. 160 और 15
  2. 160 और 5
  3. 150 और 15
  4. 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+10Y = 3X + 10. New mean =3(50)+10=160= 3(50) + 10 = 160. New SD =3(5)=15= 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 के माध्य क्रमशः क्या हैं?
  1. 35 and 50
  2. 35 and 40
  3. 40 and 50
  4. 30 and 45
  1. 35 और 50
  2. 35 और 40
  3. 40 और 50
  4. 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_A = (21 \times 100)/60 = 35. MeanB=(35×100)/70=50_B = (35 \times 100)/70 = 50. Means are 35 and 50.


Why this question: Poisson condition P(1)=P(2)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. 1/2
  2. 1
  3. 2
  4. 3
  1. 1/2
  2. 1
  3. 2
  4. 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/2e^{-\lambda}\lambda = e^{-\lambda}\lambda^2/2. Cancel eλe^{-\lambda}: λ=λ2/2\lambda = \lambda^2/2, so λ=2\lambda = 2.


Why this question: At-least Binomial probability — the classic n=6n = 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 चित आने की प्रायिकता क्या है?
  1. 7/32
  2. 11/32
  3. 1/2
  4. 21/64
  1. 7/32
  2. 11/32
  3. 1/2
  4. 21/64
Solutionसमाधान
P(X≥4)=P(4)+P(5)+P(6)=[C(6,4)+C(6,5)+C(6,6)]/2⁶=[15+6+1]/64=22/64=11/32.
P(X≥4)=P(4)+P(5)+P(6)=[C(6,4)+C(6,5)+C(6,6)]/2⁶=[15+6+1]/64=22/64=11/32।

Solving path: P(X4)=(64)+(65)+(66)26=15+6+164=2264=1132P(X \geq 4) = \dfrac{\binom{6}{4} + \binom{6}{5} + \binom{6}{6}}{2^6} = \dfrac{15 + 6 + 1}{64} = \dfrac{22}{64} = \dfrac{11}{32}.


Common Mistakes


Related Topics

Practice on SarkariRise

Sign up + get 3 free mocks →