Skip to content

Sympy的使用


title: '[自用]利用sympy推公式' date: 2023-03-05 09:24:35 tags: - python - sympy


先在vsc里新建一个jupyter notebook文件(.ipynb),然后点插入代码输入sympy的命令。

from sympy import *
init_printing() #公式输出

初始化符号

x=Symbol('x')
a,b,c=symbols('a b c')

输出

print(u) # 以命令行格式输出,如a/b
print(latex(u)) # 输出latex \frac{a}{b}
u.simplify()#会自动显示为公式格式

函数

Sympy常用函数总结

\(\int_0^1 xdx\)

\(\frac{d}{dx}(x^3+x^2+1)\)

\((x^2+x^3)(x+1) = x^{2} (x + 1)^{2}\)

\(ax^2+x=1\)

\([ x = \frac{- \sqrt{4 a + 1} - 1}{2 a}, \ x = \frac{\sqrt{4 a + 1} - 1}{2 a}, \ a = \frac{1 - x}{x^{2}}]\)

Comments