How would I find inflection points? I believe it would the same as if I was finding critical points for f '.
Function is:(7-x)*sin(x^2-7)
So would it be:
a:=fsolve(f2,-2.4..2.4);
b:=fsolve(f2,-2.4..-0.06);
c:=fsolve(f2,-0.06..2.4);
d:=fsolve(f2,1.49..3);
e:=fsolve(f2,-3 ..-1.52);
Plz and thanks!