I have simple BVP for which one of boundaries is given as "L". My attempts to solve it gives various errors. One of the last attempts clearly shows that Maple "thinks" that L is rather another variable than unknown constant.
de := diff(y(x), x$4)-lambda*y(x) = 0;
sol:=dsolve({de,y(0)=0,(D@@2)(y)(0)=0, y(L)=0,(D@@2)(y)(L)=0}) assuming lambda<0;
What can I do?