Python| sympy.apart() 方法
借助sympy.apart()方法,我们可以对有理数学表达式进行部分分数分解。
Syntax: apart(expression)
Parameters:
expression – It is a rational mathematical expression.
Returns: Returns an expression after the partial decomposition.
示例 #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)