|
\[
1(x^{4}+y^{4})-2(x^{2}+y^{2})+3x^{2}y^{2}+k=0
\]
當$k\approx0.8$時,曲線能恰好分成2條曲線
$k$的精确值是?
k=0.8
wolframalpha.com/input?i=contourplot+x%5E4+%2B+3+x%5E2+y%5E2+%2B ... 2B+y%5E2%29%2B.8%3D0
unitsize(4cm);
import contour; // load the contour module
real f(real x, real y) { // define the function
return (x^4+y^4)-2(x^2+y^2)+3*x^2*y^2;
}
real[] levels = {-.8}; // define the contour levels
draw(contour(f,(-2,-2),(2,2),levels,200)); // generate the contour guides
k=0.7999
wolframalpha.com/input?i=contourplot+x%5E4+%2B+3+x%5E2+y%5E2+%2B ... y%5E2%29%2B.7999%3D0
unitsize(4cm);
import contour; // load the contour module
real f(real x, real y) { // define the function
return (x^4+y^4)-2(x^2+y^2)+3*x^2*y^2;
}
real[] levels = {-.7999}; // define the contour levels
draw(contour(f,(-2,-2),(2,2),levels,200)); // generate the contour guides |
|