# Selecting techniques for antidifferentiation

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

This module covers a systematic decision framework for selecting efficient antidifferentiation techniques for AP Calculus BC, including recognition of technique signatures, solving multi-technique integrals, and avoiding common exam traps.

**Prerequisites:** Basic derivative and antiderivative rules for common functions; Algebraic simplification (factoring, polynomial division); Chain rule for differentiation

## Learning objectives

- Develop an ordered decision framework to select efficient antidifferentiation techniques
- Recognize signature structures of common integration techniques
- Solve multi-technique integrals encountered on the AP BC exam
- Avoid common pitfalls that lead to lost exam points

## The Ordered Decision Framework for Antidifferentiation

Unlike differentiation, which follows a fixed set of mechanical rules, antidifferentiation requires careful analysis of the integrand to select the most efficient method. A repeatable ordered framework eliminates trial and error, the top cause of lost time and points on the AP exam.

1. **Simplify first**: Expand products, cancel factors, divide polynomials if numerator degree ≥ denominator degree, and use trigonometric/exponential identities to simplify the integrand before trying advanced techniques.
2. **Check basic formulas**: See if the simplified integrand matches a standard antiderivative (power, log, exponential, trig, arctangent, etc.) directly. If yes, integrate and you are done.
3. **Check for u-substitution**: Can you write the integrand as $f(g(x)) \cdot g'(x)$ (up to a constant multiple)? If yes, use u-substitution.
4. **Check for integration by parts**: Is the integrand a product of two functions where one gets simpler when differentiated? If yes, use integration by parts.
5. **Check for partial fractions**: Is the integrand a proper rational function with a factorable denominator? If yes, use partial fraction decomposition.
6. **Check for trigonometric substitution**: Do you have a term of the form $\sqrt{a^2 \pm x^2}$ or $\sqrt{x^2 - a^2}$, or an irreducible quadratic denominator? If yes, use trigonometric substitution.

**Worked example:** What is the correct first step to evaluate $\int \frac{x^3 + 3x^2 - 2}{x + 3} dx$?

1. Apply the first step of the decision framework: check for algebraic simplification. The numerator degree (3) is greater than the denominator degree (1), so we can simplify by factoring the numerator.
2. $$x^3 + 3x^2 - 2 = x^2(x + 3) - 2$$
3. Split the fraction using this factorization:
4. $$\frac{x^2(x+3) - 2}{x+3} = x^2 - \frac{2}{x+3}$$
5. After simplification, we can integrate term-by-term with the basic power rule and simple u-substitution. No advanced techniques are needed, so the correct first step is algebraic simplification.

> **Exam tip:** AP graders award partial credit for correct process even if you make a small arithmetic error later. Always write your simplification step explicitly, even if it seems trivial.

## Recognizing Technique Signature Structures

Once you have the decision framework, the second core skill is quickly spotting the unique structural signature of each technique. This lets you skip unnecessary checks and save critical time on the exam.

- **U-substitution**: A composite function (e.g., $(2x+1)^5$, $e^{x^2}$) multiplied by the derivative of the inner function, up to a constant factor.
- **Integration by parts**: Product of two unrelated functions, where one is easy to differentiate and gets simpler after differentiation, and the other is easy to integrate. Common examples: $x e^x$, $x \sin x$, $\ln x$, $e^x \sin x$.
- **Partial fraction decomposition**: Proper rational function (numerator degree < denominator degree) with a denominator that factors into linear or irreducible quadratic terms.
- **Trigonometric substitution**: Irreducible quadratic under a square root or in the denominator, with no linear term in the numerator matching for u-substitution.

**Worked example:** Identify the correct technique for $\int 3x \sqrt{x^2 + 9} dx$ and evaluate.

1. Check the structure: we have a composite function $\sqrt{x^2 + 9}$, and the remaining factor $3x$ is proportional to the derivative of the inner function $x^2 + 9$. This matches the u-substitution signature.
2. Define $u = x^2 + 9$, so $du = 2x dx$, which rearranges to:
3. $$\frac{3}{2} du = 3x dx$$
4. Substitute into the integral and integrate:
5. $$\int \sqrt{u} \cdot \frac{3}{2} du = \frac{3}{2} \cdot \frac{2}{3} u^{3/2} + C = u^{3/2} + C$$
6. Substitute back to get the final antiderivative:
7. $$(x^2 + 9)^{3/2} + C$$

