# Properties of Definite Integrals

> AP Calculus AB · Integration and Accumulation of Change
> Source: https://www.owlsprep.com/study/ap-calculus-ab-u6-properties-of-definite-integrals/

This module covers core properties of definite integrals for AP Calculus AB, including reversal of bounds, additivity over intervals, symmetry for even/odd functions, and comparison bounding rules. These rules simplify integration and solve problems without requiring full antiderivatives.

**Prerequisites:** [Definite integral definition as a Riemann sum](https://www.owlsprep.com/study/ap-calculus-ab-u6-definite-integral-riemann-sum/); Even and odd function definitions; Basic algebraic manipulation

## Learning objectives

- Apply core algebraic properties of definite integrals to simplify calculations
- Use additivity over intervals to evaluate integrals of piecewise functions and unknown integrals from known values
- Apply symmetry properties to evaluate integrals of even/odd functions over symmetric intervals
- Use comparison properties to bound the value of an unknown integral

## Basic Algebraic Properties of Definite Integrals

These four core rules follow directly from the Riemann sum definition of the definite integral, and let you combine known integral values to find unknowns, a common AP exam problem type.

- Reversal of bounds: swapping lower and upper bounds flips the sign of the integral
- Zero-length integral: when bounds are equal, the integral equals 0
- Constant multiple rule: scaling a function by a constant scales the integral by the same constant
- Sum/difference rule: the integral of a sum/difference equals the sum/difference of individual integrals

$$\int_b^a f(x)dx = -\int_a^b f(x)dx$$

$$\int_a^a f(x)dx = 0$$

$$\int_a^b k f(x)dx = k \int_a^b f(x)dx$$

$$\int_a^b \left[f(x) \pm g(x)\right]dx = \int_a^b f(x)dx \pm \int_a^b g(x)dx$$

> **info**
>
> These rules hold for all integrable functions, regardless of continuity, and work for any real constant $k$ (positive or negative).

**Worked example:** Given that $\int_2^5 f(x)dx = 4$ and $\int_2^5 g(x)dx = -3$, find the value of $\int_5^2 \left[2f(x) - 3g(x)\right]dx$.

1. Apply reversal of bounds to flip the integration order

   $$\int_5^2 \left[2f(x) - 3g(x)\right]dx = -\int_2^5 \left[2f(x) - 3g(x)\right]dx$$
2. Split the integral using the difference rule

   $$- \left( \int_2^5 2f(x) dx - \int_2^5 3g(x) dx \right)$$
3. Pull out constants using the constant multiple rule

   $$- \left( 2\int_2^5 f(x) dx - 3\int_2^5 g(x) dx \right)$$
4. Substitute given values and simplify

   $$- \left( 2(4) - 3(-3) \right) = - (8 + 9) = -17$$

> **Exam tip:** Always reverse bounds and apply the negative sign before pulling out constants or splitting integrals to avoid sign errors.

## Additivity of Integration Over Intervals

Additivity lets you split an integral over a large interval into the sum of smaller integrals over adjacent intervals. This is especially useful for piecewise functions and finding unknown integrals from given related values.

The rule holds for any three real numbers $a, b, c$, regardless of whether $c$ is between $a$ and $b$:

$$\int_a^b f(x) dx = \int_a^c f(x) dx + \int_c^b f(x) dx$$

Intuition: the total net area from $a$ to $b$ is the sum of the net area from $a$ to $c$ and from $c$ to $b$. If $c$ is outside $[a,b]$, the reversal of bounds rule automatically adjusts the sign to keep the equality true.

**Worked example:** Given that $\int_1^6 f(x)dx = 12$ and $\int_4^6 f(x)dx = 7$, what is the value of $\int_1^4 3f(x)dx$?

1. Split the full interval integral at $x=4$ using additivity

   $$\int_1^6 f(x)dx = \int_1^4 f(x)dx + \int_4^6 f(x)dx$$
2. Rearrange to solve for the unknown integral

   $$\int_1^4 f(x)dx = \int_1^6 f(x)dx - \int_4^6 f(x)dx$$
3. Substitute given values

   $$\int_1^4 f(x)dx = 12 - 7 = 5$$
4. Apply constant multiple rule for the final result

   $$\int_1^4 3f(x)dx = 3(5) = 15$$

> **Exam tip:** If you need an integral over a subinterval and know the full integral value, always rearrange additivity to solve for the unknown instead of guessing bound order.

## Symmetry Properties for Even and Odd Functions

Symmetry is a powerful time-saving tool on the AP exam, letting you evaluate integrals over symmetric intervals without computing any antiderivatives. Recall that an even function satisfies $f(-x)=f(x)$ (symmetric over the y-axis) and an odd function satisfies $f(-x)=-f(x)$ (symmetric about the origin).

For integrals over the symmetric interval $[-a, a]$, the rules are:

- Odd function: Net area above the axis on the positive side cancels net area on the negative side, so $\int_{-a}^a f(x) dx = 0$
- Even function: Area left of the y-axis equals area right of the y-axis, so $\int_{-a}^a f(x) dx = 2\int_0^a f(x) dx$

$$\int_{-a}^a f(x) dx = 0 \quad (\text{for odd } f)$$

$$\int_{-a}^a f(x) dx = 2\int_0^a f(x) dx \quad (\text{for even } f)$$

**Worked example:** Evaluate $\int_{-3}^3 \left(5x^7 - 4x^3 + 2x\right) dx$.

1. Test if the integrand is odd by substituting $-x$

   $$f(-x) = 5(-x)^7 - 4(-x)^3 + 2(-x) = -5x^7 + 4x^3 - 2x = -f(x)$$
2. Confirm the integration interval $[-3, 3]$ is symmetric about the origin, meeting the requirement for symmetry rules
3. Apply the odd function symmetry rule to get the final result

   $$\int_{-3}^3 \left(5x^7 - 4x^3 + 2x\right) dx = 0$$

> **Exam tip:** Always check for symmetry before starting to integrate—if the interval is symmetric, you can often eliminate all computation immediately.

## Comparison and Bounding Properties

Comparison properties let you bound the value of an integral when you cannot compute its exact value, a common multiple-choice question type on the AP exam.

The core comparison rule states that if $f(x) \leq g(x)$ for all $x$ in $[a,b]$, then:

$$\int_a^b f(x) dx \leq \int_a^b g(x) dx$$

A useful special case is the bound property, which uses the minimum and maximum of $f(x)$ on $[a,b]$ to bound the integral. If $m = \min f(x)$ and $M = \max f(x)$ on $[a,b]$, then:

$$m(b-a) \leq \int_a^b f(x) dx \leq M(b-a)$$

Intuition: The net area under $f(x)$ is between the area of a rectangle of height $m$ and a rectangle of height $M$, both with width equal to the interval length $b-a$.

**Worked example:** Find the tightest integer bounds for the value of $I = \int_1^3 \frac{1}{x^2 + 1} dx$.

1. Analyze monotonicity of $f(x)$ on $[1,3]$: derivative is negative for all $x>0$, so $f(x)$ is decreasing

   $$f'(x) = \frac{-2x}{(x^2+1)^2} < 0$$
2. Find minimum and maximum values: for a decreasing function, maximum is at left endpoint, minimum at right endpoint

   $$M = f(1) = \frac{1}{2} = 0.5, \quad m = f(3) = \frac{1}{10} = 0.1$$
3. Calculate interval width

   $$b - a = 3 - 1 = 2$$
4. Apply the bound property and find integer bounds

   $$0.1(2) \leq I \leq 0.5(2) \implies 0.2 \leq I \leq 1, \text{ so } 0 < I < 1$$

> **Exam tip:** If the function is monotonic on the interval, the minimum and maximum are always at the endpoints, so you do not need to find critical points.

## AP-Style Concept Check

**Check your understanding**

Test your understanding with this AP-style multiple choice question:

1. Given that $\int_0^4 f(x) dx = 8$, $\int_1^4 f(x) dx = 3$, and $\int_0^2 g(x) dx = -5$, what is the value of $\int_0^1 2f(x) dx + \int_0^2 3g(x) dx$?

   - 15
   - 5
   - -5
   - -15

   *Why:* Use additivity to find $\int_0^1 f(x) dx = 8 - 3 = 5$, then apply the constant multiple rule: $2(5) + 3(-5) = 10 - 15 = -5$.

## Common pitfalls

- **Wrong:** When using additivity to find $\int_a^b f(x)dx$ from known $\int_a^c$ and $\int_b^c$, writing $\int_a^b f(x)dx = \int_a^c f(x)dx + \int_b^c f(x)dx$
  - Why it fails: Students mix up the order of bounds for the second integral when $c$ is between $a$ and $b$.
  - Correct: Always label intervals from lower to upper: $\int_a^b = \int_a^c + \int_c^b$, so rearrange correctly and never swap bounds without adding a negative sign.
- **Wrong:** Applying the even function symmetry rule to an odd function, e.g. writing $\int_{-2}^2 x^3 dx = 2\int_0^2 x^3 dx = 4$
  - Why it fails: Students confuse even and odd symmetry rules, or do not confirm the function type before applying the rule.
  - Correct: Always substitute $-x$ into the integrand to confirm if it is even or odd before applying any symmetry rule.
- **Wrong:** When evaluating $\int_b^a kf(x)dx$, writing $k\int_b^a f(x)dx = k \int_a^b f(x)dx$, forgetting the negative sign from reversing bounds
  - Why it fails: Students pull out the constant first and forget that reversing bounds flips the sign of the entire integral.
  - Correct: Always reverse bounds and apply the negative sign before pulling out constants or splitting integrals.
- **Wrong:** Applying the odd function symmetry rule to an integral over a non-symmetric interval, e.g. claiming $\int_{-2}^4 x^5 dx = 0$ because $x^5$ is odd
  - Why it fails: Students remember the symmetry rule but forget it only applies to intervals symmetric around 0.
  - Correct: Before applying symmetry, confirm the lower bound is the negative of the upper bound; if not, split the integral at 0 to use symmetry only on the symmetric portion.
- **Wrong:** For comparison properties, using the minimum of $|f(x)|$ instead of $f(x)$, leading to incorrect bounds for negative integrands
  - Why it fails: Students confuse net area (what definite integrals measure) with total area.
  - Correct: Always confirm that the inequality $m \leq f(x) \leq M$ holds for all $x$ in the interval, including negative values, before applying the bound rule.

## Cheatsheet

| Category | Formula | Notes |
| --- | --- | --- |
| Reversal of Bounds | $\int_b^a f(x)dx = -\int_a^b f(x)dx$ | Any integrable $f$, any real $a,b$ |
| Zero-Length Integral | $\int_a^a f(x)dx = 0$ | Always true, even for discontinuous $f$ |
| Constant Multiple Rule | $\int_a^b kf(x)dx = k\int_a^b f(x)dx$ | Works for any constant $k$, positive/negative |
| Sum/Difference Rule | $\int_a^b [f(x)\pm g(x)]dx = \int_a^b f(x)dx \pm \int_a^b g(x)dx$ | Extends to any number of terms |
| Additivity Over Intervals | $\int_a^b f(x)dx = \int_a^c f(x)dx + \int_c^b f(x)dx$ | Holds for any $c$, inside/outside $[a,b]$ |
| Odd Function Symmetry | $\int_{-a}^a f(x)dx = 0$ | Only for intervals symmetric around $x=0$ |
| Even Function Symmetry | $\int_{-a}^a f(x)dx = 2\int_0^a f(x)dx$ | Only for intervals symmetric around $x=0$ |
| Comparison Property | If $f(x)\leq g(x)$ on $[a,b]$, then $\int_a^b f(x)dx \leq \int_a^b g(x)dx$ | Inequality must hold for all $x$ in interval |
| Integral Bounding Rule | $m(b-a) \leq \int_a^b f(x)dx \leq M(b-a)$ | $m = \min f(x)$, $M = \max f(x)$ on $[a,b]$ |

## What's next

Mastering properties of definite integrals is a critical prerequisite for the rest of Unit 6 and core topics across AP Calculus AB. Next, you will apply these properties alongside the Fundamental Theorem of Calculus (FTC), the core tool for evaluating definite integrals. Sign and order errors in these properties will lead to incorrect results even when you apply the FTC correctly. Longer term, these properties are used to find areas between curves, set up accumulation problems for context and motion questions, and solve differential equations, all heavily weighted on the AP exam.

- [FTC and Definite Integrals for AP Calculus AB](https://www.owlsprep.com/study/ap-calculus-ab-u6-ftc-and-definite-integrals/)
- [Antiderivatives and indefinite integrals (basic rules)](https://www.owlsprep.com/study/ap-calculus-ab-u6-antiderivatives-and-indefinite-integrals/)
- [Integration by substitution (u-sub)](https://www.owlsprep.com/study/ap-calculus-ab-u6-integration-by-substitution/)

---

From [OwlsPrep](https://www.owlsprep.com) — free study guides for A-Level, IB, AP and IGCSE, written against the official syllabus. Canonical page: https://www.owlsprep.com/study/ap-calculus-ab-u6-properties-of-definite-integrals/
