为什么 Mathematica 不能求解这个定积分?

发布于 2024-12-24 19:46:11 字数 387 浏览 3 评论 0原文

当我尝试在 Mathematica 8 中计算以下积分时,得到这个奇怪的结果:

In[1]:= Integrate[y/((1 + x^2 + y^2)^(3/2)), {y, 0, 1}]

Mathematicagraphics

Maple 14 可以解决这个问题很容易:


为什么 Mathematica 给出了不同的结果?

When I try to calculate the following integral in Mathematica 8, I get this strange result:

In[1]:= Integrate[y/((1 + x^2 + y^2)^(3/2)), {y, 0, 1}]

Mathematica graphics

Maple 14 can solve this one easily:


Why is Mathematica giving me a different result?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

木落 2024-12-31 19:46:11

试试这个

r = Integrate[y/((1 + x^2 + y^2)^(3/2)), {y, 0, 1}]
r = Assuming[Element[x, Reals], Simplify[r]];
Together[r]

,它给出的

(-Sqrt[1+x^2]+Sqrt[2+x^2])/(Sqrt[1+x^2] Sqrt[2+x^2])

结果与 Maple 的相同:

在此处输入图像描述

Try this

r = Integrate[y/((1 + x^2 + y^2)^(3/2)), {y, 0, 1}]
r = Assuming[Element[x, Reals], Simplify[r]];
Together[r]

which gives

(-Sqrt[1+x^2]+Sqrt[2+x^2])/(Sqrt[1+x^2] Sqrt[2+x^2])

Which is the same as Maple's :

enter image description here

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文