ACEpath
Select Subject
Select Unit

Riemann Sums (Lram, Rram, Mram)

  • Left Riemann Sum (LRAM): i=1nf(xi1)Δx\sum_{i=1}^n f(x_{i-1})\Delta x
  • Right Riemann Sum (RRAM): i=1nf(xi)Δx\sum_{i=1}^n f(x_i)\Delta x
  • Midpoint Riemann Sum (MRAM): i=1nf(xˉi)Δx\sum_{i=1}^n f(\bar{x}_i)\Delta x where xˉi=xi1+xi2\bar{x}_i = \frac{x_{i-1}+x_i}{2}

Trapezoidal Rule

abf(x)dxΔx2[f(x0)+2f(x1)+2f(x2)++2f(xn1)+f(xn)]\int_a^b f(x)dx \approx \frac{\Delta x}{2}[f(x_0) + 2f(x_1) + 2f(x_2) + \cdots + 2f(x_{n-1}) + f(x_n)]

More accurate than Riemann sums for smooth functions.

Definition Of The Definite Integral

abf(x)dx=limni=1nf(xi)Δx\int_a^b f(x)dx = \lim_{n \to \infty} \sum_{i=1}^n f(x_i^*)\Delta x

where Δx=ban\Delta x = \frac{b-a}{n} and xix_i^* is any point in ith subinterval.

Geometric interpretation: Signed area between f(x) and x-axis from x=a to x=b.

Fundamental Theorem Of Calculus, Part 1

Fundamental Theorem of Calculus, Part 1 (FTC First Part)

ddx[axf(t)dt]=f(x)\frac{d}{dx}\left[\int_a^x f(t)dt\right] = f(x)

Accumulation function: F(x)=axf(t)dtF(x) = \int_a^x f(t)dt

Fundamental Theorem Of Calculus, Part 2

Fundamental Theorem of Calculus, Part 2 (FTC Second Part)

abf(x)dx=F(b)F(a)\int_a^b f(x)dx = F(b) - F(a)

where F is any antiderivative of f.

Antiderivatives For Basic Functions

FunctionAntiderivative
xnx^n (n ≠ -1)xn+1n+1+C\frac{x^{n+1}}{n+1} + C
1x\frac{1}{x}$\ln
exe^xex+Ce^x + C
axa^xaxlna+C\frac{a^x}{\ln a} + C
sinx\sin xcosx+C-\cos x + C
cosx\cos xsinx+C\sin x + C
sec2x\sec^2 xtanx+C\tan x + C
csc2x\csc^2 xcotx+C-\cot x + C
secxtanx\sec x \tan xsecx+C\sec x + C
11+x2\frac{1}{1+x^2}arctanx+C\arctan x + C
11x2\frac{1}{\sqrt{1-x^2}}arcsinx+C\arcsin x + C

Integration By Substitution

u-substitution: Let u = g(x), then du = g'(x)dx: f(g(x))g(x)dx=f(u)du\int f(g(x))g'(x)dx = \int f(u)du

For definite integrals, change limits: x=ax=bf(g(x))g(x)dx=u=g(a)u=g(b)f(u)du\int_{x=a}^{x=b} f(g(x))g'(x)dx = \int_{u=g(a)}^{u=g(b)} f(u)du

Long Division And Completing The Square

Used for rational functions where numerator degree ≥ denominator degree:

  1. Polynomial long division
  2. Complete the square for quadratic expressions

Integrals With Infinite Limits Or Unbounded Integrands

Improper integrals: af(x)dx=limtatf(x)dx\int_a^\infty f(x)dx = \lim_{t \to \infty}\int_a^t f(x)dx

abf(x)dx=limtbatf(x)dx\int_a^b f(x)dx = \lim_{t \to b^-}\int_a^t f(x)dx (if f undefined at b)

Convergence: If limit exists and is finite -> converges; otherwise -> diverges

The Trapezoidal Rule Formula For Approximating The Area Under A Curve.

The Trapezoidal Rule Formula for Approximating the Area Under a Curve

abf(x)dxΔx2[f(x0)+2f(x1)+2f(x2)++2f(xn1)+f(xn)]\int_a^b f(x)dx \approx \frac{\Delta x}{2}[f(x_0) + 2f(x_1) + 2f(x_2) + \cdots + 2f(x_{n-1}) + f(x_n)]

where Δx=ban\Delta x = \frac{b-a}{n} and xi=a+iΔxx_i = a + i\Delta x.