Integration BasicsTopic #18 of 32

Antiderivatives and Indefinite Integrals

Finding functions whose derivative is a given function.

Definition

An antiderivative of f(x)f(x) is a function F(x)F(x) such that:

F(x)=f(x)F'(x) = f(x)

The indefinite integral is the family of all antiderivatives:

f(x)dx=F(x)+C\int f(x) \, dx = F(x) + C

where CC is the constant of integration.

Notation

SymbolMeaning
\intintegral sign
f(x)f(x)integrand
dxdxvariable of integration
F(x)F(x)antiderivative
CCconstant of integration

Why +C?

If F(x)F(x) is an antiderivative of f(x)f(x), then so is F(x)+CF(x) + C for any constant CC, because:

ddx[F(x)+C]=F(x)+0=f(x)\frac{d}{dx}[F(x) + C] = F'(x) + 0 = f(x)

Basic Antiderivative Table

f(x)f(x)f(x)dx\int f(x) \, dx
00CC
kk (constant)kx+Ckx + C
xnx^n (n1)(n \neq -1)xn+1n+1+C\frac{x^{n+1}}{n+1} + C
1x\frac{1}{x}$\ln
exe^xex+Ce^x + C
axa^xaxln(a)+C\frac{a^x}{\ln(a)} + C
sin(x)\sin(x)cos(x)+C-\cos(x) + C
cos(x)\cos(x)sin(x)+C\sin(x) + C
sec2(x)\sec^2(x)tan(x)+C\tan(x) + C
csc2(x)\csc^2(x)cot(x)+C-\cot(x) + C
sec(x)tan(x)\sec(x)\tan(x)sec(x)+C\sec(x) + C
csc(x)cot(x)\csc(x)\cot(x)csc(x)+C-\csc(x) + C
11x2\frac{1}{\sqrt{1-x^2}}arcsin(x)+C\arcsin(x) + C
11+x2\frac{1}{1+x^2}arctan(x)+C\arctan(x) + C

Properties

Constant Multiple Rule

kf(x)dx=kf(x)dx\int k \cdot f(x) \, dx = k \cdot \int f(x) \, dx

Sum/Difference Rule

[f(x)±g(x)]dx=f(x)dx±g(x)dx\int [f(x) \pm g(x)] \, dx = \int f(x) \, dx \pm \int g(x) \, dx

Examples

Example 1: Power rule

x4dx=x55+C\int x^4 \, dx = \frac{x^5}{5} + C

Example 2: Negative exponents

1x3dx=x3dx=x22+C=12x2+C\int \frac{1}{x^3} \, dx = \int x^{-3} \, dx = \frac{x^{-2}}{-2} + C = -\frac{1}{2x^2} + C

Example 3: Fractional exponents

xdx=x1/2dx=x3/23/2+C=23x3/2+C\int \sqrt{x} \, dx = \int x^{1/2} \, dx = \frac{x^{3/2}}{3/2} + C = \frac{2}{3}x^{3/2} + C

Example 4: Sum of terms

(3x22x+5)dx=x3x2+5x+C\int (3x^2 - 2x + 5) \, dx = x^3 - x^2 + 5x + C

Example 5: Rewriting before integrating

(x+1)2xdx=x2+2x+1xdx\int \frac{(x + 1)^2}{x} \, dx = \int \frac{x^2 + 2x + 1}{x} \, dx

=(x+2+1x)dx= \int \left(x + 2 + \frac{1}{x}\right) dx

=x22+2x+lnx+C= \frac{x^2}{2} + 2x + \ln|x| + C

Example 6: Trigonometric

(sinx+3cosx)dx=cosx+3sinx+C\int (\sin x + 3\cos x) \, dx = -\cos x + 3\sin x + C

Example 7: Exponential

(ex+2x)dx=ex+2xln(2)+C\int (e^x + 2^x) \, dx = e^x + \frac{2^x}{\ln(2)} + C

Finding a Particular Solution

Given an initial condition, solve for CC.

Example

Find f(x)f(x) if f(x)=6x24x+1f'(x) = 6x^2 - 4x + 1 and f(1)=5f(1) = 5.

f(x)=(6x24x+1)dx=2x32x2+x+Cf(x) = \int (6x^2 - 4x + 1) \, dx = 2x^3 - 2x^2 + x + C

f(1)=22+1+C=5f(1) = 2 - 2 + 1 + C = 5

C=4C = 4

f(x)=2x32x2+x+4f(x) = 2x^3 - 2x^2 + x + 4