Find the general solution of the equation y′−y= y2ex.

2 Ansichten (letzte 30 Tage)
SATYANARAYANA R
SATYANARAYANA R am 30 Jul. 2020
Kommentiert: madhan ravi am 30 Jul. 2020
Find the general solution of the equation y′−y= y2ex.
  1 Kommentar
John D'Errico
John D'Errico am 30 Jul. 2020
PLEASE STOP POSTING YOUR HOMEWORK ASSIGNMENTS. Worse, this is now the second time you asked this question.

Melden Sie sich an, um zu kommentieren.

Antworten (1)

Sriram Tadavarty
Sriram Tadavarty am 30 Jul. 2020
Hi Satyanarayana,
Differential equations can be solved with dsolve function.
Here is the code, that you might be looking for:
syms y(x) a
eqn = diff(y,x)-y == y^2*exp(x);
ySol(x) = dsolve(eqn)
Hope this helps.
Regards,
Sriram

Produkte

Community Treasure Hunt

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

Start Hunting!

Translated by