A discrete random variable (DRV) X takes a countable set of values, each with an assigned probability. The collection of these probabilities is the probability distribution of X, and it must satisfy ∑P(X=x)=1.
What you need to know
A valid probability distribution table requires every probability to be non-negative and all probabilities to sum to exactly 1: ∑P(X=x)=1.
The expectation (mean) is E(X)=∑xP(X=x).
The variance is Var(X)=E(X2)−[E(X)]2, where E(X2)=∑x2P(X=x).
X∼B(n,p) (binomial) requires: fixed number of trials n; independent trials; constant probability of success p; exactly two outcomes per trial.
Binomial probability: P(X=x)=(xn)px(1−p)n−x for x=0,1,…,n.
Binomial mean and variance: E(X)=np and Var(X)=np(1−p).
Worked example 1 — expectation and variance from a distribution table
A discrete random variable X has the following probability distribution.
Worked example 2 — binomial probability for an extreme tail
The probability that a particular biased coin lands on heads on any toss is 0.3. The coin is tossed 10 times. Let X be the number of heads, so X∼B(10,0.3).
A multiple-choice quiz has 20 questions, each with 4 options. A student guesses every answer at random. Let X be the number of correct answers.
State the distribution of X and find its mean and standard deviation.
The conditions for a binomial model are satisfied: 20 independent questions (n=20), constant probability of success p=41 per question, and exactly two outcomes (correct / incorrect). Hence X∼B(20,41).
Forgetting to verify ∑P(X=x)=1 before computing expectations — an invalid distribution gives meaningless answers, and an exam question may test this step directly.
Using Var(X)=E(X2)−E(X)2 carelessly by forgetting to square E(X); write out [E(X)]2 explicitly to avoid the error.
Applying the binomial model when the trials are not independent — for example, drawing without replacement from a small population violates constant p, so B(n,p) does not apply.
Confusing P(X≥k) with P(X>k) when using the GC’s binomial CDF; recall that P(X≥k)=1−P(X≤k−1).