pi / | | /pi*n*x\ | sin|------|*x dx | \ pi / | / 0
Integral(sin(((pi*n)*x)/pi)*x, (x, 0, pi))
// 0 for n = 0\ / || | | || //sin(n*x) \ | // 0 for n = 0\ | /pi*n*x\ || ||-------- for n != 0| | || | | sin|------|*x dx = C - |<-|< n | | + x*|<-cos(n*x) | | \ pi / || || | | ||---------- otherwise| | || \\ x otherwise / | \\ n / / ||------------------------- otherwise| \\ n /
/sin(pi*n) pi*cos(pi*n) |--------- - ------------ for And(n > -oo, n < oo, n != 0) | 2 n < n | | 0 otherwise \
=
/sin(pi*n) pi*cos(pi*n) |--------- - ------------ for And(n > -oo, n < oo, n != 0) | 2 n < n | | 0 otherwise \
Piecewise((sin(pi*n)/n^2 - pi*cos(pi*n)/n, (n > -oo)∧(n < oo)∧(Ne(n, 0))), (0, True))
Estos ejemplos se pueden aplicar para introducción de los límites de integración inferior y superior.