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