How would you work out cumulative distribution?
f(x) = P(X<=x)
Adding up the probabilities before a certain values, specified in the P(X<=x)
What is the meaning of ∑x*P(X=x) ?
It is the mean:
Score * Probability
How would you deal with E(aX)?
aE(X)
How would you deal with E(aX+b)?
aE(X) + b
How would you deal with Var(aX)?
a^2 * Var(X)
How would you deal with Var(aX + b)?
a^2 * Var(X)
What is a simplified formula for Var(X)?
E(X^2) - [E(x)]^2
What is discrete uniform distribution?
A variable X is defined over a set of n distinct values.
e.g. P(X=x) = 1/n for all values of x.
(Basically… When all probabilities are equally likely - the same.)