Internal
problem
ID
[1691]
Book
:
Elementary
differential
equations
with
boundary
value
problems.
William
F.
Trench.
Brooks/Cole
2001
Section
:
Chapter
2,
First
order
equations.
Exact
equations.
Section
2.5
Page
79
Problem
number
:
12
Date
solved
:
Saturday, March 29, 2025 at 11:31:53 PM
CAS
classification
:
[`y=_G(x,y')`]
ode:=y(x)*sin(x*y(x))+x*y(x)^2*cos(x*y(x))+(x*sin(x*y(x))+x*y(x)^2*cos(x*y(x)))*diff(y(x),x) = 0; dsolve(ode,y(x), singsol=all);
ode=(y[x]*Sin[x*y[x]]+x*y[x]^2*Cos[x*y[x]])+(x*Sin[x*y[x]]+x*y[x]^2*Cos[x*y[x]])*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*y(x)**2*cos(x*y(x)) + (x*y(x)**2*cos(x*y(x)) + x*sin(x*y(x)))*Derivative(y(x), x) + y(x)*sin(x*y(x)),0) ics = {} dsolve(ode,func=y(x),ics=ics)
Timed Out