58.6.11 problem 11

Internal problem ID [14642]
Book : Differential Equations by Shepley L. Ross. Third edition. John Willey. New Delhi. 2004.
Section : Chapter 2, Miscellaneous Review. Exercises page 60
Problem number : 11
Date solved : Thursday, October 02, 2025 at 09:45:24 AM
CAS classification : [[_homogeneous, `class A`], _rational, [_Abel, `2nd type`, `class A`]]

\begin{align*} y^{\prime }&=\frac {2 x -7 y}{3 y-8 x} \end{align*}
Maple. Time used: 0.068 (sec). Leaf size: 47
ode:=diff(y(x),x) = (2*x-7*y(x))/(3*y(x)-8*x); 
dsolve(ode,y(x), singsol=all);
 
\begin{align*} y &= \frac {-12 c_1 x -\sqrt {-60 c_1 x +1}+1}{18 c_1} \\ y &= \frac {-12 c_1 x +1+\sqrt {-60 c_1 x +1}}{18 c_1} \\ \end{align*}
Mathematica. Time used: 0.599 (sec). Leaf size: 80
ode=D[y[x],x]==(2*x-7*y[x])/(3*y[x]-8*x); 
ic={}; 
DSolve[{ode,ic},y[x],x,IncludeSingularSolutions->True]
 
\begin{align*} y(x)&\to \frac {1}{18} \left (-12 x-e^{\frac {c_1}{2}} \sqrt {60 x+e^{c_1}}-e^{c_1}\right )\\ y(x)&\to \frac {1}{18} \left (-12 x+e^{\frac {c_1}{2}} \sqrt {60 x+e^{c_1}}-e^{c_1}\right ) \end{align*}
Sympy. Time used: 1.405 (sec). Leaf size: 53
from sympy import * 
x = symbols("x") 
y = Function("y") 
ode = Eq(Derivative(y(x), x) - (2*x - 7*y(x))/(-8*x + 3*y(x)),0) 
ics = {} 
dsolve(ode,func=y(x),ics=ics)
 
\[ \left [ y{\left (x \right )} = - \frac {2 C_{1}}{9} - \frac {2 x}{3} - \frac {2 \sqrt {C_{1} \left (C_{1} + 15 x\right )}}{9}, \ y{\left (x \right )} = - \frac {2 C_{1}}{9} - \frac {2 x}{3} + \frac {2 \sqrt {C_{1} \left (C_{1} + 15 x\right )}}{9}\right ] \]