2.2 Advanced Integration Techniques

Key Takeaways

  • Integration by parts ∫ u dv = uv - ∫ v du is efficiently executed using the tabular D-I method for products of polynomials with exponentials or trigonometric functions.
  • Trigonometric substitutions eliminate quadratic radicals: √(a^2 - x^2) requires x = a sin θ, √(a^2 + x^2) requires x = a tan θ, and √(x^2 - a^2) requires x = a sec θ.
  • Partial fraction decomposition resolves rational functions P(x)/Q(x) with deg(P) < deg(Q); the Heaviside cover-up method provides rapid evaluation for non-repeated linear factors.
  • The Weierstrass half-angle substitution t = tan(x/2) transforms rational functions of sin x and cos x into rational algebraic functions via sin x = 2t/(1+t^2), cos x = (1-t^2)/(1+t^2), and dx = 2 dt/(1+t^2).
  • King's symmetry property ∫_a^b f(x) dx = ∫_a^b f(a + b - x) dx solves seemingly intractable definite trigonometric integrals by algebraic reflection.
Last updated: September 2026

2.2 Advanced Integration Techniques

The GRE Mathematics Subject Test emphasizes rapid identification and flawless execution of integration techniques. While introductory calculus introduces substitution and elementary integration by parts, the GRE frequently combines multiple techniques in single problems or tests specialized methods such as reduction formulas, the Weierstrass substitution, and symmetry properties. Mastering these methods provides a decisive speed advantage.

The Substitution Method and Symmetry Properties

The change of variables formula for definite integrals states that if $g$ has a continuous derivative on $[a, b]$ and $f$ is continuous on the range of $g$, then: ∫abf(g(x))g′(x) dx=∫g(a)g(b)f(u) du\int_a^b f(g(x)) g'(x)\,dx = \int_{g(a)}^{g(b)} f(u)\,du

Exploiting Parity and Symmetry

When integrating over symmetric intervals $[-a, a]$:

  • If $f(-x) = -f(x)$ (odd function), then $\int_{-a}^a f(x),dx = 0$.
  • If $f(-x) = f(x)$ (even function), then $\int_{-a}^a f(x),dx = 2\int_0^a f(x),dx$.

King's Symmetry Property

A powerful identity frequently used to bypass complicated antiderivative calculations on the GRE is King's property. Substituting $u = a + b - x$ ($dx = -du$) gives: ∫abf(x) dx=∫abf(a+b−x) dx\int_a^b f(x)\,dx = \int_a^b f(a + b - x)\,dx When added to the original integral, this often produces an integrand that simplifies algebraically to a constant.

Integration by Parts (IBP)

From the product rule of differentiation, integration by parts yields: ∫u dv=uv−∫v du\int u\,dv = uv - \int v\,du The standard heuristic for choosing $u$ is the LIATE priority rule: Logarithmic, Inverse trigonometric, Algebraic (polynomial), Trigonometric, Exponential.

The Tabular (D-I) Method

For integrals of the form $\int P(x) g(x),dx$, where $P(x)$ is a polynomial and $g(x)$ is infinitely integrable (such as $e^{kx}$, $\sin(kx)$, or $\cos(kx)$), the tabular method organizes successive integration by parts:

  1. Create two columns: $D$ (differentiating $P(x)$ down to $0$) and $I$ (integrating $g(x)$ repeatedly).
  2. Connect each $i$-th entry in the $D$ column to the $(i+1)$-th entry in the $I$ column with alternating signs: $+ - + - \dots$
  3. Sum the diagonal products to obtain the complete antiderivative directly.

Reduction Formulas

