example02.red 158 B

1234567891011121314
  1. u:=(x+y+z)^3;
  2. on factor; u;
  3. df(x^x,x);
  4. int(ws,x);
  5. sin(pi/4);
  6. sin(x)^2+cos(x)^2;
  7. trigsimp ws;
  8. v:=sqrt(pi);
  9. on rounded; v;
  10. precision(24); v;
  11. off rounded;
  12. end;