Common Integrals
A short reference table of antiderivatives you will use constantly, plus the rules that let you combine them. These standard forms show up throughout biology: gives a drug’s total exposure or the cumulative decay of a labeled tracer, the reciprocal integral produces the behind log-scaled assays, and the Gaussian integral at the end normalizes the normal density of biological measurements.
The table
Each row gives an indefinite integral (add a constant to any of them).
The case is the special exception to the power rule: it is the antiderivative that the formula cannot produce (division by zero when ).
Linearity rules
Integration is linear, which lets you break big integrals into small ones:
- Constant multiple: — pull constants outside.
- Sum rule:
The Gaussian integral
The area under the “bell curve” kernel over the whole real line is
This has no elementary antiderivative, yet the total is finite and exact. It is why the normal density integrates to — the is precisely the normalizing constant.
Worked example
Integrate the polynomial . Using the sum and constant-multiple rules with the power rule:
Evaluating from to :
Computing it
R
# Numeric check of the polynomial example
integrate(function(x) 3*x^2 + 2*x + 1, 0, 2)$value # 14
$
# Gaussian integral
integrate(function(x) exp(-x^2), -Inf, Inf)$value # 1.772454 = sqrt(pi)
$sqrt(pi) # 1.772454
Python
import sympy as sp
from scipy.integrate import quad
import numpy as np
x = sp.symbols("x")
print(sp.integrate(3*x**2 + 2*x + 1, (x, 0, 2))) # 14
print(sp.integrate(sp.exp(-x**2), (x, -sp.oo, sp.oo))) # sqrt(pi)
val, _ = quad(lambda t: np.exp(-t**2), -np.inf, np.inf)
print(val, np.sqrt(np.pi)) # 1.7724538509... 1.7724538509...
14
sqrt(pi)
1.7724538509055159 1.7724538509055159
Julia
using Symbolics, QuadGK
@variables x
D = Differential(x) # (not needed here, shown for context)
# Numeric checks
println(quadgk(t -> 3t^2 + 2t + 1, 0, 2)[1]) # 14.0
println(quadgk(t -> exp(-t^2), -Inf, Inf)[1]) # 1.7724538509055159
println(sqrt(pi)) # 1.7724538509055159
Why it matters for statistics
Densities are built from these functions: the exponential density uses , the normal uses the Gaussian integral, and moments (means, variances) reduce to power-rule integrals against a density. Knowing the table by sight makes normalizing constants and expected values fast to derive.