借助sympy.apart()方法,我們可以對有理數理表達式進行部分分解。
用法: apart(expression)
參數:
expression–這是一個合理的數學表達式。
返回值:在部分分解後返回一個表達式。
示例1:
在此示例中,我們可以看到,通過使用sympy.apart()方法,可以得到給定數學表達式的部分分數分解。
# import sympy
from sympy import *
x = symbols('x')
expr = (4 * x**3 + 21 * x**2 + 10 * x + 12) / (x**4 + 5 * x**3 + 5 * x**2 + 4 * x)
print("Mathematical expression : {}".format(expr))
# Use sympy.apart() method
pd = apart(expr)
print("After Partial Decomposition : {}".format(pd))
輸出:
Mathematical expression : (4*x**3 + 21*x**2 + 10*x + 12)/(x**4 + 5*x**3 + 5*x**2 + 4*x) After Partial Decomposition : (2*x - 1)/(x**2 + x + 1) - 1/(x + 4) + 3/x
示例2:
# import sympy
from sympy import *
x = symbols('x')
expr = 1/(x + 3)(x + 2)
print("Mathematical expression : {}".format(expr))
# Use sympy.factor_list() method
pd = apart(expr)
print("After Partial Decomposition : {}".format(pd))
輸出:
Mathematical expression : 1/((x + 2)*(x + 3)) After Partial Decomposition : -1/(x + 3) + 1/(x + 2)
相關用法
- Python set()用法及代碼示例
- Python os.dup()用法及代碼示例
- Python next()用法及代碼示例
- Python os.ttyname()用法及代碼示例
- Python os.pread()用法及代碼示例
- Python os.fsencode()用法及代碼示例
- Python PIL getpalette()用法及代碼示例
- Python os.system()用法及代碼示例
- Python os.getloadavg()用法及代碼示例
- Python os.isatty()用法及代碼示例
- Python PIL tobytes()用法及代碼示例
- Python PIL getcolors()用法及代碼示例
- Python PIL putdata()用法及代碼示例
- Python os.get_inheritable()用法及代碼示例
注:本文由純淨天空篩選整理自rupesh_rao大神的英文原創作品 Python | sympy.apart() method。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。