1.26 problem 26

Internal problem ID [8363]

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

CAS Maple gives this as type [_quadrature]

\[ \boxed {y^{\prime }-\left (A y-a \right ) \left (B y-b \right )=0} \]

Solution by Maple

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

dsolve(diff(y(x),x) - (A*y(x) - a)*(B*y(x) - b)=0,y(x), singsol=all)
 

\[ y \left (x \right ) = \frac {{\mathrm e}^{\left (x +c_{1} \right ) \left (A b -B a \right )} a -b}{A \,{\mathrm e}^{\left (x +c_{1} \right ) \left (A b -B a \right )}-B} \]

Solution by Mathematica

Time used: 2.605 (sec). Leaf size: 74

DSolve[y'[x] - (A*y[x] - a)*(B*y[x] - b)==0,y[x],x,IncludeSingularSolutions -> True]
                                                                                    
                                                                                    
 

\begin{align*} y(x)\to \frac {a e^{A b (x+c_1)}-b e^{a B (x+c_1)}}{A e^{A b (x+c_1)}-B e^{a B (x+c_1)}} \\ y(x)\to \frac {a}{A} \\ y(x)\to \frac {b}{B} \\ \end{align*}