Difference between revisions of "User:5849206328x"

m
m
Line 5: Line 5:
 
real pi = 3.141592653589793238462643383279502884197169399375105820974944592307816406286;
 
real pi = 3.141592653589793238462643383279502884197169399375105820974944592307816406286;
  
xaxis("$x'$",0,5);
+
xaxis("$x$",0,5);
yaxis("$ct'$",0,5);
+
yaxis("$ct$",0,5);
  
 
//real f(real x) { return (x^3 - 9 * x^2 + 29 * x - 15)/6; }
 
//real f(real x) { return (x^3 - 9 * x^2 + 29 * x - 15)/6; }
  
draw((2,0)--(2,4)); draw((0,2)--(2,2),dashed,Arrows);
+
draw((0,0)--(2,4)); draw((2,0)--(4,4)); draw((1.5,3)--(3.5,3),dashed,Arrows); draw((1/3,2/3)--(3,2),dashed,Arrows);
label("$P_1$",(0,0),S); label("$P_2$",(2,0),S); label("$L'$",(1,2),N);
+
draw((5/2,5)--(0,0)--(5,5/2),dashed); label("$x'$",(5,5/2),S); label("$ct'$",(5/2,5),W);
 +
label("$P_1$",(0,0),S); label("$P_2$",(2,0),S); label("$P_2$",(8/3,4/3),SE); label("$L$",(2.5,3),N); label("$L'$",(5/3,4/3),NW);
  
 
//limits((-1,-4),(6,6),Crop);
 
//limits((-1,-4),(6,6),Crop);
 
</asy>
 
</asy>

Revision as of 17:23, 26 July 2015

[asy] size(288);  real e  = 2.718281828459045235360287471352662497757247093699959574966967627724076630353; real pi = 3.141592653589793238462643383279502884197169399375105820974944592307816406286;  xaxis("$x$",0,5); yaxis("$ct$",0,5);  //real f(real x) { return (x^3 - 9 * x^2 + 29 * x - 15)/6; }  draw((0,0)--(2,4)); draw((2,0)--(4,4)); draw((1.5,3)--(3.5,3),dashed,Arrows); draw((1/3,2/3)--(3,2),dashed,Arrows); draw((5/2,5)--(0,0)--(5,5/2),dashed); label("$x'$",(5,5/2),S); label("$ct'$",(5/2,5),W); label("$P_1$",(0,0),S); label("$P_2$",(2,0),S); label("$P_2$",(8/3,4/3),SE); label("$L$",(2.5,3),N); label("$L'$",(5/3,4/3),NW);  //limits((-1,-4),(6,6),Crop); [/asy]