Internal
problem
ID
[7475]
Book
:
Fundamentals
of
Differential
Equations.
By
Nagle,
Saff
and
Snider.
9th
edition.
Boston.
Pearson
2018.
Section
:
Chapter
2,
First
order
differential
equations.
Section
2.4,
Exact
equations.
Exercises.
page
64
Problem
number
:
20
Date
solved
:
Tuesday, September 30, 2025 at 04:37:25 PM
CAS
classification
:
[_exact]
ode:=2/(-x^2+1)^(1/2)+y(x)*cos(x*y(x))+(x*cos(x*y(x))-1/y(x)^(1/3))*diff(y(x),x) = 0; dsolve(ode,y(x), singsol=all);
ode=( 2/Sqrt[1-x^2] + y[x]*Cos[x*y[x]] )+( x*Cos[x*y[x]]- 1/y[x]^(1/3) )*D[y[x],x]==0; ic={}; DSolve[{ode,ic},y[x],x,IncludeSingularSolutions->True]
Not solved
from sympy import * x = symbols("x") y = Function("y") ode = Eq((x*cos(x*y(x)) - 1/y(x)**(1/3))*Derivative(y(x), x) + y(x)*cos(x*y(x)) + 2/sqrt(1 - x**2),0) ics = {} dsolve(ode,func=y(x),ics=ics)
Timed Out