1.23 problem 23

Internal problem ID [8360]

Book: Differential Gleichungen, E. Kamke, 3rd ed. Chelsea Pub. NY, 1948
Section: Chapter 1, linear first order
Problem number: 23.
ODE order: 1.
ODE degree: 1.

CAS Maple gives this as type [_quadrature]

\[ \boxed {y^{\prime }+a y^{2}=b} \]

Solution by Maple

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

dsolve(diff(y(x),x) + a*y(x)^2 - b=0,y(x), singsol=all)
 

\[ y \left (x \right ) = \frac {\tanh \left (\sqrt {a b}\, \left (x +c_{1} \right )\right ) \sqrt {a b}}{a} \]

Solution by Mathematica

Time used: 5.188 (sec). Leaf size: 63

DSolve[y'[x] + a*y[x]^2 - b==0,y[x],x,IncludeSingularSolutions -> True]
                                                                                    
                                                                                    
 

\begin{align*} y(x)\to \frac {\sqrt {b} \tanh \left (\sqrt {a} \sqrt {b} (x+c_1)\right )}{\sqrt {a}} \\ y(x)\to -\frac {\sqrt {b}}{\sqrt {a}} \\ y(x)\to \frac {\sqrt {b}}{\sqrt {a}} \\ \end{align*}