Internal
problem
ID
[11323]
Book
:
Differential
Gleichungen,
E.
Kamke,
3rd
ed.
Chelsea
Pub.
NY,
1948
Section
:
Chapter
1,
linear
first
order
Problem
number
:
9
Date
solved
:
Tuesday, September 30, 2025 at 07:40:24 PM
CAS
classification
:
[_separable]
ode:=diff(y(x),x)-(sin(ln(x))+cos(ln(x))+a)*y(x) = 0; dsolve(ode,y(x), singsol=all);
ode=D[y[x],x] - (Sin[Log[x]] + Cos[Log[x]] +a)*y[x]==0; ic={}; DSolve[{ode,ic},y[x],x,IncludeSingularSolutions->True]
from sympy import * x = symbols("x") a = symbols("a") y = Function("y") ode = Eq((-a - sin(log(x)) - cos(log(x)))*y(x) + Derivative(y(x), x),0) ics = {} dsolve(ode,func=y(x),ics=ics)