Difference between revisions of "User:5849206328x"

m
m
Line 12: Line 12:
 
draw(graph(g,0,2));
 
draw(graph(g,0,2));
  
label("$\mathtt{A}$",(0.7,0.7),N);
+
label("$\mathtt{B}$",(0.7,0.7),N);
label("$\mathtt{B}$",(0.7,0.25),N);
+
label("$\mathtt{A}$",(0.7,0.25),N);
 
</asy>
 
</asy>

Revision as of 16:42, 27 April 2015

[asy] Label f; f.p=fontsize(6); xaxis(0,2); yaxis(0,2);  real e = 2.718281828459045235360287471352662497757247093699959574966967627724076630353; real f(real x) { return 1.8 * e^((-3) * x); } real g(real x) { return (-1.8) * e^((-3) * x) + 1.8 * e^((-1) * x); }  draw(graph(f,0,2)); draw(graph(g,0,2));  label("$\mathtt{B}$",(0.7,0.7),N); label("$\mathtt{A}$",(0.7,0.25),N); [/asy]