Internal
problem
ID
[13672]
Book
:
AN
INTRODUCTION
TO
ORDINARY
DIFFERENTIAL
EQUATIONS
by
JAMES
C.
ROBINSON.
Cambridge
University
Press
2004
Section
:
Chapter
10,
Two
tricks
for
nonlinear
equations.
Exercises
page
97
Problem
number
:
10.1
(iv)
Date
solved
:
Monday, March 31, 2025 at 08:07:53 AM
CAS
classification
:
[_exact]
ode:=exp(x)*sin(y(x))+y(x)+(exp(x)*cos(y(x))+x+exp(y(x)))*diff(y(x),x) = 0; dsolve(ode,y(x), singsol=all);
ode=Exp[x]*Sin[y[x]]+y[x]+ (Exp[x]*Cos[y[x]]+x+Exp[y[x]])*D[y[x],x]==0; ic={}; DSolve[{ode,ic},y[x],x,IncludeSingularSolutions->True]
from sympy import * x = symbols("x") y = Function("y") ode = Eq((x + exp(x)*cos(y(x)) + exp(y(x)))*Derivative(y(x), x) + y(x) + exp(x)*sin(y(x)),0) ics = {} dsolve(ode,func=y(x),ics=ics)
Timed Out