What's Happening Between Two Points?The only (uniqueness of solutions to DE's with proper boundary conditions) solution is called the Hermite cubic and is given by
Clear[a,b,c,d,x] hermite[x_,a_,b_,c_,d_]:=a(x-1)^2(2 x + 1) + b x(x-1)^2 + c x^2(3 - 2 x) + d x^2(x-1); hermite[x,a,b,c,d]
If you are unconvinced, perhaps Mathematica can help.
Clear[u,x]
DSolve[{u''''[x]==0,u[0]==a,u'[0]==b,u[1]==c,u'[1]==d},
u[x],x];
u=Evaluate[u[x]/.Flatten[%][[1]]];
u
Collect[u,{a,b,c,d}]This looks like hermite[x] to me.
Simplify[hermite[x,a,b,c,d]-u]