The key insight is that U(0,a) is just U(0,1) conditioned on being less than a, which is a clean way to think about it but not where my brain went first.
Start by defining the problem: you have a random variable X ~ Uniform(0, a) and want to express it in terms of U ~ Uniform(0, 1). Use the probability integral transform or a scaling argument: show that X = a * U, and derive the conditional distribution of X given U. Then explain how conditioning on U allows you to reframe the uniform distribution on (0, a) as a scaled version of the standard uniform.
Pro tip: Emphasize that this is a fundamental technique in inverse transform sampling and is widely used in simulations and probabilistic modeling. Mention that understanding this relationship is crucial for generating random variables from arbitrary distributions.
Let U ~ Uniform(0, 1) and X ~ Uniform(0, a). Clearly state their probability density functions: f_U(u) = 1 for 0 < u < 1, and f_X(x) = 1/a for 0 < x < a.
Consider the transformation X = a * U. Show that this maps U from (0,1) to X in (0,a). Verify that the CDF of X matches that of a uniform on (0,a): P(X ≤ x) = P(aU ≤ x) = P(U ≤ x/a) = x/a for 0 < x < a.
Express the conditional distribution of X given U = u. Since X = aU, given U = u, X is deterministically a*u. Thus, P(X ≤ x | U = u) = 1 if a*u ≤ x, else 0. This shows that conditioning on U gives a degenerate distribution at a*u, but the marginal distribution of X is Uniform(0,a).
Explain that this is a special case of the probability integral transform: if U ~ Uniform(0,1) and F is a CDF, then X = F^{-1}(U) has distribution F. Here, F(x) = x/a for x in (0,a), so F^{-1}(u) = a*u.
Highlight that this reframing allows generating samples from Uniform(0,a) using a standard uniform generator. It also illustrates how conditional probability can simplify understanding of scaling and transformations.
AI-generated suggestions, not part of the candidate's original notes. May be inaccurate — verify before relying on them.