Begin by establishing the general change-of-variables formula for a monotone transformation, carefully computing the inverse function g^{-1} and its derivative (the Jacobian). Then specialize to the Uniform(0,1) case, identify the resulting distribution as the standard logistic, and derive its mean and variance from known moment formulas or direct integration.
Pro tip: Explicitly verify that g^{-1} is monotonically increasing and that the support maps correctly from (0,1) to (-∞, +∞) before writing the density — Citadel interviewers will probe whether you check regularity conditions, not just mechanically apply formulas.
Note that g(u) = 1/(1+e^{-u}) is the logistic (sigmoid) function mapping ℝ → (0,1), so U = g^{-1}(X) = log(X/(1-X)) is the log-odds (logit) function mapping (0,1) → ℝ. Confirm the transformation is strictly monotone increasing, which guarantees a clean change-of-variables.
Apply the formula f_U(u) = f_X(g(u)) · |dg(u)/du|. Compute the Jacobian: dg/du = e^{-u}/(1+e^{-u})^2 = g(u)(1−g(u)), so f_U(u) = f_X(g(u)) · g(u)(1−g(u)) for u ∈ ℝ.
Substitute f_X(x) = 1 on (0,1) into the general formula: f_U(u) = 1 · g(u)(1−g(u)) = e^{-u}/(1+e^{-u})^2, which is exactly the standard logistic distribution density. State explicitly that U ~ Logistic(0,1).
The standard logistic distribution has mean 0 (by symmetry of f_U around u=0, since f_U(u) = f_U(−u)) and variance π²/3. If required to show this from scratch, use the moment generating function M(t) = πt/sin(πt) or integrate by parts, citing the result E[U²] = π²/3.
Verify the density integrates to 1 and note the practical relevance: this derivation underpins logistic regression's probabilistic interpretation, the probit-logit connection, and simulation via inverse CDF sampling — all directly relevant to quantitative modeling at a firm like Citadel.
AI-generated suggestions, not part of the candidate's original notes. May be inaccurate — verify before relying on them.