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