Integrals involving higher integer powers often obey recurrence relations derived through IBP: ∫sin⁡nx dx=−1nsin⁡n−1xcos⁡x+n−1n∫sin⁡n−2x dx\int \sin^n x\,dx = -\frac{1}{n} \sin^{n-1} x \cos x + \frac{n - 1}{n} \int \sin^{n-2} x\,dx ∫sec⁡nx dx=1n−1sec⁡n−2xtan⁡x+n−2n−1∫sec⁡n−2x dx\int \sec^n x\,dx = \frac{1}{n - 1} \sec^{n-2} x \tan x + \frac{n - 2}{n - 1} \int \sec^{n-2} x\,dx For definite integrals from $0$ to $\pi/2$, Wallis's formulas provide instant evaluations: ∫0π/2sin⁡nx dx=∫0π/2cos⁡nx dx={n−1n⋅n−3n−2⋯12⋅π2,n evenn−1n⋅n−3n−2⋯23⋅1,n odd\int_0^{\pi/2} \sin^n x\,dx = \int_0^{\pi/2} \cos^n x\,dx = \begin{cases} \frac{n-1}{n} \cdot \frac{n-3}{n-2} \cdots \frac{1}{2} \cdot \frac{\pi}{2}, & n \text{ even} \\ \frac{n-1}{n} \cdot \frac{n-3}{n-2} \cdots \frac{2}{3} \cdot 1, & n \text{ odd} \end{cases}

Trigonometric Substitutions

Integrals containing quadratic radicals are simplified by using trigonometric identities to collapse sums or differences of squares into single squared terms:

Radical ExpressionRecommended SubstitutionDifferential $dx$Resulting Radical Identity
$\sqrt{a^2 - x^2}$$x = a\sin\theta, \quad \theta \in [-\frac{\pi}{2}, \frac{\pi}{2}]$$dx = a\cos\theta,d\theta$$\sqrt{a^2 - x^2} = a\cos\theta$
$\sqrt{a^2 + x^2}$$x = a\tan\theta, \quad \theta \in (-\frac{\pi}{2}, \frac{\pi}{2})$$dx = a\sec^2\theta,d\theta$$\sqrt{a^2 + x^2} = a\sec\theta$
$\sqrt{x^2 - a^2}$$x = a\sec\theta, \quad \theta \in [0, \frac{\pi}{2}) \cup [\pi, \frac{3\pi}{2})$$dx = a\sec\theta\tan\theta,d\theta$$\sqrt{x^2 - a^2} = a\tan\theta$

When confronted with general quadratic expressions $Ax^2 + Bx + C$ inside a square root, complete the square first to express the radical in one of the three canonical forms.

Partial Fraction Decomposition

To integrate a rational function $\frac{P(x)}{Q(x)}$:

  1. If $\deg(P) \ge \deg(Q)$, perform polynomial long division first: $\frac{P(x)}{Q(x)} = S(x) + \frac{R(x)}{Q(x)}$, with $\deg(R) < \deg(Q)$.
  2. Factor the denominator $Q(x)$ completely over $\mathbb{R}$ into linear factors $(ax + b)$ and irreducible quadratic factors $(ax^2 + bx + c)$.
  3. Decompose according to the factors:
    • Distinct linear factor $(x - r) \implies \frac{A}{x - r}$
    • Repeated linear factor $(x - r)^k \implies \sum_{j=1}^k \frac{A_j}{(x - r)^j}$
    • Irreducible quadratic factor $(x^2 + bx + c) \implies \frac{Bx + C}{x^2 + bx + c}$

The Heaviside Cover-Up Method

