Questions: Uniform Distribution: Theory and Applications

5 questions to test your understanding

Score: 0 / 5
Question 1 Multiple Choice

A computer can generate uniform random numbers U ~ Uniform[0,1] and needs to produce samples from an exponential distribution with CDF F(x) = 1 − e^(−λx). Which method works?

ASquare U to approximate the exponential distribution's right-skewed shape
BGenerate many uniform values and average them; by the CLT this converges to the exponential
CCompute X = F⁻¹(U) = −ln(1 − U)/λ; by the probability integral transform X follows the exponential distribution
DThe exponential distribution cannot be derived from uniform random numbers without specialized hardware
Question 2 Multiple Choice

For a Uniform[a, b] distribution, doubling the interval width (b − a) changes the variance by a factor of:

A2 — variance doubles when width doubles
B4 — variance quadruples because Var = (b − a)²/12 and doubling the width squares to four times
C√2 — variance grows by the square root of the width increase
DThe variance does not change — it depends only on the height of the density function, which is 1/(b − a)
Question 3 True / False

For a Uniform[a, b] distribution, the probability that X lies in any sub-interval [c, d] ⊆ [a, b] is proportional to the length of that sub-interval.

TTrue
FFalse
Question 4 True / False

A large random sample from a Uniform[0, 1] distribution will have its values concentrated near the mean 0.5, just as a normal distribution concentrates near its mean.

TTrue
FFalse
Question 5 Short Answer

What is the probability integral transform, and why does it make the uniform distribution the universal foundation of random simulation?

Think about your answer, then reveal below.