I am trying to solve a 4th order differential equation with boundary conditions but function dsolve
is not giving solution. It is running for more than an hour. The code I have made is
syms omega delta x f(x)
df(x) = diff(f);
dff(x) = diff(df);
dfff(x) = diff(dff);
S = dsolve(diff(f,4) + 2*delta*diff(f,3) + delta^2*diff(f,2)...
- omega^2*f == 0, f(0) == 0, df(0) == 0, dff(1) == 0, dfff(1) == 0);
Is their any alternate method to find its non-trivial solution?