Internal
problem
ID
[4711]
Book
:
Ordinary
differential
equations
and
their
solutions.
By
George
Moseley
Murphy.
1960
Section
:
Various
4
Problem
number
:
109
Date
solved
:
Sunday, March 30, 2025 at 03:46:50 AM
CAS
classification
:
[[_homogeneous, `class C`], _dAlembert]
ode:=diff(y(x),x) = a+b*cos(A*x+B*y(x)); dsolve(ode,y(x), singsol=all);
ode=D[y[x],x]==a+b Cos[A x+ B y[x]]; ic={}; DSolve[{ode,ic},y[x],x,IncludeSingularSolutions->True]
from sympy import * x = symbols("x") A = symbols("A") B = symbols("B") a = symbols("a") b = symbols("b") y = Function("y") ode = Eq(-a - b*cos(A*x + B*y(x)) + Derivative(y(x), x),0) ics = {} dsolve(ode,func=y(x),ics=ics)
NotImplementedError : no valid subset found