Python 数学符号计算模块 sympy
Python 是一种广泛使用的解释型、高级和通用的编程语言。除了 numpy 提供科学计算外,还有 sympy 用于数学符号计算。
安装
sympy 的安装非常简单,使用 pip install sympy
即可完成。更详细的安装教程请参考 sympy Installation 官网。
下面直接进入使用介绍
使用
命令行
如果您已经安装了 sympy,那么在命令行就可以直接使用,就行使用 python 或 ipython 一样,方法如下:
bash
1 | $ isympy |
jupyter
建议使用 jupyterlab 进行更方便的交互式使用 sympy,同时可以撰写 markdown 说明文档。
python
1 | import sympy |
计算数值
sympy 作为一种数学符合计算工具,它同时也能够进行科学计算。
python
1 | pi = sympy.pi |
python
1 | # 显示为实数 |
python
1 | # 无穷的表示 |
python
1 | infty > 9999999 |
python
1 | infty + 1 |
python
1 | rational_a = sympy.Rational(1, 2) |
python
1 | rational_b = sympy.Rational(1, 3) |
python
1 | rational_a + rational_b |
符号表示
python
1 | x = sympy.Symbol("x") |
python
1 | x, y = sympy.symbols("x y") |
python
1 | y |
python
1 | # abc 模块下记录有所有的 拉丁字母和希腊字母 |
python
1 | x = abc.x |
python
1 | # 注意 Python 关键字冲突 |
python
1 | sympy.I |
python
1 | xi = sympy.symbols("xi", real=True) |
python
1 | sympy.expand_complex(sympy.exp(sympy.I * xi)) |
python
1 | x + y * 2 + x - y * 2 |
输出格式
sympy 允许很多种形式的输出,可以通过如下方式设置
python
1 | sympy.init_printing(use_unicode=False, wrap_line=True) |
该函数有很多自定义参数,可以使用 sympy.init_printing?
在 jupyter 中查看。
python
1 | # latex |
\frac{1}{y} + \frac{1}{x}
python
1 | sympy.latex(1 / x) |
'\\frac{1}{x}'
python
1 | # dotprint |
'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 | # mathml |
<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) |
python
1 | sympy.expand(sympy.cos(x + y), trig=True) |
python
1 | sympy.expand(sympy.cos(x - y)) |
python
1 | sympy.expand(x + y, complex=True) |
化简
python
1 | sympy.simplify((x**2 + x * y + 3) / x) |
python
1 | sympy.simplify((x + y) / (x - y) + (x - y) / (x + y)) |
矩阵
python
1 | sympy.Matrix([[1, 2], [1, 2]]) |
python
1 | sympy.Matrix([[1, 2], [1, 2]]).eigenvals() |
python
1 | sympy.Matrix([[1, x], [y, 1]]) |
微分方程
python
1 | f, g = sympy.symbols("f g", cls=sympy.Function) |
python
1 | f(x).diff(x, x) + f(x) |
python
1 | sympy.dsolve(f(x).diff(x, x) + f(x), f(x)) |
python
1 | sympy.dsolve( |
微积分
极限
python
1 | sympy.limit(sympy.sin(x) / x, x, 0, dir="+-") |
python
1 | sympy.limit(1 / x**2, x, sympy.oo) |
python
1 | func = sympy.Limit(sympy.sin(x) / x, x, 0, dir="+-") |
python
1 | sympy.Eq(func, func.doit()) |
求导
python
1 | sympy.diff(sympy.sin(x), x) |
python
1 | sympy.diff(sympy.exp(1 + x**2), x) |
python
1 | sympy.Eq(sympy.exp(1 + x**2), sympy.diff(sympy.exp(1 + x**2), x)) |
级数
python
1 | sympy.series(sympy.sin(x), x) |
python
1 | sympy.series(sympy.ln(1 + x), x) |
积分
python
1 | sympy.integrate(3 * x**2, x) |
python
1 | sympy.integrate(sympy.sin(x), x) |
python
1 | sympy.integrate(sympy.exp(-(x**2)) * sympy.erf(x), x) |
python
1 | sympy.integrate(sympy.cos(x), (x, 0, sympy.pi / 2)) |
python
1 | sympy.integrate(sympy.exp(-(x**2)), (x, -sympy.oo, sympy.oo)) |
python
1 | func = sympy.Integral(sympy.exp(-(x**2)), (x, -sympy.oo, sympy.oo)) |
python
1 | sympy.Eq(func, func.doit()) |
解方程
python
1 | sympy.solveset(x**3 - 1, x) |
python
1 | sympy.solve((x + 2 * y - 2, -3 * x + 3 * y - 5), (x, y)) |
因式分解
python
1 | func = x**4 - 3 * x**2 + 1 |
python
1 | sympy.factor(func) |
python
1 | sympy.Eq(func, sympy.factor(func)) |
python
1 | sympy.factor(func, modulus=5) |
参考文献
本博客所有文章除特别声明外,均采用 CC BY-NC-SA 4.0 许可协议。转载请注明来自 J. Xu!
评论