Please 🙏 help me to find the exact solution of ODE

4 vues (au cours des 30 derniers jours)
Tarek
Tarek le 27 Juil 2025
Commenté : Sam Chak le 29 Juil 2025

I want to find the exact solution of ODE .The delta1 and delta2 are constants. y^2 y''+y*(y')^2-(y')^2+C1*y^4+C2*y^3=0

  1 commentaire
Sam Chak
Sam Chak le 28 Juil 2025
Hi @Tarek, could you provide some background on the ODE ?
Where does this ODE originate?
Why is it necessary to determine and ?
And, once and are found, what do you expect to happen with the state variable y?

Connectez-vous pour commenter.

Réponse acceptée

Torsten
Torsten le 27 Juil 2025
Modifié(e) : Torsten le 27 Juil 2025
I doubt you can get an analytical expression for y. All you can do is to transform your 2nd order ODE into a system of first-order ODEs and use a numerical solver to get an approximate solution. Depending on your boundary conditions, you have to use ode45 (if all boundary conditions are given in only one point) or bvp4c (if the boundary conditions are given in different points) to get this solution. Of course, C1 and C2 and the boundary conditions have to be specified as numerical values in this case.
  9 commentaires
Tarek
Tarek le 28 Juil 2025

Hi @Sam, thank you for your helping.

Does the obtained y is the exact solution for ode??

Sam Chak
Sam Chak le 29 Juil 2025
Each trajectory in the plot represents the path of a solution to the differential equation, depending on the values of ​ and ​. In my previous comment, I provided the simplest form of the solution, which corresponds to the specific initial condition when both ​ and ​​ are zero. Note that singularities occur when .
title(t, {'Behavior of solutions'}, 'interpreter', 'latex')

Connectez-vous pour commenter.

Plus de réponses (1)

Walter Roberson
Walter Roberson le 27 Juil 2025
syms C1 C2 y(x)
dy = diff(y);
d2y = diff(dy);
eqn = y^2 * d2y + y*dy^2 - dy^2 + C1*y^4 + C2*y^3 == 0
eqn(x) = 
dsolve(eqn)
ans = 
  2 commentaires
Tarek
Tarek le 27 Juil 2025
 Thanks for your help.

what the values of constant c1 and c2 from the last condition?

Torsten
Torsten le 28 Juil 2025
Modifié(e) : Torsten le 28 Juil 2025
C1 and C2 are the values from your own ODE
y^2 y''+y*(y')^2-(y')^2+C1*y^4+C2*y^3=0
and they will of course appear in a solution.
C3 and C4 are constants that arise from integrating your ODE without specifying two boundary conditions.
Example:
y'' = 5
has the general solution
y(x) = 2.5*x^2 + C3*x + C4

Connectez-vous pour commenter.

Tags

Produits

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by