Having problems understanding why the anti-derivative computes an area
So I'm having a peak into integral calculus and to my surprise I find out that in order to find an area beneath a curve, all I have to do is integrate the function between the points that I want the area.
I have tried watching videos and reading up on the fundamental theorem of calculus, but to no avail. I understand why the derivative of a function gives us the slope of the tangent line but I cannot for the life of me understand how the opposite gives us a whole area!
If you found any explanation that really helped you understand this concept or if you are good at explaining it, please share!
Re: Having problems understanding why the anti-derivative computes an area
To understand this, we need to understand the Mean Value Theorem. Basically, the Mean Value Theorem says that for any function that is continuous on an interval, the gradient of any chord on that interval will have the same gradient as the function at some point between them. In symbols:
.
Now let's assume that we want to evaluate the area under a curve between two points
and
. To do this, we can subdivide this interval into
rectangles and mark in the midpoints of each interval, i.e.
. The length of each rectangle will be the difference between two successive subdivisions
, and the width of each rectangle will be the value of the function at the midpoint of the interval. So the area of each rectangle is
.
Now we can approximate the entire area by adding all these rectangles. So
 f \left( m_i \right) } \end{align*})
and this approximation becomes more accurate when we make more subdivisions. So that means
 f \left( m_i \right) } \end{align*})
Let's take another look at the Mean Value Theorem:
 &= \frac{f(b) - f(a)}{b - a} \\ \left( b - a \right) f'(c) &= f(b) - f(a) \\ \textrm{ or } \left( b - a \right) f(c) &= F(b) - F(a) \textrm{ where } F'(x) = f(x) \end{align*})
Notice that the area of each rectangle looks VERY similar to the LHS of this equation (i.e. the difference between two x values multiplied by a function value evaluated at a point between the two x values). And when we increase the number of rectangles and make the subdivisions extremely small, it gets to the point where the midpoint is the ONLY point in between them, so will be the value where the gradient of the function is equal to the gradient of the chord. So that means we can use the Mean Value Theorem to simplify.
![\displaystyle \begin{align*} A &= \lim_{n \to \infty} \sum_{i = 1}^n \left( x_i - x_{i - 1} \right) f \left( m_i \right) \\ &= \lim_{n \to \infty} \sum_{i =1}^n \left[ F \left( x_i \right) - F \left( x_{i - 1} \right) \right] \\ &= \lim_{n \to \infty} \left\{ \left[ F \left( x_1 \right) - F \left( x_ 0 \right) \right] + \left[ F \left( x_2 \right) - F \left( x_1 \right) \right] + \left[ F \left( x_3 \right) - F \left( x_2 \right) \right] + \dots + \left[ F \left( x_n \right) - F \left( x_{n - 1} \right) \right] \right\} \\ &= \lim_{n \to \infty} \left[ F \left( x_n \right) - F \left( x_0 \right) \right] \\ &= \lim_{n \to \infty} \left[ F \left( b \right) - F \left( a \right) \right] \\ &= F \left( b \right) - F \left( a \right) \end{align*}](http://latex.codecogs.com/png.latex?\displaystyle \begin{align*} A &= \lim_{n \to \infty} \sum_{i = 1}^n \left( x_i - x_{i - 1} \right) f \left( m_i \right) \\ &= \lim_{n \to \infty} \sum_{i =1}^n \left[ F \left( x_i \right) - F \left( x_{i - 1} \right) \right] \\ &= \lim_{n \to \infty} \left\{ \left[ F \left( x_1 \right) - F \left( x_ 0 \right) \right] + \left[ F \left( x_2 \right) - F \left( x_1 \right) \right] + \left[ F \left( x_3 \right) - F \left( x_2 \right) \right] + \dots + \left[ F \left( x_n \right) - F \left( x_{n - 1} \right) \right] \right\} \\ &= \lim_{n \to \infty} \left[ F \left( x_n \right) - F \left( x_0 \right) \right] \\ &= \lim_{n \to \infty} \left[ F \left( b \right) - F \left( a \right) \right] \\ &= F \left( b \right) - F \left( a \right) \end{align*})
So that means to evaluate the area under a curve between two points, you evaluate the difference between an antiderivative of the function at those two points.
Re: Having problems understanding why the anti-derivative computes an area
Thank you Prove It, for a very detailed answer, as usually.