1 / | | x*sin(n*pi*x) | ------------- dx | 4 | / 0
Integral((x*sin((n*pi)*x))/4, (x, 0, 1))
/ 0 for n = 0 | | //sin(pi*n*x) \ | ||----------- for pi*n != 0| <-|< pi*n | // 0 for n = 0\ | || | || | / | \\ x otherwise / x*|<-cos(pi*n*x) | | |------------------------------- otherwise ||------------- otherwise| | x*sin(n*pi*x) \ pi*n \\ pi*n / | ------------- dx = C - ------------------------------------------- + ----------------------------- | 4 4 4 | /
/ cos(pi*n) sin(pi*n) |- --------- + --------- for And(n > -oo, n < oo, n != 0) | 4*pi*n 2 2 < 4*pi *n | | 0 otherwise \
=
/ cos(pi*n) sin(pi*n) |- --------- + --------- for And(n > -oo, n < oo, n != 0) | 4*pi*n 2 2 < 4*pi *n | | 0 otherwise \
Piecewise((-cos(pi*n)/(4*pi*n) + sin(pi*n)/(4*pi^2*n^2), (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.