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