UW STAT 425: Introduction to Nonparametric Statistics (2026 Winter)
Lecture 2: CDF and EDF

Instructor: Yen-Chi Chen

CDF: Cumulative Distribution Function

For a random variable \(X\), its CDF \(F(x)\) contains all the probability structures of \(X\). Here are some properties of \(F(x)\):

Example. For a uniform random variable over \([0,1]\), its CDF \[F(x) = \int_{0}^x 1 \,\,du = x\] when \(x\in[0,1]\) and \(F(x)=0\) if \(x<0\) and \(F(x)=1\) if \(x>1\).

Example. For an exponential random variable with parameter \(\lambda\), its CDF \[F(x) = \int_{0}^x \lambda e^{-\lambda u}du = 1-e^{-\lambda x}\] when \(x\geq 0\) and \(F(x)=0\) if \(x<0\). The following provides the CDF (left) and PDF (right) of an exponential random variable with \(\lambda=0.5\):

Why do we care about the CDF? Why not just use the PDF or PMF? CDF is the actual quantity that defines the probability structure of a random variable. The PDF exists only when the RV is continuous and the PMF exists when the RV is discrete. But CDF always exists – it is a unified quantity regardless of the RV being continuous or discrete. Moreover, there are cases where neither PDF nor PMF exists.

Example. \(X\) is a random variable such that with a probability of \(0.5\), it is from a uniform distribution over the interval \([0,1]\) and with a probability of \(0.5\) it takes a fixed value \(0.5\). Such an \(X\) does not have a PDF or a PMF but its CDF still exists (think about what its CDF looks like).

In the two-sample test, the \(P_X\) and \(P_Y\) in the hypothesis \(H_0: P_X = P_Y\) are actually the CDF of the sample of \(X\) and the CDF of the sample of \(Y\). Essentially, the two-sample test is to determine if the two CDFs are the same or not.

EDF: Empirical Distribution Function

Let us first look at the function \(F(x)\) more closely. Given a value \(x_0\), \[F(x_0) = P(X_i\leq x_0)\] for every \(i=1,\cdots, n\). Namely, \(F(x_0)\) is the probability of the event \(\{X_i\leq x_0\}\).

A natural estimator of a probability of an event is the ratio of such an event in our sample. Thus, we use \[\begin{equation} \widehat{F}_n(x_0)= \frac{\mbox{number of $X_i$ $\leq x_0$}}{\mbox{total number of observations}} = \frac{\sum^n_{i=1}I(X_i\leq x_0)}{n} = \frac{1}{n}\sum^n_{i=1}I(X_i\leq x_0) \end{equation}\] as the estimator of \(F(x_0)\).

For every \(x_0\), we can use such a quantity as an estimator, so the estimator of the CDF, \(F(x)\), is \(\widehat{F}_n(x)\). This estimator, \(\widehat{F}_n(x)\), is called the empirical distribution function (EDF).

Example. Here is an example of the EDF of 5 observations of \(1, 1.2, 1.5,2,2.5\):

There are 5 jumps, each located at the position of an observation. Moreover, the height of each jump is the same: \(\frac{1}{5}\).

Example. While the previous example might not look like an idealized CDF, the following provides a case of EDF versus CDF where we generate \(n=100,1000\) random points from the standard normal \(N(0,1)\):

The red curve indicates the true CDF of the standard normal. Here you can see that when the sample size is large, the EDF is pretty close to the true CDF.

Property of EDF

Because EDF is the average of \(I(X_i\leq x)\), we now study the properties of \(I(X_i\leq x)\) first. For simplicity, let \(Y_i = I(X_i\leq x)\). What is the random variable \(Y_i\)?

Here is the breakdown of \(Y_i\): \[Y_i = \begin{cases} 1,\quad \mbox{if $X_i\leq x$}\\ 0,\quad \mbox{if $X_i> x$} \end{cases}.\] So \(Y_i\) only takes value \(0\) and \(1\)–so it is actually a Bernoulli random variable! We know that a Bernoulli random variable has a parameter \(p\) that determines the probability of outputting \(1\). What is the parameter \(p\) for \(Y_i\)? \[p = P(Y_i=1) = P(X_i\leq x) = F(x).\] Therefore, for a given \(x\), \[Y_i \sim {\sf Ber} (F(x)).\] This implies \[\begin{align*} \mathbb{E}(I(X_i\leq x)) &= \mathbb{E}(Y_i) = F(x)\\ {\sf Var}(I(X_i\leq x))& = {\sf Var}(Y_i) = F(x)(1-F(x)) \end{align*}\] for a given \(x\).

Now what about \(\widehat{F}_n(x)\)? Recall that \(\widehat{F}_n(x) = \frac{1}{n}\sum^n_{i=1}I(X_i\leq x) = \frac{1}{n}\sum_{i=1}^n Y_i\). Then \[\begin{align*} \mathbb{E}\left(\widehat{F}_n(x)\right) &= \mathbb{E}(I(X_1\leq x)) = F(x)\\ {\sf Var}\left(\widehat{F}_n(x)\right)& = \frac{\sum_{i=1}^n{\sf Var}(Y_i)}{n^2} = \frac{F(x)(1-F(x))}{n}. \end{align*}\] What does this tell us about using \(\widehat{F}_n(x)\) as an estimator of \(F(x)\)?

