pi / | | (sin(x) + sin(2*x))*sin(n*x) dx | / 0
Integral((sin(x) + sin(2*x))*sin(n*x), (x, 0, pi))
/ -pi | ---- for Or(n = -2, n = -1) | 2 | | pi | -- for Or(n = 1, n = 2) < 2 | | 2 | 2*sin(pi*n) n *sin(pi*n) |------------- + ------------- otherwise | 4 2 4 2 \4 + n - 5*n 4 + n - 5*n
=
/ -pi | ---- for Or(n = -2, n = -1) | 2 | | pi | -- for Or(n = 1, n = 2) < 2 | | 2 | 2*sin(pi*n) n *sin(pi*n) |------------- + ------------- otherwise | 4 2 4 2 \4 + n - 5*n 4 + n - 5*n
Piecewise((-pi/2, (n = -2)∨(n = -1)), (pi/2, (n = 1)∨(n = 2)), (2*sin(pi*n)/(4 + n^4 - 5*n^2) + n^2*sin(pi*n)/(4 + n^4 - 5*n^2), True))
Estos ejemplos se pueden aplicar para introducción de los límites de integración inferior y superior.