3+7;
sqrt(3);
evalf(sqrt(3));
evalf[2000](sqrt(3));
sin(Pi/2);
5865/8211;
exp(1);
evalf(%);
log(2);
log[10](2);
log(2)
plot(x^2,x=-5..5);
plot(2^days, days=0..5, rabbits=0..30, title="A big mess");
?plot/options
plot({sin(x),2*sin(x),.5*sin(x),-sin(x)}, x=-2*Pi..2*Pi);
plot3d(sin(x)*y,x=-5..5,y=-5..5);
with(plots):
animate(plot, [x^a, x=0..2, y=0..10], a=0..10);
ithprime(1000);
spacecurve([cos(t),sin(t),t],t=-4*Pi..4*Pi, numpoints=200, thickness=3);
expand((x+y)^12);
simplify((sin(x))^2+(cos(x))^2);
factor(x^2-2*x-8);
seq(2^x,x=0..20);