Riemann Integration
We've encountered many integrals in statistics, and you might have noticed that some of them differ from the ones we
learned in early calculus classes. While we often rely on numerical methods to compute these integrals, gaining a deeper
understanding of their foundations can provide valuable insights. To begin, let's quickly review one of the most familiar
types of integrals: the Riemann Integral.
Let \(f: [a, b] \to \mathbb{R} \) be a bounded function defined on a closed interval \([a, b]\) where \(a, b \in \mathbb{R}\).
A partition \(\mathcal{P}\) of \([a, b]\) is a finite sequence of points:
\[
\mathcal{P} = \{x_0, x_1, x_2, \cdots, x_n\}
\]
where \(a = x_0 < x_1 < x_2 < \cdots < x_n = b\) and \(n \in \mathbb{N}\).
The collection of all subintervals that are formed by \(\mathcal{P}\) are given by:
\[
[x_{i-1}, x_i] \quad \text{for } i = 1, 2, \cdots, n.
\]
For each subinterval, we denote the infimum (greatest lower bound) and the supremum
(least upper bound) of \(f\) as follows respecively:
\[
\begin{align*}
&m_i = \inf_{x\in [x_{i-1}, x_i]} f(x), \\\\
&M_i = \sup_{x\in [x_{i-1}, x_i]} f(x).
\end{align*}
\]
Here, we define the lower sum and the upper sum as follows respectively:
\[
\begin{align*}
&L(f, \mathcal{P}) = \sum_{i=1}^n m_i (x_i - x_{i-1}), \\\\
&U(f, \mathcal{P}) = \sum_{i=1}^n M_i (x_i - x_{i-1}).
\end{align*}
\]
The lower Riemann integral and the upper Riemann integral of \(f\) over \([a, b]\) are as follows respecively:
\[
\begin{align*}
&\underline{\int_a^b} f(x)dx = \sup_{\mathcal{P}} L(f, \mathcal{P}), \\\\
&\overline{\int_a^b} f(x)dx = \inf_{\mathcal{P}} U(f, \mathcal{P}).
\end{align*}
\]
A function \(f\) is said to be Riemann integrable on \([a, b]\) if
\[
\underline{\int_a^b} f(x)dx = \overline{\int_a^b} f(x)dx = \alpha.
\]
When this holds, the common value \(\alpha\) is called the Riemann integral of \(f\) over \([a, b]\):
\[
\int_a^b f(x)dx = \alpha.
\]
Note: Equivalently, we can use the norm of the partition \(\mathcal{P}\):
\[
\| \mathcal{P} \| = \max_{1 \leq i \leq n} (x_i - x_{i-1}).
\]
then a function \(f\) is said to be Riemann integrable on \([a, b]\) if for any \(\| \mathcal{P} \|\),
\[
\lim_{ \| \mathcal{P} \| \to 0} L(f, \mathcal{P}) = \lim_{ \| \mathcal{P} \| \to 0} U(f, \mathcal{P}) = \alpha.
\]
- If a function \(f\) is Riemann integrable on \([a, b]\), then \(f\) is bounded on \([a, b]\).
- A continuous function on \([a, b]\) is Riemann integrable on \([a, b]\).
- A monotonic function on \([a, b]\) is Riemann integrable on \([a, b]\).