First, at each \(x\), \(\widehat{F}_n(x)\) is an unbiased estimator of \(F(x)\): \[{\bf bias}\left(\widehat{F}_n(x)\right) = \mathbb{E}\left(\widehat{F}_n(x)\right)-F(x) = 0.\] Second, the variance converges to \(0\) when \(n\rightarrow \infty\). By Lemma 0.3, this implies that for a given \(x\), \[\widehat{F}_n(x) \overset{P}{\rightarrow} F(x).\] i.e., \(\widehat{F}_n(x)\) is a consistent estimator of \(F(x)\).

In addition to the above properties, the EDF also has the following interesting feature: for a given \(x\), \[\sqrt{n}\left(\widehat{F}_n(x)-F(x)\right) \overset{D}{\rightarrow} N(0, F(x)(1-F(x))).\] Namely, \(\widehat{F}_n(x)\) is asymptotically normally distributed around \(F(x)\) with variance \(F(x)(1-F(x))\).

Example. Assume \(X_1,\cdots,X_{100}\sim F\), where \(F\) is a uniform distribution over \([0,2]\). Questions:

Remark. The above analysis shows that for a given \(x\), \[|\widehat{F}_n(x)-F(x)| \overset{P}{\rightarrow}0.\] This is related to the pointwise convergence in mathematical analysis (you may have learned this in STAT 300). We can extend this result to a uniform sense: \[\sup_x|\widehat{F}_n(x)-F(x)| \overset{P}{\rightarrow}0.\] However, deriving such a uniform convergence requires more involved probability tools so we will not cover it here. But an important fact is that such a uniform convergence in probability can be established under some conditions.

Question to think about: Think about how to construct a \(95\%\) confidence interval of \(F(x)\) for a given \(x\).

Inverse of a CDF

Let \(X\) be a continuous random variable with CDF \(F(x)\). Let \(U\) be a uniform distribution over \([0,1]\). Now we define a new random variable \[W = F^{-1}(U),\] where \(F^{-1}\) is the inverse of the CDF. What will this random variable \(W\) be?

To understand \(W\), we examine its CDF \(F_W\): \[\begin{align*} F_W(w) = P(W\leq w) = P(F^{-1}(U)\leq w) = P(U\leq F(w)) = \int_{0}^{F(w)} 1\,\, dx = F(w)-0 = F(w). \end{align*}\] Thus, \(F_W(w)=F(w)\) for every \(w\), which implies that the random variable \(W\) has the same CDF as the random variable \(X\)! So this leads to a simple way to generate a random variable from \(F\) as long as we know \(F^{-1}\). We first generate a random variable \(U\) from a uniform distribution over \([0,1]\). And then we feed the generated value into the function \(F^{-1}\). The resulting random number, \(F^{-1}(U)\), has CDF \(F\).

This interesting fact also leads to the following result. Consider a random variable \(V = F(X)\), where \(F\) is the CDF of \(X\). Then the CDF of \(V\) \[F_V(v) = P(V\leq v) = P(F(X)\leq v) = P(X\leq F^{-1}(v)) = F(F^{-1}(v)) = v\] for any \(v\in[0,1]\). Therefore, \(V\) is actually a uniform random variable over \([0,1]\).

Example. Here is a method of generating a random variable \(X\) from Exp(\(\lambda\)) from a uniform random variable over \([0,1]\). We have already calculated that for an Exp(\(\lambda\)), the CDF \[F(x) = 1-e^{-\lambda x}\] when \(x\geq 0\). Thus, \(F^{-1}(u)\) will be \[F^{-1}(u) = \frac{-1}{\lambda}\log(1-u).\] So the random variable \[W = F^{-1}(U) = \frac{-1}{\lambda}\log(1-U)\] will be an Exp(\(\lambda\)) random variable.

Applications in Testing

Going back to the two-sample test problem, because \(H_0: P_X = P_Y\) is essentially testing \(H_0: F_X = F_Y\), we can use EDF to estimate both \(F_X\) and \(F_Y\) and then carry out the test. Before we describe the two-sample test, we first study a simpler case – one-sample test problem – testing against a known distribution. This problem is also known as the goodness-of-fit test. Later we will discuss how to generalize to two-sample test.

Goodness-of-fit Test

Sometimes we have only one sample and the goal is to determine if this sample is from a known distribution. Say we want to test if a collection of values are from a normal distribution. Then we can use the one-sample test or goodness-of-fit test approach.

Assume that we want to test if \(X_1,\cdots,X_n\) are from a known distribution \(F_0\) (goodness-of-fit test), i.e., \[H_0: X_1,\cdots, X_n \sim F_0.\] There are three approaches for testing if they are from \(F_0\):

The p-values will be computed based on the limiting distribution and the observed test statistic.

Two-sample Test

Going back to the two-sample test problem. Let \(X_1,\cdots, X_n\) and \(Y_1,\cdots, Y_m\) be the two samples we have. Let \(\widehat{F}_X\) and \(\widehat{F}_Y\) denote the EDFs of the first and the second samples, respectively. In addition, we define the EDF by treating both samples as the same sample: \[\widehat{H}(t) = \frac{n\widehat{F}_X(t) + m \widehat{F}_Y(t)}{n+m} = \frac{1}{n+m}\left(\sum_{i=1}^nI(X_i\leq t) + \sum_{j=1}^m I(Y_j\leq t)\right).\]


  1. https://en.wikipedia.org/wiki/Kolmogorov%E2%80%93Smirnov_test↩︎

  2. There are assumptions for such a uniform convergence but it is generally true so we omit the details.↩︎

  3. https://en.wikipedia.org/wiki/Cram%C3%A9r%E2%80%93von_Mises_criterion↩︎

  4. https://en.wikipedia.org/wiki/Anderson%E2%80%93Darling_test↩︎