gpt4 book ai didi

python - Sympy - limit() 错误 : Result depends on the sign

转载 作者:行者123 更新时间:2023-11-28 17:07:48 32 4
gpt4 key购买 nike

我正在尝试解决以下问题:

enter image description here

应用以下内容我得到了正确答案。

α, t, x = symbols('α t x')
integrate(α*x*exp(-α*x), (x, 0, oo), conds='none')

为了检查解决方案 (1/α),我尝试了以下操作。

limit(integrate(α*x*exp(-α*x), (x, 0, t), conds='none'), t, oo)

但这会产生 NotImplementedError: Result depends on the sign of -sign(α) 以及一个没有描述的进一步的 **NotImplementedError**。该函数适用于实数,但不适用于 oo。我该如何解决这个问题?

最佳答案

将参数 positive = True 添加到 symbols 函数可缓解此问题。

α, t, x = symbols('α t x', positive = True)

func = integrate(α*x*exp(-α*x), (x, 0, t), conds='none')

(limit(func, t, oo))

屈服 1/α

关于python - Sympy - limit() 错误 : Result depends on the sign,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/49880817/

32 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com