1.3 problem HW 1 problem 7(a)

Internal problem ID [6278]

Book: Selected problems from homeworks from different courses
Section: Math 2520, summer 2021. Differential Equations and Linear Algebra. Normandale college, Bloomington, Minnesota
Problem number: HW 1 problem 7(a).
ODE order: 1.
ODE degree: 1.

CAS Maple gives this as type [_linear]

Solve \begin {gather*} \boxed {y^{\prime }+\frac {2 y}{x}-5 x^{2}=0} \end {gather*}

Solution by Maple

Time used: 0.0 (sec). Leaf size: 13

dsolve(diff(y(x),x)+2/x*y(x)=5*x^2,y(x), singsol=all)
 

\[ y \relax (x ) = \frac {x^{5}+c_{1}}{x^{2}} \]

Solution by Mathematica

Time used: 0.043 (sec). Leaf size: 15

DSolve[y'[x]+2/x*y[x]==5*x^2,y[x],x,IncludeSingularSolutions -> True]
 

\begin{align*} y(x)\to \frac {x^5+c_1}{x^2} \\ \end{align*}