# Selecting techniques for antidifferentiation

> AP Calculus AB · Integration and Accumulation of Change
> Source: https://www.owlsprep.com/study/ap-calculus-ab-u6-selecting-techniques-for-antidifferentiation/

This sub-topic covers how to select the correct antidifferentiation technique based on integrand structure, including basic pattern matching, algebraic rewriting, and u-substitution for composite functions, a core skill for all integration problems on the AP Calculus AB exam.

**Prerequisites:** Basic derivative rules for all elementary functions; The chain rule for differentiating composite functions; Algebraic manipulation of polynomials, rational functions, and radicals

## Learning objectives

- Analyze integrand structure to select the appropriate antidifferentiation technique
- Apply basic pattern matching for antiderivatives of elementary functions
- Rewrite integrands algebraically to match basic antiderivative patterns
- Use u-substitution correctly for composite functions on AP Calculus AB
- Avoid common traps in antidifferentiation technique selection

## Overview of Antidifferentiation Technique Selection

Selecting techniques for antidifferentiation is the core problem-solving skill of analyzing the structure of an integrand $f(x)$ to choose the most efficient, correct method to find its general antiderivative $\int f(x) \, dx = F(x) + C$ or evaluate a definite integral. Unlike differentiation, which follows a predictable sequence of rules regardless of function structure, antidifferentiation relies heavily on pattern recognition: no single algorithm works for all integrands, and the wrong first choice will lead you to a dead end or incorrect result.

> **info**
>
> This skill is tested throughout Unit 6 (Integration and Accumulation of Change), which accounts for 17–20% of your total AP Calculus AB exam score, and appears in both multiple-choice and free-response sections. Mastery lets you avoid unnecessary work, reduce errors, and complete larger problems from area calculations to separable differential equations.

## Basic Antiderivative Pattern Matching

The first and fastest technique to check for any integrand is basic pattern matching: if the integrand (or each term of a sum of integrands) directly matches the derivative of a basic elementary function, you can reverse the derivative rule to get the antiderivative immediately, with no extra manipulation needed. This works for all non-composite basic functions.

- Power rule: $\int x^n \, dx = \frac{x^{n+1}}{n+1} + C$ for $n \neq -1$
- Reciprocal rule: $\int \frac{1}{x} \, dx = \ln|x| + C$ for $n=-1$
- Exponential rule: $\int e^{kx} \, dx = \frac{1}{k}e^{kx} + C$ for constant $k \neq 0$
- Trigonometric rules: $\int \sin(kx) dx = -\frac{1}{k}\cos(kx) + C$, $\int \cos(kx) dx = \frac{1}{k}\sin(kx) + C$

> **tip**
>
> Always check for pattern matching first before moving to more complex techniques—unnecessary manipulation is the top cause of avoidable errors on the exam.

**Worked example:** Find the general antiderivative of $\int \left( 4x^3 + \frac{2}{x} - 5\sin x + e^2 \right) dx$.

1. Use linearity of integration to split the integral into separate terms matching individual patterns:
2. $$\int 4x^3 dx + \int \frac{2}{x} dx - \int 5\sin x dx + \int e^2 dx$$
3. Apply the power rule to the first term:
4. $$\int 4x^3 dx = 4 \cdot \frac{x^{4}}{4} = x^4$$
5. Match remaining terms to their patterns: $\int \frac{2}{x} dx = 2\ln|x|$, $- \int 5\sin x dx = 5\cos x$, and $\int e^2 dx = e^2 x$ (note $e^2$ is a constant, not a function of $x$).
6. Add the constant of integration to get the final result:
7. $$x^4 + 2\ln|x| + 5\cos x + e^2 x + C$$

> **Exam tip:** Always check for constant terms first. If the term has no $x$, it’s just a constant times $x$ in the antiderivative, not a logarithm or exponential—don’t overcomplicate it.

## Rewriting the Integrand to Match a Basic Pattern

If an integrand doesn’t match a basic pattern directly, the next step is to check if you can rewrite it with algebra into a sum of terms that do match basic patterns. This is almost always faster than u-substitution, so always check this before reaching for substitution.

1. Rewriting radicals as rational exponents: $\sqrt[n]{x^m} = x^{m/n}$
2. Moving denominator terms to the numerator with negative exponents: $\frac{1}{x^k} = x^{-k}$
3. Splitting fractions with a single monomial denominator: $\frac{A+B}{C} = \frac{A}{C} + \frac{B}{C}$
4. Expanding products of polynomials or power functions

