Difference between revisions of "User:5849206328x"

m
m
Line 16: Line 16:
 
draw(graph(f2,-0.05,-0.0000000001)); draw(graph(f2,0.0000000001,0.05));
 
draw(graph(f2,-0.05,-0.0000000001)); draw(graph(f2,0.0000000001,0.05));
 
draw(graph(f3,0.05,0.0999999999));
 
draw(graph(f3,0.05,0.0999999999));
 +
 +
//limits((0,0),(1,2),Crop);
 
</asy>
 
</asy>

Revision as of 12:04, 10 June 2015

[asy] import slopefield;  Label f; f.p=fontsize(6); xaxis(-1,1); yaxis(-0.01,0.01);  real e  = 2.718281828459045235360287471352662497757247093699959574966967627724076630353; real pi = 3.141592653589793238462643383279502884197169399375105820974944592307816406286; real f1(real x) { return 0.5 * e^4 * e^(-0.01/(x + 0.1)^2); } real f2(real x) { return 1 - 0.5 * e^4 * e^(-0.01/x^2); } real f3(real x) { return 0.5 * e^4 * e^(-0.01/(x - 0.1)^2); }  draw(graph(f1,-0.0999999999,-0.05)); draw(graph(f2,-0.05,-0.0000000001)); draw(graph(f2,0.0000000001,0.05)); draw(graph(f3,0.05,0.0999999999));  //limits((0,0),(1,2),Crop); [/asy]