Filter löschen
Filter löschen

Why is my code unable to find a symbolic solution?

22 Ansichten (letzte 30 Tage)
Nina
Nina am 5 Mär. 2023
Kommentiert: Nina am 6 Mär. 2023
Hello,
I am trying to find the solution to
t^2/(1+y^2),
and tried the following code, can someone help me fix this?
syms y(t)
ode = diff(y,t) == t^2/(1+y^2);
ySol(t) = dsolve(ode)
Warning: Unable to find symbolic solution.
ySol(t) = [ empty sym ]

Akzeptierte Antwort

Dyuman Joshi
Dyuman Joshi am 5 Mär. 2023
Bearbeitet: Dyuman Joshi am 5 Mär. 2023
dsolve() by default tries to find find an explicit solution analytically i.e. y in terms of t.
In this case, it is unable to find that form and thus returns the warning and an empty symbolic array.
However, you can get the implicit form of the solution -
syms y(t)
ode = diff(y,t) == t^2/(1+y^2);
ySol = dsolve(ode,'Implicit', true)
ySol = 

Weitere Antworten (0)

Kategorien

Mehr zu Symbolic Math Toolbox finden Sie in Help Center und File Exchange

Community Treasure Hunt

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

Start Hunting!

Translated by