Internal
problem
ID
[16595]
Book
:
A
book
of
problems
in
ordinary
differential
equations.
M.L.
KRASNOV,
A.L.
KISELYOV,
G.I.
MARKARENKO.
MIR,
MOSCOW.
1983
Section
:
Section
1.
Basic
concepts
and
definitions.
Exercises
page
18
Problem
number
:
13
Date
solved
:
Friday, March 14, 2025 at 04:48:04 AM
CAS
classification
:
[`y=_G(x,y')`]
With initial conditions
ode:=diff(y(x),x) = sin(x*y(x)); ic:=y(0) = 0; dsolve([ode,ic],y(x), singsol=all);
ode=D[y[x],x]==Sin[x*y[x]]; ic={y[0]==0}; DSolve[{ode,ic},y[x],x,IncludeSingularSolutions->True]
from sympy import * x = symbols("x") y = Function("y") ode = Eq(-sin(x*y(x)) + Derivative(y(x), x),0) ics = {y(0): 0} dsolve(ode,func=y(x),ics=ics)
NotImplementedError : The given ODE -sin(x*y(x)) + Derivative(y(x), x) cannot be solved by the lie group method