Origin for each line in src/calculus.txt from check-in c1ddb4c814:

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

olli-scripts
English Homepage | German Homepage | DL2MIE | GitHub Mirror | SourceHut Mirror | NotABug Mirror | Chisel Mirror | Chisel RSS ]