One more data point that uses maxima:
sage: sage.calculus.calculus.nintegral(x^2*(log(x))^4/((x+1)*(1+x^2)), x, 0, 1)
(0.07608822235542824, 4.544650350490897e-10, 231, 0)

This can also be computed via
f = x^2*(log(x))^4/((x+1)*(1+x^2))
f.nintegral(x,0,1)

Regards,
TB

On 24/10/2022 0:13, Pablo Vitoria wrote:
I am using Sage 9.7 running in Arch linux over WSL2

I get different results for an integral using numerical integration (which seems to agree with Mathematica) and symbolic integration:

numerical_integral(x^2*(log(x))^4/((x+1)*(1+x^2)),0,1)
(0.07608822217400527, 1.981757967172001e-07)

integral(x^2*(log(x))^4/((x+1)*(1+x^2)),x,0,1)
6*I*polylog(5, I) - 6*I*polylog(5, -I) + 765/64*zeta(5)
integral(x^2*(log(x))^4/((x+1)*(1+x^2)),x,0,1).n()
0.440633136273036

--
You received this message because you are subscribed to the Google Groups "sage-devel" group. To unsubscribe from this group and stop receiving emails from it, send an email to sage-devel+unsubscr...@googlegroups.com <mailto:sage-devel+unsubscr...@googlegroups.com>. To view this discussion on the web visit https://groups.google.com/d/msgid/sage-devel/4e75aaeb-5416-4ef8-826b-675c24fb297fn%40googlegroups.com <https://groups.google.com/d/msgid/sage-devel/4e75aaeb-5416-4ef8-826b-675c24fb297fn%40googlegroups.com?utm_medium=email&utm_source=footer>.

--
You received this message because you are subscribed to the Google Groups 
"sage-devel" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to sage-devel+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/sage-devel/7715d2e6-1da7-e085-fafb-7a9356ef9dd9%40gmail.com.

Reply via email to