I would like to isolate the coefficients from the solution of this ODE, into a list:
sol = DSolve[{y'''[x] + y''[x] + y[x] == 0, y'''[0] == 1, y''[0] ==1,
y'[0] == 0}, y[x], x]
soln= TrigToExp[sol];
Cases[soln, a_ Exp[b_ t] :> {b, a}]
Since the coefficients are long and messy.
The given attempt with "Cases" did not succeed.
How can I do that?
Thanks