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