一、题目
若函数
难度评级:
二、解析 
方法一:逻辑分析法
为了搞明白这道题目,我们首先应该清楚,对于二元函数
例如,对于二元函数
图 01 Gnuplot 代码 | 点击可以展开
set term wxt size 800,600 # 设置绘图窗口尺寸 set xlabel "{/:Bold=15 x}" textcolor rgb "orange" # 设置x轴标签 set ylabel "{/:Bold=15 y}" textcolor rgb "orange" # 设置y轴标签 set zlabel "{/:Bold=15 z}" textcolor rgb "orange" # 设置z轴标签 set view 60, 30 # 设置视角 set hidden3d # 启用3D隐藏线算法 set style line 1 lc rgb "green" lw 2 # 设置函数图象线条样式 set border lc rgb "orange" lw 2 # 设置边框样式 set tics textcolor rgb "orange" # 设置刻度线标签颜色 set key off # 关闭图例 set style fill transparent solid 0.5 # 设置背景透明度 set zeroaxis lt -1 lc rgb "orange" # 设置零点辅助线样式 # 定义函数 f(x, y) = x**2 + y**2 # 设置x轴和y轴范围 set xrange[-5:5] set yrange[-5:5] # 绘制图形 splot f(x, y) with lines ls 1
进而,
图 02 Gnuplot 代码 | 点击可以展开
set term wxt size 800,600 # 设置绘图窗口尺寸 set xlabel "{/:Bold=15 x}" textcolor rgb "orange" # 设置x轴标签 set ylabel "{/:Bold=15 z}" textcolor rgb "orange" # 设置y轴标签 set view 0, 0 # 设置视角 set style line 1 lc rgb "green" lw 2 # 设置函数图象线条样式 set border lc rgb "orange" lw 2 # 设置边框样式 set tics textcolor rgb "orange" # 设置刻度线标签颜色 set key off # 关闭图例 set style fill transparent solid 0.5 # 设置背景透明度 # 定义函数 f(x) = x**2 # 绘制图形 set xrange[-5:5] set yrange[0:25] plot f(x) with lines ls 1
综上,我们知道,
函数
同理,
函数
但是,虽然由点
反过来说,由函数
方法二:反例法
反例一
设:
则:
但是,由于函数
函数
图 03 Gnuplot 代码(角度 1)| 点击可以展开
set terminal wxt enhanced font "arial,10" fontscale 1.0 size 600, 600 set border linewidth 1.5 linecolor rgb '#FFA500' # 橙色 set tics textcolor rgb '#FFA500' # 橙色 set style line 1 lc rgb '#008000' lt 1 lw 2 # 绿色 # 定义分段函数 z(x,y) = x*y != 0 ? x*y : 1 # 设置绘图范围和密度 set xrange [-30:30] set yrange [-30:30] set zrange [-30:30] set isosamples 80, 80 # 设置绘图密度 # 设置视角 set view 60, 50, 1.0, 1.0 # 绘制 z(x, y) splot z(x, y) with lines linestyle 1 # 添加过 x=0 点且平行于 y 轴的坐标轴 set arrow from 0, graph 0, first 0 to 0, graph 1, first 0 nohead linecolor rgb '#FFA500' pause -1
函数
图 04 Gnuplot 代码(角度 2)| 点击可以展开
set terminal wxt enhanced font "arial,10" fontscale 1.0 size 600, 600 set border linewidth 1.5 linecolor rgb '#FFA500' # 橙色 set tics textcolor rgb '#FFA500' # 橙色 set style line 1 lc rgb '#008000' lt 1 lw 2 # 绿色 # 定义分段函数 z(x,y) = x*y != 0 ? x*y : 1 # 设置绘图范围和密度 set xrange [-30:30] set yrange [-30:30] set zrange [-30:30] set isosamples 80, 80 # 设置绘图密度 # 设置视角 set view 60, 10, 1.0, 1.0 # 绘制 z(x, y) splot z(x, y) with lines linestyle 1 # 添加过 x=0 点且平行于 y 轴的坐标轴 set arrow from 0, graph 0, first 0 to 0, graph 1, first 0 nohead linecolor rgb '#FFA500' pause -1
反例二
设:
则:
由对称性可知:
则,根据可微的判定公式:
因此可知,函数
但是,当
进而可知,偏导数
高等数学
涵盖高等数学基础概念、解题技巧等内容,图文并茂,计算过程清晰严谨。
线性代数
以独特的视角解析线性代数,让繁复的知识变得直观明了。
特别专题
通过专题的形式对数学知识结构做必要的补充,使所学知识更加连贯坚实。