1 / | | / _________\ | | / 2 2 | | log(E)*\1 + \/ x + y / | ------------------------- dx | _________ | / 2 2 | \/ x + y | / 0
Integral((log(E)*(1 + sqrt(x^2 + y^2)))/sqrt(x^2 + y^2), (x, 0, 1))
/ // / ____\ \ | || | / 1 | 2 | | / _________\ ||asinh|x* / -- | for y > 0| | | / 2 2 | || | / 2 | | | log(E)*\1 + \/ x + y / || \ \/ y / | | ------------------------- dx = C + x + |< | | _________ || / _____\ | | / 2 2 || | / -1 | 2 | | \/ x + y ||acosh|x* / --- | for y < 0| | || | / 2 | | / \\ \ \/ y / /
// / ____\ \ || | / 1 | | ||asinh| / -- | for And(y > -oo, y < oo, y != 0)| 1 + |< | / 2 | | || \\/ y / | || | \\ nan otherwise /
=
// / ____\ \ || | / 1 | | ||asinh| / -- | for And(y > -oo, y < oo, y != 0)| 1 + |< | / 2 | | || \\/ y / | || | \\ nan otherwise /
1 + Piecewise((asinh(sqrt(y^(-2))), (y > -oo)∧(y < oo)∧(Ne(y, 0))), (nan, True))
Estos ejemplos se pueden aplicar para introducción de los límites de integración inferior y superior.