This technique works for many problems that look complex at first glance, and eliminates the chance of substitution errors entirely when it applies.

**Worked example:** Evaluate the definite integral $\int_1^4 \frac{(x - 2\sqrt{x})^2}{\sqrt{x}} dx$.

1. Expand the numerator and rewrite all terms with exponents:
2. $$(x - 2\sqrt{x})^2 = x^2 - 4x\sqrt{x} + 4x = x^{3/2} - 4x + 4x^{1/2}$$
3. Antidifferentiate term by term using the power rule:
4. $$\int (x^{3/2} - 4x + 4x^{1/2}) dx = \frac{2}{5}x^{5/2} - 2x^2 + \frac{8}{3}x^{3/2} + C$$
5. Evaluate at bounds: At $x=4$, the expression equals $\frac{32}{15}$; at $x=1$, it equals $\frac{16}{15}$.
6. Subtract lower bound from upper bound:
7. $$\frac{32}{15} - \frac{16}{15} = \frac{16}{15}$$

> **Exam tip:** Never attempt u-substitution on a fraction with a single monomial denominator. Always split the fraction first—you will save 5+ minutes and avoid substitution errors.

## U-Substitution for Composite Functions

If you can’t rewrite the integrand into a sum of basic terms with algebra, the next (and final) technique you need for AP Calculus AB is u-substitution, used for integrands that contain a composite function. Reach for u-substitution when you can identify an inner function $g(x)$ whose derivative $g'(x)$ is already a factor in the integrand, up to a constant multiple. The rule reverses the chain rule:

$$\int f(g(x)) g'(x) dx = \int f(u) du, \quad u = g(x)$$

For indefinite integrals, substitute back $u = g(x)$ after antidifferentiating. For definite integrals, change the bounds of integration to $u$-values immediately after defining $u$.

**Worked example:** Find the general antiderivative of $\int 6x \cos(x^2 + 3) dx$.

1. Identify the composite function: $\cos$ has inner argument $x^2 + 3$, whose derivative $2x$ is a factor of the integrand ($6x = 3 \cdot 2x$).
2. Define the substitution:
3. $$u = x^2 + 3, \quad du = 2x dx \implies 3 du = 6x dx$$
4. Rewrite the integral in terms of $u$:
5. $$\int 6x \cos(x^2 + 3) dx = \int 3 \cos(u) du$$
6. Antidifferentiate and substitute back:
7. $$3 \sin(u) + C = 3 \sin(x^2 + 3) + C$$

**Check your understanding**

Test your understanding with these AP-style questions:

1. Which of the following is the general antiderivative of $\int \frac{(\sqrt{x} + 1)^2}{x} dx$?

   - $\frac{(\sqrt{x} + 1)^3}{3 \sqrt{x}} + C$
   - $x + 4\sqrt{x} + \ln|x| + C$
   - $2\sqrt{x} + \ln|x| + x + C$
   - $x + 2\sqrt{x} + C$

   *Answer:* $x + 4\sqrt{x} + \ln|x| + C$

   *Why:* Expand the numerator to get $x + 2\sqrt{x} + 1$, divide by $x$ to get $1 + 2x^{-1/2} + \frac{1}{x}$, then antidifferentiate term-by-term to get the result.

2. Given $f(x) = 3x^2 e^{x^3}$, evaluate $\int_0^1 f(x) dx$

   - $e$
   - $e - 1$
   - $e + 1$
   - $1$

   *Answer:* $e - 1$

   *Why:* Use u-substitution with $u = x^3$, $du = 3x^2 dx$, leading to $\int_0^1 e^u du = e^1 - e^0 = e - 1$.

3. The velocity of a particle is $v(t) = \frac{t}{\sqrt{t^2 + 1}}$ for $t \geq 0$. What is the total displacement from $t=0$ to $t=3$?

   - $\sqrt{10} - 1$
   - $9$
   - $2\sqrt{10}$
   - $\sqrt{10}$

   *Answer:* $\sqrt{10} - 1$

   *Why:* Use u-substitution $u = t^2 + 1$, $\frac{1}{2}du = t dt$, bounds from 1 to 10. Evaluate to get $\sqrt{10} - 1$.

> **Exam tip:** If the derivative of your $u$ is only missing a constant multiple, factor that constant out—don’t try to adjust $du$ incorrectly. You only need the derivative of $u$ (up to a constant) for u-substitution on AP Calculus AB.

## Common pitfalls

