Definite Integrals: Definition, Properties & Examples

#Calculus
TL;DR
Definite integrals measure the signed area between a curve and the x-axis over a fixed interval $[a, b]$, written $\int_a^b f(x),dx$ and defined as the limit of Riemann sums. The Fundamental Theorem of Calculus evaluates one as $F(b) - F(a)$, where $F$ is any antiderivative of $f$. The result is a single number, with no $+C$, which is what separates it from the indefinite integral.
BT
Bhanzu TeamLast updated on September 22, 202612 min read

What Are Definite Integrals?

Definite integrals are the tool for measuring the signed area between the graph of a function and the x-axis across a fixed interval. For a function $f$ on the interval $[a, b]$, the definite integral is written

$$\int_a^b f(x),dx$$

where $a$ is the lower limit, $b$ is the upper limit, and $f(x)$ is the integrand. Precisely, it is defined as the limit of Riemann sums:

$$\int_a^b f(x),dx = \lim_{n \to \infty} \sum_{i=1}^{n} f(x_i^{*}),\Delta x, \qquad \Delta x = \frac{b - a}{n}$$

The interval $[a, b]$ is chopped into $n$ thin strips of width $\Delta x$. On each strip you build a rectangle of height $f(x_i^{*})$, add up the rectangle areas, and let the strips get infinitely thin. That limit is the area under the curve, counted as signed area: regions above the x-axis add, regions below subtract.

Two features set the definite integral apart from the indefinite integral:

  • A definite integral is a number. An indefinite integral $\int f(x),dx$ is a whole family of functions.

  • A definite integral carries no constant of integration. The $+C$ that lives on every indefinite integral cancels when you evaluate, as the next section shows.

Computing that limit of sums by hand for every problem would be brutal. The Fundamental Theorem of Calculus is the shortcut that makes definite integrals practical.

How Do You Evaluate A Definite Integral?

To evaluate a definite integral, find an antiderivative of the integrand and subtract its value at the lower limit from its value at the upper limit. This is the Fundamental Theorem of Calculus, Part 2, and it is stated precisely as follows.

