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