Python 是一种广泛使用的解释型、高级和通用的编程语言。除了 numpy 提供科学计算外,还有 sympy 用于数学符号计算。

安装

sympy 的安装非常简单,使用 pip install sympy 即可完成。更详细的安装教程请参考 sympy Installation 官网

下面直接进入使用介绍

使用

命令行

如果您已经安装了 sympy,那么在命令行就可以直接使用,就行使用 python 或 ipython 一样,方法如下:

bash
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
$ isympy
No event loop hook running.
IPython console for SymPy 1.10.1 (Python 3.9.17-64-bit) (ground types: python)

These commands were executed:
>>> from sympy import *
>>> x, y, z, t = symbols('x y z t')
>>> k, m, n = symbols('k m n', integer=True)
>>> f, g, h = symbols('f g h', cls=Function)
>>> init_printing()

Documentation can be found at https://docs.sympy.org/1.10.1/


In [1]:

jupyter

建议使用 jupyterlab 进行更方便的交互式使用 sympy,同时可以撰写 markdown 说明文档。

python
1
import sympy

计算数值

sympy 作为一种数学符合计算工具,它同时也能够进行科学计算。

python
1
2
pi = sympy.pi
pi

π

python
1
2
# 显示为实数
pi.evalf(n=100)

3.141592653589793238462643383279502884197169399375105820974944592307816406286208998628034825342117068

python
1
2
3
# 无穷的表示
infty = sympy.oo
infty

python
1
infty > 9999999

True

python
1
infty + 1

python
1
2
rational_a = sympy.Rational(1, 2)
rational_a

12

python
1
2
rational_b = sympy.Rational(1, 3)
rational_b

13

python
1
rational_a + rational_b

56

符号表示

python
1
2
x = sympy.Symbol("x")
x

x

python
1
2
x, y = sympy.symbols("x y")
x

x

python
1
y

y

python
1
2
# abc 模块下记录有所有的 拉丁字母和希腊字母
from sympy import abc
python
1
2
x = abc.x
x

x

python
1
2
3
# 注意 Python 关键字冲突
lambda_var = abc.lamda
lambda_var

λ

python
1
sympy.I

i

python
1
2
xi = sympy.symbols("xi", real=True)
xi

ξ

python
1
sympy.expand_complex(sympy.exp(sympy.I * xi))

isin(ξ)+cos(ξ)

python
1
x + y * 2 + x - y * 2

2x

输出格式

sympy 允许很多种形式的输出,可以通过如下方式设置

python
1
sympy.init_printing(use_unicode=False, wrap_line=True)

该函数有很多自定义参数,可以使用 sympy.init_printing? 在 jupyter 中查看。

python
1
2
# latex
sympy.print_latex(1 / x + 1 / y)
\frac{1}{y} + \frac{1}{x}
python
1
sympy.latex(1 / x)
'\\frac{1}{x}'
python
1
2
# dotprint
sympy.printing.dot.dotprint(1 / x)
'digraph{\n\n# Graph style\n"ordering"="out"\n"rankdir"="TD"\n\n#########\n# Nodes #\n#########\n\n"Pow(Symbol(\'x\'), Integer(-1))_()" ["color"="black", "label"="Pow", "shape"="ellipse"];\n"Symbol(\'x\')_(0,)" ["color"="black", "label"="x", "shape"="ellipse"];\n"Integer(-1)_(1,)" ["color"="black", "label"="-1", "shape"="ellipse"];\n\n#########\n# Edges #\n#########\n\n"Pow(Symbol(\'x\'), Integer(-1))_()" -> "Symbol(\'x\')_(0,)";\n"Pow(Symbol(\'x\'), Integer(-1))_()" -> "Integer(-1)_(1,)";\n}'
python
1
2
# mathml
sympy.print_mathml(1 / x)
<apply>
    <power/>
    <ci>x</ci>
    <cn>-1</cn>
</apply>
python
1
sympy.print_python(1 / x)
x = Symbol('x')
e = 1/x
python
1
sympy.print_ccode(1 / x)
1.0/x
python
1
sympy.print_rcode(1 / x)
1.0/x

