1.199 problem 200

Internal problem ID [8536]

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

CAS Maple gives this as type [_linear]

\[ \boxed {\left (\sin \left (x \right )^{2} a +b \right ) y^{\prime }+a y \sin \left (2 x \right )=-A x \left (\sin \left (x \right )^{2} a +c \right )} \]

Solution by Maple

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

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

\[ y \left (x \right ) = \frac {-2 A x a \sin \left (2 x \right )+2 A a \,x^{2}+4 A c \,x^{2}-A a \cos \left (2 x \right )-8 c_{1}}{4 a \cos \left (2 x \right )-4 a -8 b} \]

Solution by Mathematica

Time used: 0.383 (sec). Leaf size: 59

DSolve[(a*Sin[x]^2+b)*y'[x] + a*y[x]*Sin[2*x] + A*x*(a*Sin[x]^2+c)==0,y[x],x,IncludeSingularSolutions -> True]
 

\[ y(x)\to \frac {2 a A x^2-2 a A x \sin (2 x)-a A \cos (2 x)+4 A c x^2+4 c_1}{4 a \cos (2 x)-4 (a+2 b)} \]