> **Exam tip:** If the $g'(x)$ term is only missing a constant factor, never redefine $u$ to fix it. Just factor out the constant reciprocal after solving for $dx$ to avoid common sign and reciprocal errors.

## Handling Multi-Technique Special Cases

Many integrals on the AP BC exam require combining two or more techniques. The key rule is: after each simplification or substitution step, restart the decision framework from the beginning for the new integrand. Common special cases include improper rational functions requiring simplification before partial fractions, quadratics requiring completing the square before trig substitution or basic formulas, and integration by parts followed by u-substitution.

**Worked example:** Evaluate $\int \frac{x}{x^4 + 4x^2 + 5} dx$.

1. First, note the denominator is a quartic with only even powers, so rewrite it as a quadratic in $x^2$ and complete the square:
2. $$x^4 + 4x^2 +5 = (x^2 + 2)^2 + 1$$
3. Re-run the decision framework: the numerator $x$ is proportional to the derivative of $x^2$, so we use u-substitution with $u = x^2$, giving $du = 2x dx$, or:
4. $$\frac{1}{2} du = x dx$$
5. Substitute to get a new integral that matches the basic arctangent formula:
6. $$\frac{1}{2} \int \frac{1}{(u + 2)^2 + 1^2} du$$
7. Apply the arctangent integral formula $\int \frac{1}{v^2 + a^2} dv = \frac{1}{a} \arctan\left(\frac{v}{a}\right) + C$ with $v = u+2$ and $a=1$:
8. $$\frac{1}{2} \arctan(u + 2) + C$$
9. Substitute back to get the final result:
10. $$\frac{1}{2} \arctan(x^2 + 2) + C$$

> **Exam tip:** If you see a quartic denominator with only even powers, always check if it can be rewritten as a quadratic in $x^2$ before jumping to more complex techniques — this is a common AP exam trick that trips up unprepared students.

## AP-Style Practice Check

**Check your understanding**

Test your understanding of technique selection:

1. Which of the following is the most efficient technique to evaluate $\int x^3 \ln x dx$?

   - U-substitution with $u = x^3$
   - Integration by parts with $u = \ln x$, $dv = x^3 dx$
   - Partial fraction decomposition
   - Trigonometric substitution with $x = \tan \theta$

   *Why:* The integrand is already simplified, and does not fit the u-substitution structure. It is not a rational function, so partial fractions are inapplicable, and there is no radical requiring trig substitution. Integration by parts is correct because $\ln x$ simplifies when differentiated.

**Worked example:** Evaluate $\int \frac{3x^2 - 3x - 3}{(x-1)(x^2 - 1)} dx$, then find the definite integral from $x=2$ to $x=3$ rounded to three decimal places.

1. First factor the denominator completely:
2. $$(x-1)(x^2 -1) = (x-1)^2(x+1)$$
3. The numerator degree (2) is less than the denominator degree (3), so we use partial fraction decomposition:
4. $$\frac{3x^2 - 3x - 3}{(x-1)^2(x+1)} = \frac{A}{x-1} + \frac{B}{(x-1)^2} + \frac{C}{x+1}$$
5. Solving for constants gives $A = \frac{9}{4}$, $B = -\frac{3}{2}$, $C = \frac{3}{4}$. Integrate term-by-term for the indefinite integral:
6. $$\frac{9}{4} \ln|x-1| + \frac{3}{2(x-1)} + \frac{3}{4} \ln|x+1| + C$$
7. Evaluate the definite integral from 2 to 3:
8. $$\left(\frac{9}{4}\ln 2 + \frac{3}{4} + \frac{3}{4}\ln 4\right) - \left(0 + \frac{3}{2} + \frac{3}{4}\ln 3\right) \approx 1.026$$

## Common pitfalls

- **Wrong:** Trying to integrate $\frac{x^3}{x^2 - 1}$ directly via partial fraction decomposition without first dividing numerator by denominator.
  - Why it fails: Students memorize partial fractions for rational functions, so they apply it immediately regardless of numerator degree.
  - Correct: Always compare numerator and denominator degree first; if numerator degree ≥ denominator degree, do polynomial division to get a polynomial plus a proper rational fraction before applying other techniques.
