Difference between revisions of "User:5849206328x"

m
m
Line 2: Line 2:
 
Label f;
 
Label f;
 
f.p=fontsize(6);
 
f.p=fontsize(6);
xaxis(-4,4);
+
xaxis(0,2);
yaxis(0,4);
+
yaxis(0,2);
  
real f(real x) { return 2^x; }
+
real f(real x) { return e^(0.6 * x); }
real g(real x) { return (0.75)^x; }
 
real h(real x) { return (1.1)^x; }
 
  
draw(graph(f,-4,2),blue);
+
draw(graph(f,0,2),blue);
draw(graph(g,-4,4),blue);
 
draw(graph(h,-4,4),blue);
 
 
</asy>
 
</asy>

Revision as of 15:15, 27 April 2015

[asy] Label f; f.p=fontsize(6); xaxis(0,2); yaxis(0,2);  real f(real x) { return e^(0.6 * x); }  draw(graph(f,0,2),blue); [/asy]