| Expression | Substitution | Identity Used | Result |
|---|---|---|---|
| sqrt( - ) | x = a sin(theta) | 1- = | sqrt becomes a*cos(theta) |
| sqrt( + ) | x = a tan(theta) | 1+ = | sqrt becomes a*sec(theta) |
| sqrt( - ) | x = a sec(theta) | = | sqrt becomes a*tan(theta) |
After substitution: Express everything in terms of theta, integrate, then convert back using a right triangle.
Common pitfall: Forgetting to change dx. If x = a sin(theta), then dx = a cos(theta) d(theta).
Example: integral dx/sqrt(). Let x = 2tan(theta). dx = 2(theta)d(theta). sqrt() = 2sec(theta). Integral = integral sec(theta)d(theta) = ln|sec(theta)+tan(theta)| = ln|x/2 + sqrt| = ln|x+sqrt()| - ln2.