The table of basic integrals, the techniques for everything else, and the reason every indefinite integral ends in + C.
Why “+ C”?
Integration undoes differentiation. But differentiation throws away constants, since the derivative of 5 is 0, so undoing it can’t know which constant was there. Every antiderivative is really a whole family of curves stacked vertically:
Every curve F(x)=3x3−x+C has the same derivative, x2−1. Drag across the graph: at any x, all the tangent lines are parallel. Sliding C moves the curve up and down without changing a single slope, so the derivative can’t tell them apart, and the integral must include +C.
Linearity
∫(af(x)+bg(x))dx=a∫f(x)dx+b∫g(x)dx. Constants come out and sums split, so polynomials integrate term by term.
Table of basic integrals
Integral
Result
∫kdx
kx+C
∫xndx
n+1xn+1+C(n=−1)
∫x1dx
ln∣x∣+C
∫exdx
ex+C
∫axdx
lnaax+C
∫lnxdx
xlnx−x+C
∫sinxdx
−cosx+C
∫cosxdx
sinx+C
∫sec2xdx
tanx+C
∫tanxdx
−ln∣cosx∣+C
∫secxdx
ln∣secx+tanx∣+C
∫1+x21dx
arctanx+C
∫1−x21dx
arcsinx+C
Techniques
u-substitution (the chain rule in reverse)
Look for a function and its derivative. In ∫2xcos(x2)dx, let u=x2, du=2xdx: the integral becomes ∫cosudu=sinu+C=sin(x2)+C.
Integration by parts (the product rule in reverse)
∫udv=uv−∫vdu. For ∫xexdx take u=x, dv=exdx: result xex−ex+C. Choose u by LIATE.
Partial fractions
Split a rational function into simple pieces: x2−11=x−11/2−x+11/2, each of which integrates to a logarithm.
Trig identities
Reduce powers first: sin2x=21−cos2x, so ∫sin2xdx=2x−4sin2x+C.
An AI tutor reads the problem and steps above and explains them in plain words. It can make mistakes, so check it against the worked steps.
Questions students ask
What are the basic integration rules?
Power rule ∫xndx=n+1xn+1+C (n=−1), ∫x1dx=ln∣x∣+C, ∫exdx=ex+C, ∫sinxdx=−cosx+C, ∫cosxdx=sinx+C, plus linearity: constants come out, and sums split.
Why is there no product rule for integrals?
The integral of a product is not the product of integrals. Instead, the product rule for derivatives turns into integration by parts: ∫udv=uv−∫vdu.
How do I choose between substitution and parts?
If one factor is (a multiple of) the derivative of something inside another factor, use substitution. If you have a product of unrelated types (polynomial × exponential, polynomial × trig, log × anything), use parts, choosing u with LIATE.
What is LIATE?
An order for choosing u in integration by parts: Logarithmic, Inverse trig, Algebraic, Trigonometric, Exponential. Pick the one that comes first as u.