Internal
problem
ID
[5012]
Book
:
Ordinary
differential
equations
and
their
solutions.
By
George
Moseley
Murphy.
1960
Section
:
Various
15
Problem
number
:
414
Date
solved
:
Sunday, March 30, 2025 at 04:30:55 AM
CAS
classification
:
[_linear]
ode:=(a0+a1*sin(x)^2)*diff(y(x),x)+a2*x*(a3+a1*sin(x)^2)+a1*y(x)*sin(2*x) = 0; dsolve(ode,y(x), singsol=all);
ode=(a0+a1 Sin[x]^2)D[y[x],x]+a2 x(a3+a1 Sin[x]^2)+a1 y[x] Sin[2 x]==0; ic={}; DSolve[{ode,ic},y[x],x,IncludeSingularSolutions->True]
from sympy import * x = symbols("x") a0 = symbols("a0") a1 = symbols("a1") a2 = symbols("a2") a3 = symbols("a3") y = Function("y") ode = Eq(a1*y(x)*sin(2*x) + a2*x*(a1*sin(x)**2 + a3) + (a0 + a1*sin(x)**2)*Derivative(y(x), x),0) ics = {} dsolve(ode,func=y(x),ics=ics)
Timed Out