Internal
problem
ID
[12712]
Book
:
Differential
Gleichungen,
E.
Kamke,
3rd
ed.
Chelsea
Pub.
NY,
1948
Section
:
Chapter
2,
linear
second
order
Problem
number
:
1434
Date
solved
:
Friday, October 03, 2025 at 03:46:56 AM
CAS
classification
:
[[_2nd_order, _with_linear_symmetries]]
ode:=diff(diff(y(x),x),x) = -b/sin(x)*cos(x)/a*diff(y(x),x)-(c*cos(x)^2+d*cos(x)+e)/a/sin(x)^2*y(x); dsolve(ode,y(x), singsol=all);
ode=D[y[x],{x,2}] == -(((e + d*Cos[x] + c*Cos[x]^2)*Csc[x]^2*y[x])/a) - (b*Cot[x]*D[y[x],x])/a; ic={}; DSolve[{ode,ic},y[x],x,IncludeSingularSolutions->True]
Too large to display
from sympy import * x = symbols("x") a = symbols("a") b = symbols("b") c = symbols("c") d = symbols("d") e = symbols("e") y = Function("y") ode = Eq(Derivative(y(x), (x, 2)) + b*cos(x)*Derivative(y(x), x)/(a*sin(x)) + (c*cos(x)**2 + d*cos(x) + e)*y(x)/(a*sin(x)**2),0) ics = {} dsolve(ode,func=y(x),ics=ics)
NotImplementedError : The given ODE Derivative(y(x), x) - (-a*sin(x)**2*Derivative(y(x), (x, 2)) - e*y(x) - (c*cos(x) + d)*y(x)*cos(x))/(b*sin(x)*cos(x)) cannot be solved by the factorable group method