Leave lesson

Pure · Integration

1 / 10

Integrating standard functions

The integrals that are just the derivative rules in reverse — e^x, 1/x → ln|x|, sin, cos and sec² — together with the f(ax+b) rule for a linear inside function (integrate as normal, then divide by a).

Pure · Integration

Integrating standard functions

The integrals that are just the derivative rules in reverse — e^x, 1/x → ln|x|, sin, cos and sec² — together with the f(ax+b) rule for a linear inside function (integrate as normal, then divide by a).

Why it works

Integration is differentiation run backwards, so every derivative you know gives you an integral for free — just read the rule the other way. Once you have the Year 2 derivatives of exe^x, lnx\ln x and the trig functions, a whole table of standard integrals falls out: exdx=ex+c,cosxdx=sinx+c,sinxdx=cosx+c,\int e^x\,dx = e^x + c, \qquad \int \cos x\,dx = \sin x + c, \qquad \int \sin x\,dx = -\cos x + c, sec2xdx=tanx+c,secxtanxdx=secx+c,cosec2xdx=cotx+c.\int \sec^2 x\,dx = \tan x + c, \qquad \int \sec x\tan x\,dx = \sec x + c, \qquad \int \operatorname{cosec}^2 x\,dx = -\cot x + c.

The special one: 1/x\boldsymbol{1/x}. The power rule for integration, "raise the power and divide by the new power", dies for x1dx\int x^{-1}\,dx — it would divide by zero. But you already know a function whose derivative is 1x\tfrac1x: it is lnx\ln x. So 1xdx=lnx+c.\int \frac{1}{x}\,dx = \ln|x| + c. The modulus matters: lnx\ln x only exists for x>0x > 0, yet 1x\tfrac1x is perfectly fine for x<0x < 0 too. Writing lnx\ln|x| covers both halves (for x<0x<0, ddxln(x)=1x=1x\frac{d}{dx}\ln(-x) = \frac{-1}{-x} = \frac1x). Always include the modulus when you integrate a reciprocal.

The f(ax+b)\boldsymbol{f(ax+b)} rule — a linear inside function. What about e3xdx\int e^{3x}\,dx or cos2xdx\int \cos 2x\,dx? Differentiating F(ax+b)F(ax+b) brings out an extra factor aa by the chain rule, so to undo that you must divide by aa: f(ax+b)dx=1aF(ax+b)+c,where F=f.\int f(ax + b)\,dx = \frac{1}{a}\,F(ax + b) + c, \quad\text{where } F' = f. So e3xdx=13e3x+c\int e^{3x}\,dx = \tfrac13 e^{3x} + c, cos2xdx=12sin2x+c\int \cos 2x\,dx = \tfrac12\sin 2x + c, and (2x+1)5dx=1216(2x+1)6+c=112(2x+1)6+c\int (2x+1)^5\,dx = \tfrac{1}{2}\cdot\tfrac{1}{6}(2x+1)^6 + c = \tfrac{1}{12}(2x+1)^6 + c. This shortcut works only because the inside is linear (ax+bax + b); a non-linear inside needs substitution or the reverse chain rule instead.

A reciprocal of a linear function combines both ideas: 1ax+bdx=1alnax+b+c.\int \frac{1}{ax + b}\,dx = \frac{1}{a}\ln|ax + b| + c.