For distinct linear factors, coefficients are determined immediately without solving linear systems. If $Q(x) = (x - r_1)(x - r_2)\cdots(x - r_n)$, then: Ak=lim⁡x→rk(x−rk)P(x)Q(x)=P(rk)Q′(rk)A_k = \lim_{x \to r_k} (x - r_k) \frac{P(x)}{Q(x)} = \frac{P(r_k)}{Q'(r_k)}

The Weierstrass Half-Angle Substitution

Any rational function of trigonometric terms $R(\sin x, \cos x)$ can be converted into a rational function of an algebraic variable $t$ via the substitution $t = \tan(x/2)$: sin⁡x=2t1+t2,cos⁡x=1−t21+t2,dx=2 dt1+t2\sin x = \frac{2t}{1 + t^2}, \quad \cos x = \frac{1 - t^2}{1 + t^2}, \quad dx = \frac{2\,dt}{1 + t^2} This substitution is universally effective for integrating expressions such as $\frac{1}{a + b\cos x + c\sin x}$ where standard algebraic substitutions fail.

Worked Problem: King's Property Application

Problem: Evaluate $I = \int_0^{\pi} \frac{x \sin x}{1 + \cos^2 x},dx$. Solution: Apply King's property by substituting $x = \pi - u$, so $dx = -du$: I=∫0π(π−u)sin⁡(π−u)1+cos⁡2(π−u) du=∫0π(π−u)sin⁡u1+cos⁡2u duI = \int_0^{\pi} \frac{(\pi - u) \sin(\pi - u)}{1 + \cos^2(\pi - u)}\,du = \int_0^{\pi} \frac{(\pi - u) \sin u}{1 + \cos^2 u}\,du I=π∫0πsin⁡u1+cos⁡2u du−∫0πusin⁡u1+cos⁡2u du=π∫0πsin⁡u1+cos⁡2u du−II = \pi \int_0^{\pi} \frac{\sin u}{1 + \cos^2 u}\,du - \int_0^{\pi} \frac{u \sin u}{1 + \cos^2 u}\,du = \pi \int_0^{\pi} \frac{\sin u}{1 + \cos^2 u}\,du - I Adding $I$ to both sides: 2I=π∫0πsin⁡u1+cos⁡2u du2I = \pi \int_0^{\pi} \frac{\sin u}{1 + \cos^2 u}\,du Now substitute $w = \cos u$, $dw = -\sin u,du$, with limits changing from $w(0) = 1$ to $w(\pi) = -1$: 2I=π∫1−1−dw1+w2=π∫−11dw1+w2=π[arctan⁡(w)]−11=π(π4−(−π4))=π222I = \pi \int_1^{-1} \frac{-dw}{1 + w^2} = \pi \int_{-1}^1 \frac{dw}{1 + w^2} = \pi [\arctan(w)]_{-1}^1 = \pi \left(\frac{\pi}{4} - \left(-\frac{\pi}{4}\right)\right) = \frac{\pi^2}{2} Dividing by $2$ yields $I = \frac{\pi^2}{4}$.

Common GRE Traps & Pitfalls

  • Skipping polynomial long division: Attempting partial fractions when $\deg(P) \ge \deg(Q)$ without dividing leads to missing polynomial terms in the antiderivative.
  • Dropping the differential in Weierstrass substitutions: Forgetting that $dx = \frac{2,dt}{1 + t^2}$ introduces a factor of $(1 + t^2)$ or $2$ discrepancy in the final algebraic integrand.
  • Sign errors in the tabular method: Tabular IBP requires strictly alternating signs starting with positive ($+ - + -$). Misplacing a negative sign on the second row invalidates the entire expression.
  • Failing to transform definite integral limits: When performing substitution on a definite integral, forgetting to convert the integration limits from $x$-values to $u$-values frequently leads to incorrect numerical evaluations.
Loading diagram...
Single-Variable Integration Strategy Decision Tree
Test Your Knowledge

What is the value of the definite integral ∫_0^{π/2} (sin^3 x) / (sin x + cos x) dx - ∫_0^{π/2} (cos^3 x) / (sin x + cos x) dx?

A
B
C
D
Test Your Knowledge

Under the Weierstrass tangent half-angle substitution t = tan(x/2), which of the following algebraic integrals is equivalent to ∫ 1 / (2 + cos x) dx?

A
B
C
D
Test Your Knowledge

What is the exact value of the definite integral ∫_0^1 x^3 e^{2x} dx?

A
B
C
D