MATLAB problem Solve the IVP using the MATLAB function dsolv
MATLAB problem
Solve the IVP using the MATLAB function dsolve.
Find the equilibrium solutions of the differential equation.
Solution
(1)
eqn1=\'t*Dy+3*y=5*t^2\'
eqn1 =
t*Dy+3*y=5*t^2
>> y=dsolve(eqn1,\'y(2)=5\',\'t\')
y =
t^2 + 8/t^3
