If we consider the BVP $y^{\prime\prime}(t)=\frac{3}{2}y(t)^{2}$ where $0\leq t\leq1$ and $y(0)=4$ and $y(1)=1$. Then its solution is $y(t)=\frac{4}{(1+t)^{2}}$. I have set the BVP above as in mathemtica,
DSolve[{y''[t]==(3/2)(y[t])^2},y[0]==4,y[1]=1},y[x],x,0<= t <= 1]
When I run Mathemtica it says that DSolve::dsvar: $0\leq t\leq 1$ cannot be used as a variable.
sol = DSolve[{y''[t] == (3/2) (y[t])^2}, y[t], t], we have out{{y[t] -> 2^(2/3) WeierstrassP[(t + C[1])/2^(2/3), {0, C[2]}]}}. – Alex Trounev Feb 22 '22 at 04:15DSolveone cannot solve BVP for this typ of ODE, however with a simple reasoning you can find the only one solution to the given problem. Nevertheless you incorrectly put0 <= t <=1, one can evaluate e.g.DSolve[{y''[t] == (3/2) y[t]^2}, y[t], {t, 0, 1}]. – Artes Feb 22 '22 at 11:10