3.19 problem 20

Internal problem ID [45]

Book: Differential equations and linear algebra, 3rd ed., Edwards and Penney
Section: Section 1.4. Separable equations. Page 43
Problem number: 20.
ODE order: 1.
ODE degree: 1.

CAS Maple gives this as type [_separable]

\[ \boxed {y^{\prime }-3 \left (1+y^{2}\right ) x^{2}=0} \] With initial conditions \begin {align*} [y \left (0\right ) = 1] \end {align*}

Solution by Maple

Time used: 0.016 (sec). Leaf size: 12

dsolve([diff(y(x),x) = 3*x^2*(1+y(x)^2),y(0) = 1],y(x), singsol=all)
 

\[ y \left (x \right ) = \tan \left (x^{3}+\frac {\pi }{4}\right ) \]

Solution by Mathematica

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

DSolve[{y'[x]== 3*x^2*(1+y[x]^2),y[0]==1},y[x],x,IncludeSingularSolutions -> True]
 

\[ y(x)\to \tan \left (x^3+\frac {\pi }{4}\right ) \]