一个多元函数微分学问题——特殊点的极限

试求解:

lim ⁡ x → 0 y → 0 x 2 y x 4 + y 2 \lim_{\frac{x\to 0}{y\to 0}}\frac{x^2y}{x^4+y^2} y0x0limx4+y2x2y

参考答案给出解法为取特殊值求解,令 y = x 2 y=x^2 y=x2

原式变为:

lim ⁡ x → 0 y → 0 x 2 x 2 x 4 + x 4 = 1 2 \lim_{\frac{x\to 0}{y\to 0}}\frac{x^2x^2}{x^4+x^4}=\frac{1}{2} y0x0limx4+x4x2x2=21或不存在.

MATLAB绘图仿真:

clc,clear,close all
x = [-0.1:0.01:10];
y = [-0.1:0.01:10];
z = ((x.^2).*y)./(x.^4+y.^2);
plot3(x,y,z,'linewidth',2)
hold on
x=[0:0.01:1];y=[0:0.01:1];
z = ((x.^2).*y)./(x.^4+y.^2);
stem3(x,y,z,'m','linewidth',2)

可见在(x,y)取(1,1)附近峰值确实为 1 2 \frac{1}{2} 21,但实际仿真中当 x → 0 , y → 0 x\to 0,y\to 0 x0,y0时,极限趋近于0,这时本产生疑惑难道极限不该趋近于0吗?
在这里插入图片描述

但当尝试绘制负半轴的区域时发现,函数值开始小于0!
在这里插入图片描述
这时才幡然醒悟:极限是一个过程,左右极限不相等即极限不存在(定义法求极限)!

猜你喜欢

转载自blog.csdn.net/wayne6515/article/details/114241897