- **Wrong:** Using integration by parts on $\int 2x e^{x^2} dx$ just because it is a product of two functions.
  - Why it fails: Students default to integration by parts for any product, without checking for u-substitution first.
  - Correct: Always check for u-substitution before integration by parts; this integrand is a straightforward u-substitution problem that becomes much more complicated if you use parts.
- **Wrong:** For $\int \frac{1}{x^2 - 4x} dx$, completing the square and using trigonometric substitution when the denominator factors easily.
  - Why it fails: Students see a quadratic and default to completing the square without checking for real factors.
  - Correct: Always check if a quadratic denominator factors over the reals first; if it does, partial fractions is much faster and less error-prone.
- **Wrong:** When doing u-substitution for the definite integral $\int_0^2 x \sqrt{x^2 + 1} dx$, keeping the original $x$-bounds after substituting $u = x^2 + 1$.
  - Why it fails: Students forget to adjust bounds for definite u-substitution, leading to incorrect final values.
  - Correct: Immediately calculate the new $u$-bounds after defining $u$, before you start integrating.
- **Wrong:** Using u-substitution on $\int e^x \sin x dx$ because of the $e^x$ term.
  - Why it fails: Students see $e^x$ and assume substitution, but the integral becomes more complex after substitution.
  - Correct: Recognize this is a product of two integrable/differentiable functions, so use integration by parts twice and solve for the original integral.

## Cheatsheet

| Category | Formula / Rule | Notes |
| --- | --- | --- |
| Basic Log Integral | $\int \frac{1}{x} dx = \ln\|x\| + C$ | Always include absolute value, required for full credit |
| Basic Arctangent Integral | $\int \frac{1}{a^2 + x^2} dx = \frac{1}{a} \arctan\left(\frac{x}{a}\right) + C$ | Use after completing the square for irreducible quadratics |
| U-Substitution | $\int f(g(x))g'(x) dx = \int f(u) du$ | Use for composite functions times derivative of inner function |
| Integration by Parts | $\int u dv = uv - \int v du$ | Pick $u$ as the function that simplifies when differentiated |
| Partial Fractions (Distinct Linear) | $\frac{p(x)}{(x-a)(x-b)} = \frac{A}{x-a} + \frac{B}{x-b}$ | Use for proper rational functions with factorable denominators |
| Partial Fractions (Repeated Linear) | $\frac{p(x)}{(x-a)^2} = \frac{A}{x-a} + \frac{B}{(x-a)^2}$ | Add one term for each power of the repeated factor |
| Trig Substitution ($\sqrt{a^2 - x^2}$) | $x = a \sin \theta$ | $1 - \sin^2 \theta = \cos^2 \theta$ simplifies the radical |
| Trig Substitution ($\sqrt{x^2 + a^2}$) | $x = a \tan \theta$ | $1 + \tan^2 \theta = \sec^2 \theta$ simplifies the radical |
| Trig Substitution ($\sqrt{x^2 - a^2}$) | $x = a \sec \theta$ | $\sec^2 \theta - 1 = \tan^2 \theta$ simplifies the radical |

## What's next

Mastering selection of antidifferentiation techniques is the foundational prerequisite for all remaining topics in Unit 6: Integration and Accumulation of Change, as well as all later topics involving differential equations, areas, and volumes. Next you will deepen your understanding of individual advanced techniques, then apply these skills to solve separable differential equations, compute areas between curves, find volumes of revolution, and calculate arc lengths. Without the ability to quickly select the correct integration technique, you will struggle to complete larger problems within AP exam time limits, leading to unnecessary lost points. This topic also directly feeds into the study of improper integrals and differential equations later in the AP Calculus BC course.

- [Integration by parts](https://www.owlsprep.com/study/ap-calculus-bc-u6-integration-by-parts/)
- [Differential Equations Overview](https://www.owlsprep.com/study/ap-calculus-bc-u7-overview/)
- [Modeling situations with differential equations](https://www.owlsprep.com/study/ap-calculus-bc-u7-modeling-situations-with-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-bc-u6-selecting-techniques-for-antidifferentiation/
