Sarkari RiseLogin

Random Variables and Distributions Questions for SSC CGL

Free, AI-curated practice for the Random Variables and Distributions section of SSC CGL. We have 16+ verified questions in this bank. Below: 5 sample questions. Sign up free to unlock unlimited practice + AI explanations + per-topic analytics.

▶ Start free — SSC CGL mockAll SSC CGL resourcesAlready a user? Sign in →
Why this topic matters · 8 min read
Random variables and probability distributions appear in SSC CGL Tier-II Quantitative Aptitude as conceptual questions and numerical problems. Expect 1-3 questions on discrete distributions (Binomial, Poisson), continuous distributions (Normal), and basic probability properties. Weight is moderate but foundational for understanding data interpretation and statistical inference. Most questions test definition clarity, formula application, and mean/variance calculation rather than deep derivation.

What is a Random Variable?

A random variable is a function that assigns numerical values to outcomes of a random experiment. Think of it as a bridge between the abstract world of probability and the concrete world of numbers. When you roll a die, the outcome (1, 2, 3, 4, 5, 6) is a random variable. Random variables are classified into two types: discrete (takes countable values like 0, 1, 2, ...) and continuous (takes any value in an interval, like height or weight). In SSC exams, discrete random variables appear more frequently because they are easier to compute and test.

  • Random variable = function mapping outcomes to real numbers
  • Discrete RV: countable outcomes (die roll, number of defects)
  • Continuous RV: uncountable outcomes (temperature, time, distance)
  • Probability distribution describes how probability is spread across values
  • Every RV has an associated probability distribution

Discrete Probability Distributions

Discrete distributions assign probabilities to specific, countable values. The most common discrete distributions tested in SSC CGL are Binomial and Poisson. Binomial distribution models the number of successes in a fixed number of independent trials (e.g., number of heads in 10 coin flips). Poisson distribution models the number of rare events occurring in a fixed interval (e.g., number of calls received in an hour). Both have simple formulas and are tested through direct calculation or conceptual questions about their properties.

  • Binomial: fixed n trials, two outcomes (success/failure), constant probability p
  • Poisson: rare events, single parameter lambda (mean rate)
  • Probability Mass Function (PMF): P(X = k) for discrete RV
  • Mean of Binomial = np; Variance = np(1-p)
  • Mean of Poisson = lambda; Variance = lambda (unique property: mean = variance)
  • Sum of probabilities always equals 1
Key formulas
Binomial Probability
P(X = k) = C(n,k) * p^k * (1-p)^(n-k)
When: Finding probability of exactly k successes in n independent trials with success probability p
Poisson Probability
P(X = k) = (e^(-lambda) * lambda^k) / k!
When: Finding probability of exactly k rare events in fixed interval with average rate lambda
Mean of Discrete RV
E(X) = sum of [x * P(X=x)] for all x
When: Calculating expected value or average outcome
Variance of Discrete RV
Var(X) = E(X^2) - [E(X)]^2
When: Measuring spread or variability of distribution
Worked examples

A coin is flipped 5 times. Find probability of exactly 3 heads. Here n=5, k=3, p=0.5. P(X=3) = C(5,3) * 0.5^3 * 0.5^2 = 10 * 0.03125 = 0.3125 or 10/32.

On average, 2 defects occur per 100 units. Find probability of exactly 3 defects in 100 units. Here lambda=2. P(X=3) = (e^(-2) * 2^3) / 3! = (0.135 * 8) / 6 = 0.180 (approx).

Continuous Probability Distributions

Continuous distributions assign probabilities to ranges of values, not individual points. The most important continuous distribution for SSC CGL is the Normal (Gaussian) distribution, which is bell-shaped and symmetric. For continuous RVs, we use Probability Density Function (PDF) instead of PMF. The area under the PDF curve between two points gives the probability that the RV falls in that range. The Normal distribution is defined by two parameters: mean (mu) and standard deviation (sigma). Standardization using the Z-score converts any Normal distribution to the standard Normal (mean=0, sigma=1), allowing use of standard tables.

  • Continuous RV: probability at single point is zero; probability over interval matters
  • Probability Density Function (PDF): f(x) describes shape, area under curve = probability
  • Normal distribution: symmetric, bell-shaped, defined by mean and standard deviation
  • 68-95-99.7 rule: 68% within 1 sigma, 95% within 2 sigma, 99.7% within 3 sigma
  • Z-score standardization: Z = (X - mu) / sigma converts to standard Normal
Key formulas
Normal Distribution PDF
f(x) = (1 / (sigma * sqrt(2*pi))) * e^(-(x-mu)^2 / (2*sigma^2))
When: Describing shape of Normal distribution (rarely computed directly in SSC; use tables instead)
Z-score
Z = (X - mu) / sigma
When: Standardizing a value to find probability using standard Normal table
Mean of Continuous RV
E(X) = integral of [x * f(x)] dx
When: Calculating expected value (usually given or simple for standard distributions)
Worked examples

Heights of students are Normally distributed with mean 170 cm and sigma 5 cm. Find P(X < 175). Z = (175-170)/5 = 1. From standard Normal table, P(Z < 1) = 0.8413 or 84.13%.

