I'm looking at functions of the form
$w''''(t)+aw''(t)+f(w(t)) = 0$
In maple I used the following which will return numeric solutions to w,w',w'',w''':
sol := dsolve({de, ics}, type = numeric, output = listprocedure}
What I would like to be able to do is plot $w^{(4)}$ or higher order derivatives. I tried adding numeric solutions I recovered for w'' and w to return $w^{(4)}$, but I'm not quite sure how to add numeric solutions. Thanks for your help in advanced.
You could augment the system of DEs (including adding more ICs), so that new dummy names got associated with the higher derivatives.
That way, dsolve/numeric itself does most of the heavy numerical lifting. Probably better than trying numerical derivatives from the smaller, original result (using
fdifforevalf@D) since this way dsolve numeric can tie in any requested accuracy to however hard it might have to work to get those derivatives.For example,