I'm trying to use Mathematica to solve the Euler Column buckling problem (http://www.continuummechanics.org/cm/columnbuckling.html), but its not working out. Mathematica only shows me the zero solution. Is there any way of getting the no zero displacements solutions? For now, what I have is basically this:
equation = EIy''[x] + Py[x] == 0
DSolve[{equation, y[0] == 0, y[L] == 0}, y[x], x]
Out[143]= {{y[x] -> 0}}
Thanks, Luís Valarinho