Internal
problem
ID
[10211]
Book
:
Differential
Gleichungen,
E.
Kamke,
3rd
ed.
Chelsea
Pub.
NY,
1948
Section
:
Chapter
1,
linear
first
order
Problem
number
:
200
Date
solved
:
Wednesday, March 05, 2025 at 08:43:19 AM
CAS
classification
:
[_linear]
ode:=(a*sin(x)^2+b)*diff(y(x),x)+a*y(x)*sin(2*x)+A*x*(a*sin(x)^2+c) = 0; dsolve(ode,y(x), singsol=all);
ode=(a*Sin[x]^2+b)*D[y[x],x] + a*y[x]*Sin[2*x] + A*x*(a*Sin[x]^2+c)==0; ic={}; DSolve[{ode,ic},y[x],x,IncludeSingularSolutions->True]
from sympy import * x = symbols("x") A = symbols("A") a = symbols("a") b = symbols("b") c = symbols("c") y = Function("y") ode = Eq(A*x*(a*sin(x)**2 + c) + a*y(x)*sin(2*x) + (a*sin(x)**2 + b)*Derivative(y(x), x),0) ics = {} dsolve(ode,func=y(x),ics=ics)
Timed Out