更多打印相关的知识请参考:sympy文档 print

代数

展开

python
1
sympy.expand((x + y) ** 5)

x5+5x4y+10x3y2+10x2y3+5xy4+y5

python
1
sympy.expand(sympy.cos(x + y), trig=True)

sin(x)sin(y)+cos(x)cos(y)

python
1
sympy.expand(sympy.cos(x - y))

cos(xy)

python
1
sympy.expand(x + y, complex=True)

re(x)+re(y)+iim(x)+iim(y)

化简

python
1
sympy.simplify((x**2 + x * y + 3) / x)

x+y+3x

python
1
sympy.simplify((x + y) / (x - y) + (x - y) / (x + y))

(xy)2+(x+y)2(xy)(x+y)

矩阵

python
1
sympy.Matrix([[1, 2], [1, 2]])

[1212]

python
1
sympy.Matrix([[1, 2], [1, 2]]).eigenvals()

0:1, 3:1

python
1
sympy.Matrix([[1, x], [y, 1]])

[1xy1]

微分方程

python
1
f, g = sympy.symbols("f g", cls=sympy.Function)
python
1
f(x).diff(x, x) + f(x)

f(x)+d2dx2f(x)

python
1
sympy.dsolve(f(x).diff(x, x) + f(x), f(x))

f(x)=C1sin(x)+C2cos(x)

python
1
2
3
4
5
sympy.dsolve(
sympy.sin(x) * sympy.cos(f(x)) + sympy.cos(x) * sympy.sin(f(x)) * f(x).diff(x),
f(x),
hint="separable",
)

[f(x)=acos(C1cos(x))+2π, f(x)=acos(C1cos(x))]

微积分

极限

python
1
sympy.limit(sympy.sin(x) / x, x, 0, dir="+-")

1

python
1
sympy.limit(1 / x**2, x, sympy.oo)

0

python
1
2
func = sympy.Limit(sympy.sin(x) / x, x, 0, dir="+-")
func

limx0(sin(x)x)

python
1
sympy.Eq(func, func.doit())

limx0(sin(x)x)=1

求导

python
1
sympy.diff(sympy.sin(x), x)

cos(x)

python
1
sympy.diff(sympy.exp(1 + x**2), x)

2xex2+1

python
1
sympy.Eq(sympy.exp(1 + x**2), sympy.diff(sympy.exp(1 + x**2), x))

ex2+1=2xex2+1

级数

python
1
sympy.series(sympy.sin(x), x)

xx36+x5120+O(x6)

python
1
sympy.series(sympy.ln(1 + x), x)

xx22+x33x44+x55+O(x6)

积分

python
1
sympy.integrate(3 * x**2, x)

x3

python
1
sympy.integrate(sympy.sin(x), x)

cos(x)

python
1
sympy.integrate(sympy.exp(-(x**2)) * sympy.erf(x), x)

πerf2(x)4

python
1
sympy.integrate(sympy.cos(x), (x, 0, sympy.pi / 2))

1

python
1
sympy.integrate(sympy.exp(-(x**2)), (x, -sympy.oo, sympy.oo))

π

python
1
2
func = sympy.Integral(sympy.exp(-(x**2)), (x, -sympy.oo, sympy.oo))
func

ex2dx

python
1
sympy.Eq(func, func.doit())

ex2dx=π

解方程

python
1
sympy.solveset(x**3 - 1, x)

1,123i2,12+3i2

python
1
sympy.solve((x + 2 * y - 2, -3 * x + 3 * y - 5), (x, y))

x:49, y:119

因式分解

python
1
2
func = x**4 - 3 * x**2 + 1
func

x43x2+1

python
1
sympy.factor(func)

(x2x1)(x2+x1)

python
1
sympy.Eq(func, sympy.factor(func))

x43x2+1=(x2x1)(x2+x1)

python
1
sympy.factor(func, modulus=5)

(x2)2(x+2)2

参考文献

  1. sympy 文档 print
  2. Sympy : Symbolic Mathematics in Python