- **Wrong:** Attempting u-substitution on $\int \frac{x^2 + 2x}{x} dx$ by setting $u = x^2 + 2x$, leading to a complicated incorrect result.
  - Why it fails: Students reach for substitution whenever they see a fraction, but this integrand can be simplified with algebra first.
  - Correct: Always split fractions with a single monomial denominator into separate terms before trying any other technique.
- **Wrong:** Forgetting to change the bounds of integration when doing u-substitution for a definite integral, then plugging original $x$-bounds into the antiderivative in terms of $u$.
  - Why it fails: Students get in the habit of substituting back to $x$, but often mix up the order of steps when they skip changing bounds.
  - Correct: Always change the bounds to $u$-values immediately after defining $u$, so you can evaluate directly in $u$ without substituting back.
- **Wrong:** Antideriving $\frac{1}{x^2}$ as $\ln|x^2| + C$ instead of $-x^{-1} + C$.
  - Why it fails: Students memorize $\int \frac{1}{x} = \ln|x| + C$ and incorrectly extend it to any reciprocal power of $x$.
  - Correct: Only use the logarithm rule for $\frac{1}{x^n}$ when $n=1$. All other reciprocal powers are negative powers that use the power rule.
- **Wrong:** Choosing $u = \sin(x^2)$ for the integral $\int 2x \sin(x^2) dx$, leading to $du = 2x \cos(x^2) dx$ that doesn’t match the integrand.
  - Why it fails: Students pick $u$ as the outer function instead of the inner function of the composite.
  - Correct: Always set $u$ equal to the inner (input) function of the composite, then check if its derivative is present in the integrand.
- **Wrong:** Treating $e^k$ (where $k$ is a constant) as an exponential function of $x$, leading to $\int e^k dx = e^k + C$ instead of $e^k x + C$.
  - Why it fails: Students see $e$ and automatically apply the exponential rule without checking what the variable of integration is.
  - Correct: Always confirm that the function is a function of the variable of integration before applying a pattern rule.
- **Wrong:** Leaving off the absolute value in $\ln|x|$ for the antiderivative of $\frac{1}{x}$, just writing $\ln x + C$.
  - Why it fails: Students forget that $\frac{1}{x}$ is defined for negative $x$, but $\ln x$ is not.
  - Correct: Always include the absolute value around the argument of the logarithm when finding the antiderivative of $\frac{1}{g(x)}$.

## Cheatsheet

| Category | Formula | Notes |
| --- | --- | --- |
| Power Rule (basic) | \int x^n dx = \frac{x^{n+1}}{n+1} + C | Only applies for $n \neq -1$ |
| Reciprocal Rule | \int \frac{1}{x} dx = \ln\|x\| + C | Only applies for $n=-1$; always include absolute value |
| Exponential Rule | \int e^{kx} dx = \frac{1}{k}e^{kx} + C | $k \neq 0$ is a constant; simplifies to $e^x + C$ when $k=1$ |
| Sine Antiderivative | \int \sin(kx) dx = -\frac{1}{k}\cos(kx) + C | Do not forget the negative sign |
| Cosine Antiderivative | \int \cos(kx) dx = \frac{1}{k}\sin(kx) + C | No negative sign for this rule |
| U-Substitution (indefinite) | \int f(g(x))g'(x) dx = \int f(u) du, \; u=g(x) | Use for composite functions with derivative of inner function present |
| U-Substitution (definite) | \int_a^b f(g(x))g'(x) dx = \int_{g(a)}^{g(b)} f(u) du | Change bounds immediately to avoid substitution errors |
| Constant Integral | \int k dx = kx + C | $k$ is constant; applies to terms like $e^2, \pi$ that don't depend on $x$ |

## What's next

Mastering selection of antidifferentiation techniques is the foundational prerequisite for all remaining topics in AP Calculus AB. Immediately next, you will apply these techniques to find the area under a curve and the area between two curves, which are among the most frequently tested FRQ topics on the exam. You will also use these techniques to solve separable differential equations, which account for around 5-10% of the total exam score, and model growth and decay processes in contextual problems. This skill also forms the base for more advanced integration techniques if you continue to AP Calculus BC.

- [Differential Equations Overview](https://www.owlsprep.com/study/ap-calculus-ab-u7-overview/)
- [Modeling situations with differential equations](https://www.owlsprep.com/study/ap-calculus-ab-u7-modeling-situations-with-differential-equations/)
- [Verifying solutions for differential equations](https://www.owlsprep.com/study/ap-calculus-ab-u7-verifying-solutions-for-differential-equations/)

---

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-selecting-techniques-for-antidifferentiation/
