在 Maple 中执行从负无穷大到无穷大的积分

发布于 2024-09-19 23:54:46 字数 304 浏览 6 评论 0原文

我正在尝试在 Maple 中执行以下积分:

simplify(int(a*x^2*e^(-a*x^2), x = -infinity .. infinity))

但 Maple 不返回答案,而是返回积分语句本身:

int(a*x^2*e^(-a*x^2), x = -infinity .. infinity)

不过以更漂亮的形式(带有实际的积分符号等)。我尝试删除“simplify()”,但没有任何区别。

知道为什么吗?它应该返回一个值。

I'm trying to perform the following integral in Maple:

simplify(int(a*x^2*e^(-a*x^2), x = -infinity .. infinity))

But instead of returning an answer, Maple just returns back the integral statement itself:

int(a*x^2*e^(-a*x^2), x = -infinity .. infinity)

In the prettier form though (with the actual integral sign, etc). I've tried removing the "simplify()" but it doesn't make any difference.

Any idea why that is? It should return a value.

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

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

发布评论

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

评论(3

嘿嘿嘿 2024-09-26 23:54:46

您可能只是遇到语法问题。应用于 x 的指数函数是 exp(x) 而不是 e^x。

> int(a*x^2*exp(-a*x^2), x = -infinity .. infinity);
                /               (1/2)           \
                |             Pi                |
       piecewise|csgn(a) = 1, --------, infinity|
                |                (1/2)          |
                \             2 a               /

You may have just a syntax problem. The exponential function applied to x is exp(x) not e^x.

> int(a*x^2*exp(-a*x^2), x = -infinity .. infinity);
                /               (1/2)           \
                |             Pi                |
       piecewise|csgn(a) = 1, --------, infinity|
                |                (1/2)          |
                \             2 a               /
锦欢 2024-09-26 23:54:46

你必须告诉 maple a 有正实部。否则,积分不存在。请参阅手册了解如何执行此操作。

IIRC,有一个 assume 函数和一个 symbolic 选项,您可以传递给各种函数(包括 Simply 和 int)。

You have to tell maple that a has positive real part. Otherwise, the integral does not exist. Consult the manual for how to do this.

IIRC, there is a assume function, and a symbolic option you can pass to various functions (including simplify and int).

心如荒岛 2024-09-26 23:54:46

对于它的价值 Wolfram Alpha 似乎能够做到这一点

在此处输入图像描述

它给出的答案为 sqrt(pi ) / (2 * sqrt (a))(假设Re(a) > 0)。

For what it's worth Wolfram Alpha seems to be able to do this:

enter image description here

It gives an answer of sqrt(pi) / (2 * sqrt (a)) (assuming Re(a) > 0).

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