Test scores follow Normal distribution with mean 50 and sigma 10. Find P(40 < X < 60). Z1 = (40-50)/10 = -1, Z2 = (60-50)/10 = 1. P(-1 < Z < 1) = 0.6826 or 68.26% (from 68-95-99.7 rule).

Properties and Relationships

Understanding how random variables behave under transformations and combinations is crucial for SSC CGL. If X is a random variable with mean E(X) and variance Var(X), then linear transformations like Y = aX + b follow predictable rules. Also, the sum of independent random variables has mean equal to sum of means and variance equal to sum of variances. These properties are tested through indirect questions where you must apply them to solve real-world scenarios.

  • E(aX + b) = aE(X) + b (linearity of expectation)
  • Var(aX + b) = a^2 * Var(X) (variance unaffected by constant shift)
  • For independent X and Y: E(X+Y) = E(X) + E(Y) and Var(X+Y) = Var(X) + Var(Y)
  • Covariance measures relationship between two variables; zero for independent variables
  • Standard deviation = sqrt(variance); always positive
⚠ Common mistakes to avoid
  • Confusing PMF with PDF: PMF is for discrete (gives probability at point), PDF is for continuous (gives density, area gives probability). Students often try to read probability directly from PDF value instead of integrating.
  • Forgetting that Poisson mean equals variance: Many students memorize only mean=lambda but forget variance=lambda. This unique property is tested to check conceptual understanding.
  • Misapplying Binomial when trials are not independent: Binomial requires independence and constant p. Drawing without replacement violates independence; students must recognize this and use hypergeometric instead.
  • Incorrect Z-score calculation: Students often forget to divide by sigma or use wrong sign. Always check: Z = (observed - mean) / standard deviation, with correct sign.
  • Assuming Normal distribution without verification: Not all distributions are Normal. Students must read problem carefully; if stated as Normal, use Z-table; if not stated, cannot assume.
🧠 Memory aids
  • BINOMIAL = BIN (Binary outcomes) + NOMIAL (n trials, constant p). Think: coin flips, pass/fail tests.
  • POISSON = POI (Rare events) + SON (in a given time/space interval). Think: accidents per day, typos per page.
  • 68-95-99.7 = One-Two-Three sigma rule: 1 sigma covers 68%, 2 sigma covers 95%, 3 sigma covers 99.7%. Visualize bell curve divided into bands.
  • Z-score = 'How many sigmas away from mean?' Positive Z means above mean, negative means below. Use standard Normal table after calculating Z.
🎯 SSC CGL exam tips
  • SSC CGL Tier-II typically has 1-2 direct questions on distributions, often asking for probability calculation using Binomial or Poisson formula. Memorize the formulas and practice substitution quickly.
  • Normal distribution questions often appear as word problems (heights, test scores, weights). Always standardize using Z-score and reference the 68-95-99.7 rule or standard Normal table provided in exam.
  • Expect conceptual questions like 'Which distribution has mean = variance?' (Answer: Poisson). These test understanding without calculation.
  • Data Interpretation sets sometimes embed random variable concepts. Recognize when a question is asking about probability distribution of a sample statistic (e.g., sample mean).
  • Time management: Binomial and Poisson calculations are straightforward if you memorize formulas. Spend max 2-3 minutes per question. Normal distribution questions may require table lookup; practice this beforehand.

Sample questions

Q1 · medium · AI-verified
A discrete random variable X takes values 1, 2, and 3 with probabilities 0.2, 0.5, and 0.3 respectively. What is E(X)?
  1. 2.1
  2. 2.0
  3. 1.9
  4. 2.5
Q2 · hard · AI-verified
If X and Y are independent random variables with Var(X) = 4 and Var(Y) = 9, what is Var(3X − 2Y + 5)?
  1. 85
  2. 61
  3. 72
  4. 54
Q3 · hard · AI-verified
Two random variables X and Y have joint PDF f(x,y) = 2 for 0 < x < y < 1. What is the marginal PDF f_X(x)?
  1. 2(1−x) for 0 < x < 1
  2. 2x for 0 < x < 1
  3. 1 for 0 < x < 1
  4. 2y for 0 < y < 1
Q4 · hard · AI-verified
If X is a binomial random variable with parameters n = 10 and p = 0.4, what is the variance of X?
  1. 1.6
  2. 4.0
  3. 2.4
  4. 2.0
Q5 · hard · AI-verified
If X ~ Geometric(p) (number of trials until first success), what is E(X)?
  1. 1/(1−p)
  2. 1/p
  3. (1−p)/p
  4. p/(1−p)
💡 Want answers + explanations + 11+ more Random Variables and Distributions questions? Sign up free →
⭐ Recommended for SSC CGL aspirants

Full AI 6-Month

all your target exams · 6 months · unlimited mocks + AI
₹799~₹4.4/day
Sign up free, then unlockSee all plans →

More SSC CGL topics

One Word Substitution
277+ practice questions
Idioms and Phrases
264+ practice questions
Fill in the Blanks
252+ practice questions
Spotting Errors
229+ practice questions
Antonyms
228+ practice questions
Synonyms
215+ practice questions

Free practice, AI explanations, 24 exams — all in one app

Daily 10-Q quiz · AI doubt solver in Hindi + English · adaptive mocks · 49,000+ practice questions (19,000+ verified PYQs).

Sign up freePricingTry Daily 10-Q