gpt4 book ai didi

python - 如何使用 sympy 在 python 中查找函数的域

转载 作者:行者123 更新时间:2023-12-05 05:11:07 26 4
gpt4 key购买 nike

我正在编写一个 Python 脚本,该脚本将数学函数作为输入并输出有用的信息来为该函数绘制曲线(切线、交点、渐近线等),第一步是找到定义域该函数的(当该函数有效时,例如:1/x-2 df=]-∞,2[U]2,+∞[),我需要使用 sympy 来完成。下面是WIP代码

from sympy import *
from fractions import *

x = symbols('x')
f = Function('f')
f = input('type function: ')
fp = diff(f)
sol = solve(f, x)
sol_p = solve(fp, x)
print(f"f(x)={f},f'(x)={fp}")
#print(f"x1={sol[0]},x2={sol[1]},x'={sol_p}")
print(f'{len(sol)}')
psol = {}
limits_at_edges = {}
df = solveset(f, x, domain=S.Reals)

for i in range(1,( len(sol) + 1)): # Prints out every item in sol[] after aplying .evalf()
psol["x" + str(i) ] = sol[i - 1].evalf()
for i in range(1, len(sol) + 1):
limits_at_edges[f'limit x -> x{i} f(x)'] = limit(f, x, sol[i - 1])

print(f'Solution:{sol}')
print(f'Processes solution:{psol}')
print(f'Derivative solution:{sol_p}')
print(limits_at_edges)
print(f'Domain:{df}')
pprint(f, use_unicode=True)

最佳答案

这个问题类似于How to know whether a function is continuous with sympy?

这可以使用 continuous_domain 来完成,如 here 所解释的那样.

关于python - 如何使用 sympy 在 python 中查找函数的域,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/55834798/

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