from sympy import symbols, integrate
x = symbols('x')
f = x**2 + 1
area = integrate(f, (x, 0, 1))
print(area) # Output: 4/3
4/3
Lecture 21
University of Arizona
INFO 511 - Spring 2025
Differentiation rules
Constant rule: ddx(c)=0
Power rule: ddx(xn)=nxn−1
Constant multiple rule: ddx[c⋅f(x)]=c⋅f′(x)
Sum rule: ddx[f(x)+g(x)]=f′(x)+g′(x)
Difference rule: ddx[f(x)−g(x)]=f′(x)−g′(x)
From last time:
Measures the accumulation of quantities and the area under a curve.
Example: Used to compute the area under probability distribution functions, which is essential in statistics and data analysis.
Symbol: ∫f(x)dx
Practical Application: Calculating Cumulative Distribution Functions (CDFs)
Area under the curve
The integral of a function represents the area under the curve of that function on a graph, between two points.
Example: Finding the total distance traveled given a speed-time graph.
Calculating integrals using SymPy
Integration rules
Constant rule: ∫c,dx=cx+C
Power rule: ∫xn,dx=xn+1n+1+C
Constant multiple rule: ∫c⋅f(x),dx=c⋅∫f(x),dx
Sum rule: ∫[f(x)+g(x)],dx=∫f(x),dx+∫g(x),dx
Difference rule: ∫[f(x)−g(x)],dx=∫f(x),dx−∫g(x),dx
Function: f(x)=7
Integral: ∫7,dx=7x+C
Function: f(x)=x3
Integral: ∫x3,dx=x44+C
Function: f(x)=5x2
Integral: ∫5x2,dx=5⋅x33+C=5x33+C
Function: f(x)=x3+4x−5
Integral: ∫(x3+4x−5),dx=x44+2x2−5x+C
Complex Integrals:
Involves functions composed of multiple simpler functions.
Requires application of rules like integration by parts and substitution for integration.
Example Function:
∫ba(ecx+1xn)dx
∫u dv=uv−∫v du
Function: ∫xex,dx
u=x⇒du=dx
dv=ex,dx⇒v=ex
∫xex dx=xex−∫ex dx=xex−ex+C
Function: ∫xex dx
Differentiate: u:du=dx
Integrate: dv:v=ex
Function: ∫xex dx
∫u dv=uv−∫v du
∫xexdx=xex−∫exdx
Function: ∫xex dx
∫xexdx=xex−ex+C
∫xexdx=ex(x−1)+C
Function: ∫f(g(x))g′(x)dx=∫f(u) du
Function: ∫2x√x2+1,dx
∫2x√x2+1 dx=∫√u du=23(x2+1)3/2+C
Function: ∫xln(x),dx
u=ln(x)⇒du=1x,dx
dv=x,dx⇒v=x22
Function: ∫xln(x),dx
∫xln(x),dx=x22ln(x)−∫x22⋅1x dx=x22ln(x)−12∫x dx
=x22ln(x)−x24+C
You’ll learn more about this in INFO 521: Introduction to Machine Learning and/or INFO 523: Data Mining and Discovery
ae-14-integration
Practice integration (you will be tested on this in Exam 2)