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