I am looking for a way to solve this equation symbolically with Mathematica.
F[u_] := u^2/2 - u^3/3;
Solve[(Integrate[(1/Sqrt[F[rhou] - F[s]]), {s, qu1, ut}])^2 ==
2ulambdat^2, ut]
I am looking for a way to solve this equation symbolically with Mathematica.
F[u_] := u^2/2 - u^3/3;
Solve[(Integrate[(1/Sqrt[F[rhou] - F[s]]), {s, qu1, ut}])^2 ==
2ulambdat^2, ut]
rhou, qu1, ut, ulambda, t^2? Are they constants, real, positive? Why are you usingulambda t^2instead of one symbol? – Artes Jan 14 '21 at 00:14Integrate[(1/Sqrt[F[2/3] - F[s]]), {s, 0, t}, Assumptions -> t > 0]this evaluates to elliptic functions. How to solve such a problem see e.g. Solving equations involving integrals. E.g.Integrate[(1/Sqrt[F[1] - F[s]]), {s, 0, t}, Assumptions -> 0 < t < 1]yields an expression involving logarithm. You should not work with so many symbolic constants without restricting them appropriately. – Artes Jan 14 '21 at 01:141/Sqrt[F[rhou] - F[s]]is defined and continuous almost everywhere. Examine the post I've linked formerly and e,g, this post. I would have provided an answer if you had asked a reliable question. Nevertheless now I'm just discouraged with this question which deserves a downvoting. – Artes Jan 14 '21 at 02:44