What is a continuous uniform distribution?
A distribution in which every interval of equal width within the range of the parameters is equally likely
How is a continuous uniform distribution notated?
X∼U(a,b)
What is the probability density function of a random variable X∼U(a,b)
f(x)={1/(b-a) for a≤x≤b, 0 otherwise}
For a random variable X∼U(a,b), how can E(X) be calculated?
(a+b)/2
For a random variable X∼U(a,b), how can Var(X) be calculated?
(b-a)²/12
For a random variable X∼U(a,b), what is its cumulative distribution function F?
F(x)={0 for x<a, (x-a)/(b-a) for a≤x≤b, 1 for x>b}