Study Guide

Properties of Definite Integrals

AP Calculus ABΒ· AP Calculus AB CED β€” Integration and Accumulation of ChangeΒ· 14 min read

1. Basic Algebraic Properties of Definite Integralsβ˜…β˜…β˜†β˜†β˜†β± 4 min

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

∫baf(x)dx=βˆ’βˆ«abf(x)dx\int_b^a f(x)dx = -\int_a^b f(x)dx
∫aaf(x)dx=0\int_a^a f(x)dx = 0
∫abkf(x)dx=k∫abf(x)dx\int_a^b k f(x)dx = k \int_a^b f(x)dx
∫ab[f(x)±g(x)]dx=∫abf(x)dx±∫abg(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
πŸ“ Worked Example

Given that and , find the value of .

  1. 1

    Apply reversal of bounds to flip the integration order

    ∫52[2f(x)βˆ’3g(x)]dx=βˆ’βˆ«25[2f(x)βˆ’3g(x)]dx\int_5^2 \left[2f(x) - 3g(x)\right]dx = -\int_2^5 \left[2f(x) - 3g(x)\right]dx
  2. 2

    Split the integral using the difference rule

    βˆ’(∫252f(x)dxβˆ’βˆ«253g(x)dx)- \left( \int_2^5 2f(x) dx - \int_2^5 3g(x) dx \right)
  3. 3

    Pull out constants using the constant multiple rule

    βˆ’(2∫25f(x)dxβˆ’3∫25g(x)dx)- \left( 2\int_2^5 f(x) dx - 3\int_2^5 g(x) dx \right)
  4. 4

    Substitute given values and simplify

    βˆ’(2(4)βˆ’3(βˆ’3))=βˆ’(8+9)=βˆ’17- \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.

2. Additivity of Integration Over Intervalsβ˜…β˜…β˜†β˜†β˜†β± 3 min

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 , regardless of whether is between and :

∫abf(x)dx=∫acf(x)dx+∫cbf(x)dx\int_a^b f(x) dx = \int_a^c f(x) dx + \int_c^b f(x) dx

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

πŸ“ Worked Example

Given that and , what is the value of ?

  1. 1

    Split the full interval integral at using additivity

    ∫16f(x)dx=∫14f(x)dx+∫46f(x)dx\int_1^6 f(x)dx = \int_1^4 f(x)dx + \int_4^6 f(x)dx
  2. 2

    Rearrange to solve for the unknown integral

    ∫14f(x)dx=∫16f(x)dxβˆ’βˆ«46f(x)dx\int_1^4 f(x)dx = \int_1^6 f(x)dx - \int_4^6 f(x)dx
  3. 3

    Substitute given values

    ∫14f(x)dx=12βˆ’7=5\int_1^4 f(x)dx = 12 - 7 = 5
  4. 4

    Apply constant multiple rule for the final result

    ∫143f(x)dx=3(5)=15\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.

3. Symmetry Properties for Even and Odd Functionsβ˜…β˜…β˜…β˜†β˜†β± 3 min

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 (symmetric over the y-axis) and an odd function satisfies (symmetric about the origin).

For integrals over the symmetric interval , the rules are:

  • Odd function: Net area above the axis on the positive side cancels net area on the negative side, so

  • Even function: Area left of the y-axis equals area right of the y-axis, so

βˆ«βˆ’aaf(x)dx=0(for odd f)\int_{-a}^a f(x) dx = 0 \quad (\text{for odd } f)
βˆ«βˆ’aaf(x)dx=2∫0af(x)dx(for even f)\int_{-a}^a f(x) dx = 2\int_0^a f(x) dx \quad (\text{for even } f)
πŸ“ Worked Example

Evaluate .

  1. 1

    Test if the integrand is odd by substituting

    f(βˆ’x)=5(βˆ’x)7βˆ’4(βˆ’x)3+2(βˆ’x)=βˆ’5x7+4x3βˆ’2x=βˆ’f(x)f(-x) = 5(-x)^7 - 4(-x)^3 + 2(-x) = -5x^7 + 4x^3 - 2x = -f(x)
  2. 2

    Confirm the integration interval is symmetric about the origin, meeting the requirement for symmetry rules

  3. 3

    Apply the odd function symmetry rule to get the final result

    βˆ«βˆ’33(5x7βˆ’4x3+2x)dx=0\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.

4. Comparison and Bounding Propertiesβ˜…β˜…β˜…β˜†β˜†β± 3 min

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 for all in , then:

∫abf(x)dxβ‰€βˆ«abg(x)dx\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 on to bound the integral. If and on , then:

m(bβˆ’a)β‰€βˆ«abf(x)dx≀M(bβˆ’a)m(b-a) \leq \int_a^b f(x) dx \leq M(b-a)

Intuition: The net area under is between the area of a rectangle of height and a rectangle of height , both with width equal to the interval length .

πŸ“ Worked Example

Find the tightest integer bounds for the value of .

  1. 1

    Analyze monotonicity of on : derivative is negative for all , so is decreasing

    fβ€²(x)=βˆ’2x(x2+1)2<0f'(x) = \frac{-2x}{(x^2+1)^2} < 0
  2. 2

    Find minimum and maximum values: for a decreasing function, maximum is at left endpoint, minimum at right endpoint

    M=f(1)=12=0.5,m=f(3)=110=0.1M = f(1) = \frac{1}{2} = 0.5, \quad m = f(3) = \frac{1}{10} = 0.1
  3. 3

    Calculate interval width

    bβˆ’a=3βˆ’1=2b - a = 3 - 1 = 2
  4. 4

    Apply the bound property and find integer bounds

    0.1(2)≀I≀0.5(2)β€…β€ŠβŸΉβ€…β€Š0.2≀I≀1, so 0<I<10.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.

5. AP-Style Concept Checkβ˜…β˜…β˜…β˜†β˜†β± 1 min

βœ“ Quick check

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

  1. Given that , , and , what is the value of ?

    • 15

    • 5

    • -5

    • -15

    Reveal answer
    -5 β€”

    Use additivity to find , then apply the constant multiple rule: .

6. Common Pitfalls

Wrong move:

When using additivity to find from known and , writing

Why:

Students mix up the order of bounds for the second integral when is between and .

Correct move:

Always label intervals from lower to upper: , so rearrange correctly and never swap bounds without adding a negative sign.

Wrong move:

Applying the even function symmetry rule to an odd function, e.g. writing

Why:

Students confuse even and odd symmetry rules, or do not confirm the function type before applying the rule.

Correct move:

Always substitute into the integrand to confirm if it is even or odd before applying any symmetry rule.

Wrong move:

When evaluating , writing , forgetting the negative sign from reversing bounds

Why:

Students pull out the constant first and forget that reversing bounds flips the sign of the entire integral.

Correct move:

Always reverse bounds and apply the negative sign before pulling out constants or splitting integrals.

Wrong move:

Applying the odd function symmetry rule to an integral over a non-symmetric interval, e.g. claiming because is odd

Why:

Students remember the symmetry rule but forget it only applies to intervals symmetric around 0.

Correct move:

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 move:

For comparison properties, using the minimum of instead of , leading to incorrect bounds for negative integrands

Why:

Students confuse net area (what definite integrals measure) with total area.

Correct move:

Always confirm that the inequality holds for all in the interval, including negative values, before applying the bound rule.

7. Quick Reference Cheatsheet

Category

Formula

Notes

Reversal of Bounds

Any integrable , any real

Zero-Length Integral

Always true, even for discontinuous

Constant Multiple Rule

Works for any constant , positive/negative

Sum/Difference Rule

Extends to any number of terms

Additivity Over Intervals

Holds for any , inside/outside

Odd Function Symmetry

Only for intervals symmetric around

Even Function Symmetry

Only for intervals symmetric around

Comparison Property

If on , then

Inequality must hold for all in interval

Integral Bounding Rule

, on

When this came up on past exams

AI-estimated based on syllabus patterns β€” cross-check with official past papers for accuracy. Use only as revision-focus signals.

  • 2023 Β· MCQ

    Find unknown integral from given values

  • 2022 Β· FRQ

    Use symmetry to simplify integral

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.