I am following the arc length tutorial found here. To derive the arc length formula, the author uses the Mean Value Theorem to express $\Delta y$ in terms of $x$.
"By the Mean Value Theorem we know that on the interval $[x_{i-1}, x_1]$ there is a point $x^*_i$ so that,"
$$ \Delta y_i = f'(x_i^*)\Delta x \\ L = \lim_{n \to \infty} \sum_{i=1}^n \sqrt{1 + [f'(x^*_i)]^2}\Delta x $$
The formula is then written as a definite integral, like so $$ L = \int_a^b \sqrt{1 + [f'(x)]^2}d x $$
Why does $x_i^*$ get simplified to a single $x$? Is the integral implying that because of the infinitely-small $\Delta x$, that the special point that makes the MVT true converges to $x$? If so, then why is the MVT even needed for the definition of arc length?