Internal
problem
ID
[24058]
Book
:
Elementary
Differential
Equations.
By
Lee
Roy
Wilcox
and
Herbert
J.
Curtis.
1961
first
edition.
International
texbook
company.
Scranton,
Penn.
USA.
CAT
number
61-15976
Section
:
Chapter
2.
Differential
equations
of
first
order.
Miscellaneous
Exercises
at
page
55
Problem
number
:
2
Date
solved
:
Thursday, October 02, 2025 at 09:55:22 PM
CAS
classification
:
[_exact]
With initial conditions
ode:=y(x)*cos(x*y(x))+y(x)-x+(x*cos(x*y(x))+x-y(x))*diff(y(x),x) = 0; ic:=[y(1) = 1]; dsolve([ode,op(ic)],y(x), singsol=all);
ode=(y[x]*Cos[x*y[x]]+y[x]-x )+( x*Cos[x*y[x]]+x-y[x] )*D[y[x],x]==0; ic={y[1]==1}; DSolve[{ode,ic},y[x],x,IncludeSingularSolutions->True]
from sympy import * x = symbols("x") y = Function("y") ode = Eq(-x + (x*cos(x*y(x)) + x - y(x))*Derivative(y(x), x) + y(x)*cos(x*y(x)) + y(x),0) ics = {y(1): 1} dsolve(ode,func=y(x),ics=ics)
Timed Out