Fundamental Theorem of Calculus (Part 2). If $f$ is continuous on the closed interval $[a, b]$ and $F$ is any antiderivative of $f$ on that interval (so $F'(x) = f(x)$), then $$\int_a^b f(x),dx = F(b) - F(a).$$

The continuity hypothesis matters: the result is guaranteed when $f$ is continuous on all of $[a, b]$. The bracket notation $\big[F(x)\big]_a^b$ is shorthand for $F(b) - F(a)$.

Watch how the $+C$ disappears. If $F(x) + C$ is used instead of $F(x)$:

$$\big[F(b) + C\big] - \big[F(a) + C\big] = F(b) - F(a)$$

The constant cancels itself, which is exactly why a definite integral never carries one.

Example 1: Evaluate $\int_1^2 (2x + 1),dx$.

Find an antiderivative $F$ with $F'(x) = 2x + 1$:

$$F(x) = x^2 + x$$

Apply the theorem:

$$\int_1^2 (2x + 1),dx = \big[x^2 + x\big]_1^2 = (2^2 + 2) - (1^2 + 1) = 6 - 2 = 4$$

Check: differentiating $F(x) = x^2 + x$ gives $F'(x) = 2x + 1$, the original integrand, so the antiderivative is correct.

Final answer: $\int_1^2 (2x + 1),dx = 4$.

How Do Riemann Sums Give The Exact Area?

The FTC gives the answer in one line, but it helps to see the limit of sums actually reach it. Take $\int_0^2 x^2,dx$ using rectangles with right endpoints. Split $[0, 2]$ into $n$ equal strips, so $\Delta x = \dfrac{2}{n}$ and the $i$-th right endpoint is $x_i = \dfrac{2i}{n}$.

The Riemann sum is

$$\sum_{i=1}^{n} f(x_i),\Delta x = \sum_{i=1}^{n} \left(\frac{2i}{n}\right)^2 \cdot \frac{2}{n} = \frac{8}{n^3} \sum_{i=1}^{n} i^2$$

Using the standard identity $\displaystyle\sum_{i=1}^{n} i^2 = \frac{n(n+1)(2n+1)}{6}$:

$$\frac{8}{n^3} \cdot \frac{n(n+1)(2n+1)}{6} = \frac{8}{6} \cdot \frac{(n+1)(2n+1)}{n^2} = \frac{4}{3} \cdot \frac{2n^2 + 3n + 1}{n^2}$$

Now take the limit as $n \to \infty$. The fraction $\dfrac{2n^2 + 3n + 1}{n^2} \to 2$, so

$$\int_0^2 x^2,dx = \frac{4}{3} \cdot 2 = \frac{8}{3}$$

The FTC agrees instantly: an antiderivative of $x^2$ is $F(x) = \dfrac{x^3}{3}$, and $\big[\tfrac{x^3}{3}\big]_0^2 = \tfrac{8}{3} - 0 = \tfrac{8}{3}$. The slow limit and the fast theorem land on the same number, $\tfrac{8}{3} \approx 2.6667$.

What Are The Properties Of Definite Integrals?

Definite integrals obey a short list of rules that turn hard integrals into easy ones. Each is stated below with $f$ and $g$ continuous on the interval involved.

  • Linearity. Constants pull out and sums split apart: $$\int_a^b \big[\alpha f(x) + \beta g(x)\big],dx = \alpha \int_a^b f(x),dx + \beta \int_a^b g(x),dx$$

  • Zero-width interval. Integrating over a single point gives nothing: $$\int_a^a f(x),dx = 0$$

  • Swapping the limits flips the sign. Reversing the direction of integration negates the result: $$\int_a^b f(x),dx = -\int_b^a f(x),dx$$

  • Additivity over intervals. You can split the interval at any inner point $c$: $$\int_a^c f(x),dx = \int_a^b f(x),dx + \int_b^c f(x),dx$$

  • Comparison bound. If $m \le f(x) \le M$ for all $x$ in $[a, b]$, the integral is trapped between two rectangle areas: $$m(b - a) \le \int_a^b f(x),dx \le M(b - a)$$

Two quick checks on our running example confirm these hold. Additivity: $\int_0^2 x^2,dx = \int_0^1 x^2,dx + \int_1^2 x^2,dx = \tfrac{1}{3} + \tfrac{7}{3} = \tfrac{8}{3}$. Comparison: on $[0, 2]$ the values of $x^2$ run from $0$ to $4$, so $0 \le \int_0^2 x^2,dx \le 8$, and indeed $\tfrac{8}{3} \approx 2.667$ sits inside that band.

Table: The core properties of definite integrals at a glance.

Property

Statement

What it does

Linearity

$\int_a^b (\alpha f + \beta g) = \alpha\int_a^b f + \beta\int_a^b g$

Break a hard integrand into simple pieces

Zero width

$\int_a^a f = 0$

No interval means no area

Reversed limits

$\int_a^b f = -\int_b^a f$

Direction sets the sign

Additivity

$\int_a^c f = \int_a^b f + \int_b^c f$

Glue or split intervals

Comparison

$m(b-a) \le \int_a^b f \le M(b-a)$

Bound an integral you cannot solve exactly

How Do You Read Signed Area And Net Area?

A definite integral counts area with a sign. Above the x-axis is positive, below is negative, and the integral reports the net result. This is where the geometry and the algebra must be read together.

Example 2: Evaluate $\int_0^\pi \sin x,dx$.

An antiderivative of the sine function is $F(x) = -\cos x$, since $F'(x) = \sin x$.

$$\int_0^\pi \sin x,dx = \big[-\cos x\big]_0^\pi = (-\cos \pi) - (-\cos 0) = -(-1) + 1 = 2$$

On $[0, \pi]$ the sine curve stays above the axis, so all its area is positive and the answer, $2$, is a genuine area.

Example 3: Evaluate $\int_0^{2\pi} \sin x,dx$.

$$\int_0^{2\pi} \sin x,dx = \big[-\cos x\big]_0^{2\pi} = (-\cos 2\pi) - (-\cos 0) = -1 + 1 = 0$$

The result is $0$, yet the curve clearly encloses area. Over $[\pi, 2\pi]$ the sine dips below the axis, and that hump has the same size as the one above, $\int_\pi^{2\pi}\sin x,dx = -2$. The positive $2$ and the negative $2$ cancel, giving net area $0$.

If you want total area rather than net area, integrate the absolute value, or integrate each piece and add the sizes:

$$\text{total area} = \big|,2,\big| + \big|-2,\big| = 4$$

The same split explains why odd functions integrate to zero over symmetric intervals. For $\int_{-1}^{1} x^3,dx$, with antiderivative $F(x) = \tfrac{x^4}{4}$:

$$\int_{-1}^{1} x^3,dx = \Big[\tfrac{x^4}{4}\Big]_{-1}^{1} = \tfrac{1}{4} - \tfrac{1}{4} = 0$$

The piece on $[0, 1]$ is positive and its mirror image on $[-1, 0]$ is equally negative, so an odd function always nets to zero across a symmetric interval. Reading "$0$" as "no area" is a genuine mistake; it means the area above and below balanced out.

What Is The Average Value Of A Function?

The definite integral also delivers the average height of a function over an interval. The average value of $f$ on $[a, b]$ is the integral divided by the interval width:

$$f_{\text{avg}} = \frac{1}{b - a} \int_a^b f(x),dx$$

Geometrically, it is the height of a rectangle on the base $[a, b]$ whose area equals the area under the curve. For $f(x) = x^2$ on $[0, 2]$:

$$f_{\text{avg}} = \frac{1}{2 - 0} \int_0^2 x^2,dx = \frac{1}{2} \cdot \frac{8}{3} = \frac{4}{3} \approx 1.3333$$

So a flat line at height $\tfrac{4}{3}$ traps the same area over $[0, 2]$ as the parabola does. This is how a definite integral answers questions like "what was the average speed" or "what was the mean temperature" when the quantity changes continuously.

Why Do Definite Integrals Work?

The reason the FTC ties area to an antiderivative is worth seeing, because it is the whole engine of the subject.

  • Area builds up gradually. Define an accumulation function $g(x) = \int_a^x f(t),dt$, the area collected from $a$ up to a moving right edge $x$.

  • Its rate of growth is the height. When you nudge the right edge a tiny bit, the extra sliver of area is roughly the current height times the tiny width. So the rate at which area accumulates is exactly $f(x)$, which is the statement $g'(x) = f(x)$ (the Fundamental Theorem of Calculus, Part 1).

  • That makes $g$ an antiderivative of $f$. Any two antiderivatives differ only by a constant, so any antiderivative $F$ gives the same difference $F(b) - F(a)$, which cancels the unknown constant.

  • The two views line up. The algebraic picture (undo a derivative) and the geometric picture (accumulate area) are the same act described from two directions, which is why a slope tool and an area tool share one theorem.

Put simply, differentiating asks "how fast is the area growing," and the answer is "as fast as the curve is tall." Reverse that question and you are integrating.

Who Invented Definite Integrals?

The idea of area-as-a-limit is ancient, but the shortcut that made it usable and the rigor that made it safe arrived much later.

Two more figures shaped the story:

  • Archimedes (c. 287–212 BCE, Syracuse, Greece) found areas and volumes by the "method of exhaustion", squeezing a shape between inner and outer polygons, essentially a Riemann sum two thousand years early.

  • Bernhard Riemann (1826–1866, Germany) gave the definite integral its rigorous definition in 1854 as the limit of the sums that now carry his name, settling exactly which functions can be integrated.

Where Are Definite Integrals Used In The Real World?

The pattern "add up a changing rate over an interval" appears across the sciences and engineering.

  • Physics and motion: integrating velocity over a time interval gives displacement, and integrating acceleration gives the change in velocity.

  • Engineering: the work done by a variable force, the center of mass of a beam, and the total charge from a changing current are all definite integrals.

  • Economics: integrating a marginal-cost or marginal-revenue rate over a range of output gives the total cost or revenue accumulated over that range.

  • Biology and medicine: the total drug exposure in the bloodstream (the "area under the curve" of a concentration graph) is a definite integral doctors read directly.

  • Geometry and graphics: areas of curved regions, arc lengths, and volumes of revolution are computed by integrating over an interval, including the classic area of a circle recovered as $\int$ of its boundary.

One idea, accumulating a rate, measures distance, work, cost, dosage, and area alike. That reach is why definite integrals sit at the center of applied calculus.

What Are The Most Common Mistakes With Definite Integrals?

These four errors cause most lost marks on definite integrals, verified against the peer-reviewed study Misconceptions and Errors in Learning Integral Calculus (Voon Li Li et al.), Cuemath's definite-versus-indefinite FAQ, Math Is Fun's signed-area lesson, and Paul's Online Notes on common calculus errors.

Adding $+C$ to a definite integral.

Where it slips in:

A student evaluates the antiderivative, then tacks on $+C$ out of habit from indefinite integrals.

Don't do this:

Do not write $\int_0^2 x^2,dx = \tfrac{8}{3} + C$. A definite integral is a single number, and the constant cancels in $F(b) - F(a)$.

The correct way:

Evaluate the antiderivative at both limits and subtract. Keep $+C$ only for indefinite integrals, where the answer is a family of functions.

Forgetting to flip the sign when the limits are swapped.

Where it slips in:

A student rewrites $\int_b^a f$ as $\int_a^b f$ to get the limits in a comfortable order, but leaves the sign unchanged.

Don't do this:

Do not treat $\int_2^0 x^2,dx$ as equal to $\int_0^2 x^2,dx$. Reversing the limits reverses the sign.

The correct way:

Use $\int_b^a f = -\int_a^b f$. So $\int_2^0 x^2,dx = -\tfrac{8}{3}$, the negative of the forward integral.

Confusing signed area with total area.

Where it slips in:

A student reports $\int_0^{2\pi} \sin x,dx = 0$ as "no area", or expects a plain integral to give the total geometric area when part of the curve dips below the axis.

Don't do this:

Do not assume the integral equals the total shaded region. Below-axis pieces are counted as negative and can cancel positive pieces.

The correct way:

For net area, integrate directly. For total area, integrate $|f(x)|$, or split at each x-intercept and add the sizes: total area for $\sin x$ on $[0, 2\pi]$ is $2 + 2 = 4$, not $0$.

Not changing the limits on a substitution.

Where it slips in:

While using a $u$-substitution, a student changes the integrand to the new variable $u$ but keeps the old $x$-limits on the integral sign.

Don't do this:

Do not plug the original $x$-limits into a function now written in $u$. The bounds must match the variable.

The correct way:

Either convert the limits to $u$-values when you substitute, or finish the antiderivative, switch back to $x$, and use the original $x$-limits. Never mix the two.

Practice Problems On Definite Integrals

Work each one with the Fundamental Theorem of Calculus, then check by differentiating your antiderivative. Answers follow each problem.

  1. Evaluate $\int_0^3 x^2,dx$.
    (Answer: $\big[\tfrac{x^3}{3}\big]_0^3 = 9$.)

  2. Evaluate $\int_0^{\pi/2} \cos x,dx$.
    (Answer: $\big[\sin x\big]_0^{\pi/2} = 1 - 0 = 1$.)

  3. Evaluate $\int_1^2 (2x + 1),dx$.
    (Answer: $\big[x^2 + x\big]_1^2 = 6 - 2 = 4$.)

  4. Evaluate $\int_{-2}^{2} x^3,dx$.
    (Answer: $0$, since $x^3$ is odd over the symmetric interval.)

  5. Find the average value of $f(x) = x^2$ on $[0, 3]$.
    (Answer: $\tfrac{1}{3}\int_0^3 x^2,dx = \tfrac{1}{3}\cdot 9 = 3$.)

  6. Find the total area between $y = \sin x$ and the x-axis on $[0, 2\pi]$.
    (Answer: net integral $= 0$, but total area $= 2 + 2 = 4$.)

Where Should You Go Next After Definite Integrals?

Definite integrals open straight into the rest of integral calculus, and a few natural doors lead onward.

  1. Integration formulas. Lock in the standard antiderivatives (powers, $\sin$, $\cos$, exponentials, logarithms) that every definite integral leans on.

  2. Integration by parts. The $uv$ method for integrals of products, the next technique once the basic forms are fluent.

  3. The derivative. Revisit the operation the FTC inverts, since a firm grip on derivatives makes antiderivatives far quicker to spot.

  4. AP Calculus AB vs BC. For parents mapping the road ahead, this compares where definite integrals sit in each course.

If your child is building these foundations, a live Bhanzu trainer teaches definite integrals starting from the "why" (area as a limit of sums, then the FTC shortcut) in the Bhanzu math classes.

Book a Free Demo

Was this article helpful?

Your feedback helps us write better content

Frequently Asked Questions

What is a definite integral?
A definite integral $\int_a^b f(x),dx$ is the signed area between the graph of $f$ and the x-axis over the interval $[a, b]$, defined as the limit of Riemann sums. Its value is a single number.
How is a definite integral different from an indefinite integral?
A definite integral has limits $a$ and $b$ and evaluates to a number. An indefinite integral has no limits, represents the whole family of antiderivatives, and carries a $+C$. In short, definite gives a value, indefinite gives a function.
Why is there no $+C$ in a definite integral?
Because the constant cancels. Evaluating $\big[F(x) + C\big]$ from $a$ to $b$ gives $\big(F(b) + C\big) - \big(F(a) + C\big) = F(b) - F(a)$, and the $C$ terms subtract away. Writing $+C$ on a definite answer is an error.
Can a definite integral be negative or zero?
Yes. It reports signed area, so a curve mostly below the x-axis gives a negative value, and equal areas above and below give zero. For example $\int_0^{2\pi} \sin x,dx = 0$ even though the curve encloses real area.
What are definite integrals used for?
Definite integrals accumulate a changing rate over an interval, which computes distance from speed, work from force, total cost from marginal cost, drug exposure from concentration, and areas or volumes of curved regions.
What is the average value formula using a definite integral?
The average value of $f$ over $[a, b]$ is $\dfrac{1}{b - a}\int_a^b f(x),dx$. It is the constant height whose rectangle over $[a, b]$ has the same area as the region under the curve.
✍️ Written By
BT
Bhanzu Team
Content Creator and Editor
Bhanzu’s editorial team, known as Team Bhanzu, is made up of experienced educators, curriculum experts, content strategists, and fact-checkers dedicated to making math simple and engaging for learners worldwide. Every article and resource is carefully researched, thoughtfully structured, and rigorously reviewed to ensure accuracy, clarity, and real-world relevance. We understand that building strong math foundations can raise questions for students and parents alike. That’s why Team Bhanzu focuses on delivering practical insights, concept-driven explanations, and trustworthy guidance-empowering learners to develop confidence, speed, and a lifelong love for mathematics.
Related Articles
Book a FREE Demo ClassBook Now →