借助sympy.solve(expression)
方法,我们可以轻松地求解数学方程式,它将返回使用参数作为参数提供的方程式的根sympy.solve()
方法。
用法:sympy.solve(expression)
返回:Return the roots of the equation.
范例1:
在这个例子中,我们可以通过使用sympy.solve()
方法,我们可以求解数学表达式,这将返回该方程式的根。
# import sympy
from sympy import *
x, y = symbols('x y')
gfg_exp = x**2 - 4
print("Before Integration:{}".format(gfg_exp))
# Use sympy.integrate() method
intr = solve(gfg_exp, x)
print("After Integration:{}".format(intr))
输出:
Before Integration:x**2 - 4
After Integration:[-2, 2]
范例2:
# import sympy
from sympy import *
x, y = symbols('x y')
gfg_exp = x**2 + 36
print("Before Integration:{}".format(gfg_exp))
# Use sympy.integrate() method
intr = solve(gfg_exp, x)
print("After Integration:{}".format(intr))
输出:
Before Integration:x**2 + 36
After Integration:[-6*I, 6*I]
相关用法
- Python next()用法及代码示例
- Python set()用法及代码示例
- Python os.dup()用法及代码示例
- Python os.getpgrp()用法及代码示例
- Python os.getcwdb()用法及代码示例
- Python os.nice()用法及代码示例
- Python os.access()用法及代码示例
- Python os.fork()用法及代码示例
- Python os.chdir()用法及代码示例
- Python PIL UnsahrpMask()用法及代码示例
- Python os.fsencode()用法及代码示例
- Python PIL GaussianBlur()用法及代码示例
- Python sympy.Mod()用法及代码示例
- Python os.system()用法及代码示例
注:本文由纯净天空筛选整理自Jitender_1998大神的英文原创作品 Python | sympy.solve() method。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。