What is a probability distribution?
A description of how probability is assigned to outcomes. For discrete X, use a pmf p(k)=P(X=k) with sum p(k)=1; for continuous X, use a pdf f(x) with ∫f(x)dx=1. The CDF F(x)=P(X≤x) accumulates these probabilities.
What is the expected value (mean) of a random variable?
The long-run average value of X. For discrete X, E[X]=∑ x·P(X=x); for continuous X, E[X]=∫ x·f(x)dx.
What is variance and how is it computed?
Var(X) = E[(X−E[X])^2] = E[X^2] − (E[X])^2. It measures the spread around the mean; the standard deviation is sqrt(Var(X)).
What is the linearity of expectation?
Expectations add linearly: E[X+Y]=E[X]+E[Y], and E[aX+b]=aE[X]+b. This holds even without independence.