Internal
problem
ID
[15039]
Book
:
Ordinary
Differential
Equations.
An
introduction
to
the
fundamentals.
Kenneth
B.
Howell.
second
edition.
CRC
Press.
FL,
USA.
2020
Section
:
Chapter
6.
Simplifying
through
simplifiction.
Additional
exercises.
page
114
Problem
number
:
6.3
(c)
Date
solved
:
Thursday, March 13, 2025 at 05:31:03 AM
CAS
classification
:
[[_homogeneous, `class A`], _dAlembert]
ode:=cos(y(x)/x)*(diff(y(x),x)-y(x)/x) = 1+sin(y(x)/x); dsolve(ode,y(x), singsol=all);
ode=Cos[y[x]/x]*(D[y[x],x]-y[x]/x)==1+Sin[y[x]/x]; ic={}; DSolve[{ode,ic},y[x],x,IncludeSingularSolutions->True]
from sympy import * x = symbols("x") y = Function("y") ode = Eq((Derivative(y(x), x) - y(x)/x)*cos(y(x)/x) - sin(y(x)/x) - 1,0) ics = {} dsolve(ode,func=y(x),ics=ics)