I want to solve the following differential equation with mathematica:
α β * w''''''[ξ] +
( 1 + α - p ) * w''''[ξ] + p/β * w''[ξ] = 0
The answer seems at first appearance really complicated.
w[ξ] ->
2 α β (-((
E^((Sqrt[-((-1 + p - α + Sqrt[
p^2 + 2 p (-1 + α) + (1 + α)^2])/(α \
β))] ξ)/Sqrt[2]) C[1])/(-1 + p - α + Sqrt[
p^2 + 2 p (-1 + α) + (1 + α)^2])) - (
E^(-((Sqrt[-((-1 + p - α + Sqrt[
p^2 + 2 p (-1 + α) + (1 + α)^2])/(α \
β))] ξ)/Sqrt[2])) C[2])/(-1 + p - α + Sqrt[
p^2 + 2 p (-1 + α) + (1 + α)^2]) + (
E^((Sqrt[(
1 - p + α + Sqrt[
p^2 + 2 p (-1 + α) + (1 + α)^2])/(α \
β)] ξ)/Sqrt[2]) C[3])/(
1 - p + α + Sqrt[
p^2 + 2 p (-1 + α) + (1 + α)^2]) + (
E^(-((Sqrt[(
1 - p + α + Sqrt[
p^2 + 2 p (-1 + α) + (1 + α)^2])/(α \
β)] ξ)/Sqrt[2])) C[4])/(
1 - p + α + Sqrt[
p^2 + 2 p (-1 + α) + (1 + α)^2])) +
C[5] + ξ C[6]
So now I want to simplify the result above. I am sure that the result can be simplified with some own defined expressions like:
a1 = Sqrt[p^2 + 2 p (-1 + α) + (1 + α)^2]
I have encountered similar differential equations with confusing solutions. I would really appreciate if someone could help me to solve this problem.

==rather than=) is actually a 4th order linear differential equation inv = w''. So you may want to try first simplifying the solutionv[\[Xi]]of that 4th order equation before proceeding to integrate twice to come down to the originalw. – murray Feb 03 '15 at 15:06