借助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。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。