Solve ODE without initial condition

5 ビュー (過去 30 日間)
sudhir
sudhir 2023 年 11 月 20 日
コメント済み: Sam Chak 2023 年 11 月 20 日
syms y(x) x
E=diff(y,x)+(y*cos(x)+sin(y)+y)/(sin(x)+x*cos(y)+x)==0
y=(dsolve(E))
I am getting error
E(x) =
Warning: Unable to find symbolic solution.
y =[ empty sym ]

回答 (2 件)

Torsten
Torsten 2023 年 11 月 20 日
Your ODE is nonlinear. The symbolic toolbox is not able to find an analytical solution for it. You will only be able to solve it numerically with a given initial condition.
  1 件のコメント
sudhir
sudhir 2023 年 11 月 20 日
THANK YOU

サインインしてコメントする。


Sam Chak
Sam Chak 2023 年 11 月 20 日
I also couldn't obtain the analytical solution using dsolve(). However, when I tested this problem on Wolfram Alpha, it returned an open-form solution that manifests in the form of a recurrence relation.
  2 件のコメント
Torsten
Torsten 2023 年 11 月 20 日
Impressive that Wolfram Alpha was able to deduce this.
Maybe better: "implicit" instead of "recurrence" for the solution given.
Sam Chak
Sam Chak 2023 年 11 月 20 日
Yes, implicit solution.

サインインしてコメントする。

カテゴリ

Help Center および File ExchangeSymbolic Math Toolbox についてさらに検索

Community Treasure Hunt

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

Start Hunting!

Translated by