Artifact f5853dc345965ef0c749f6f149967f92520ba03fc905f518eb2b7d67bba81dcf:


% function analysis

f:=3*x^3-7*x^2;
fp:=df (f, x);
fpp:=df (fp, x);

% zeroes
solve (f, x);
% extremes
solve (fp, x);
% reversal points
solve (fpp, x);

% integration of 2nd derivative
f1:=int (fpp, x);
% integration of 1st derivative
f0:=int (f1, x);
f0:=int (fp, x);

end;


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