Python 中的多元微分
Multivariate differentiation in Python
我有一个功能
我想在Python中简化和区分,定义为**
def u(x, t):
return math.erf((x + 1) / (2 * (k * t) ** (1 / 2)))
** 如有错误请指正
我有如下所有必要的导入:
import math
import scipy
import matplotlib
from sympy import *
以及定义符号
x, k, t = symbols('x k t')
这工作得很好:
def f(x):
return x ** 4
diff(f(x))
哪个returns正确答案,
4x^3
然而,这
diff(u(x, t))
或这个
diff(u(x, t), t)
returns报错如下
TypeError Traceback (most recent call last)
in ()
----> 1 diff(u(x, t))
in u(x, t)
1 def u(x, t):
----> 2 return math.erf((x + 1) / (2 * (k * t) ** (1 / 2)))
C:\Anaconda\lib\site-packages\sympy\core\expr.py in float(self)
223 if result.is_number and result.as_real_imag()1:
224 raise TypeError("can't convert complex to float")
--> 225 raise TypeError("can't convert expression to float")
226
227 def complex(self):
TypeError: can't convert expression to float
在 Matlab 中我可以轻松做到:
syms x;
syms k;
syms t;
u = erf((x + 1)/(2 * sqrt(k * t)));
LHS = simplify(diff(u, t))
RHS = k * simplify(diff(u, x, 2))
我的问题是,如何区分 and/or 化简 Python 中多个变量的数学函数?
像这样使用sympy
:
>>> from sympy import symbols, diff
>>> x, y = symbols('x y', real=True)
>>> diff( x**2 + y**3, y)
3*y**2
>>> diff( x**2 + y**3, y).subs({x:3, y:1})
3
您必须指定要区分的变量。
您需要使用 sympy.erf
,而不是 math.erf
:
>>> import sympy
>>> x, k, t = sympy.symbols('x k t')
>>> def u(x, t):
... return sympy.erf((x + 1) / (2 * (k * t) ** (1 / 2)))
>>> sympy.diff(u(x, t), x, t)
(0.25*(k*t)**(-1.5)*(x + 1)**2 - 0.5*(k*t)**(-0.5))*exp(-(k*t)**(-1.0)*(x + 1)**2/4)/(sqrt(pi)*t)
我有一个功能
def u(x, t):
return math.erf((x + 1) / (2 * (k * t) ** (1 / 2)))
** 如有错误请指正
我有如下所有必要的导入:
import math
import scipy
import matplotlib
from sympy import *
以及定义符号
x, k, t = symbols('x k t')
这工作得很好:
def f(x):
return x ** 4
diff(f(x))
哪个returns正确答案,
4x^3
然而,这
diff(u(x, t))
或这个
diff(u(x, t), t)
returns报错如下
TypeError Traceback (most recent call last) in () ----> 1 diff(u(x, t))
in u(x, t) 1 def u(x, t): ----> 2 return math.erf((x + 1) / (2 * (k * t) ** (1 / 2)))
C:\Anaconda\lib\site-packages\sympy\core\expr.py in float(self) 223 if result.is_number and result.as_real_imag()1: 224 raise TypeError("can't convert complex to float") --> 225 raise TypeError("can't convert expression to float") 226 227 def complex(self):
TypeError: can't convert expression to float
在 Matlab 中我可以轻松做到:
syms x;
syms k;
syms t;
u = erf((x + 1)/(2 * sqrt(k * t)));
LHS = simplify(diff(u, t))
RHS = k * simplify(diff(u, x, 2))
我的问题是,如何区分 and/or 化简 Python 中多个变量的数学函数?
像这样使用sympy
:
>>> from sympy import symbols, diff
>>> x, y = symbols('x y', real=True)
>>> diff( x**2 + y**3, y)
3*y**2
>>> diff( x**2 + y**3, y).subs({x:3, y:1})
3
您必须指定要区分的变量。
您需要使用 sympy.erf
,而不是 math.erf
:
>>> import sympy
>>> x, k, t = sympy.symbols('x k t')
>>> def u(x, t):
... return sympy.erf((x + 1) / (2 * (k * t) ** (1 / 2)))
>>> sympy.diff(u(x, t), x, t)
(0.25*(k*t)**(-1.5)*(x + 1)**2 - 0.5*(k*t)**(-0.5))*exp(-(k*t)**(-1.0)*(x + 1)**2/4)/(sqrt(pi)*t)