4.7 偏导数
多元函数偏导与全微分
例:设函数由方程确定,求的值
[]:f=Lambda((x, y), exp(2*x-3*y)+2*y)
(3*f(x, y).diff(x)+f(x, y).diff(y)).subs(x, 3).subs(y, 2)
[]:![]()
例:求函数的偏导数, , ,全微分以及
[]:f=Lambda((x, y), cos(sqrt(x\*\*2+y\*\*2)))*
f(x, y).diff(x), f(x, y).diff(y), f(x, y).diff(x, y)*
*[]:*
*[]:float(f(x, y).diff(x).subs(x,1).subs(y, 2)), float(f(x, y).diff(y).subs(x,
1).subs(y, 2))*
[]:
例:设函数可微,且,求在点处的全微分。
[]:f=Function('f')
x, y =symbols('x y')
f(4\*x\*\*2-y\*\*2).diff(x).subs(x, 1).subs(y, 2),
f(4\*x\*\*2-y\*\*2).diff(y).subs(x, 1).subs(y, 2)
[]: 例:设,求与。
[]: 
多元函数极值与最值
例:求函数的极值
[]: ![]()
[]: ![]()
[]: ![]()
Last updated
Was this helpful?