f2c04ccdad 2021-03-03 1: %%%%%%%%%%%%%%%%%%%%%
f2c04ccdad 2021-03-03 2: % CALCULUS
f2c04ccdad 2021-03-03 3: %%%%%%%%%%%%%%%%%%%%%
f2c04ccdad 2021-03-03 4:
f2c04ccdad 2021-03-03 5: % Specify blue for echoed input
f2c04ccdad 2021-03-03 6: color("Blue");
f2c04ccdad 2021-03-03 7:
f2c04ccdad 2021-03-03 8: % Turn on fancy output
f2c04ccdad 2021-03-03 9: fancy_output;
f2c04ccdad 2021-03-03 10:
f2c04ccdad 2021-03-03 11: % Turn input echo on
f2c04ccdad 2021-03-03 12: on echo;
f2c04ccdad 2021-03-03 13:
f2c04ccdad 2021-03-03 14: % Differentiation
f2c04ccdad 2021-03-03 15: % df/dx
f2c04ccdad 2021-03-03 16: df(x^x,x);
f2c04ccdad 2021-03-03 17:
f2c04ccdad 2021-03-03 18: % Multivariate Differentiation
f2c04ccdad 2021-03-03 19: % df/((dx)(dy^2)(dz))
f2c04ccdad 2021-03-03 20: df(x*exp(i*y)*log(z), x, 1, y, 2, z, 1);
f2c04ccdad 2021-03-03 21:
f2c04ccdad 2021-03-03 22: % Integration
f2c04ccdad 2021-03-03 23: % indefinite integral with respect to x
f2c04ccdad 2021-03-03 24: int(x^2 + x*sin(x), x);
f2c04ccdad 2021-03-03 25:
f2c04ccdad 2021-03-03 26: % SI(x)
f2c04ccdad 2021-03-03 27: int(sin(x)/x,x);
f2c04ccdad 2021-03-03 28:
f2c04ccdad 2021-03-03 29: % Integral in interval [-oo, oo]
f2c04ccdad 2021-03-03 30: int(exp(-x^2), x,-infinity,infinity);
f2c04ccdad 2021-03-03 31:
f2c04ccdad 2021-03-03 32: % Integral with logarithms
f2c04ccdad 2021-03-03 33: int(log(log(x)),x);
f2c04ccdad 2021-03-03 34:
f2c04ccdad 2021-03-03 35: % Turn off echo
f2c04ccdad 2021-03-03 36: off echo;