Internal
problem
ID
[13198]
Book
:
Differential
Equations
by
Shepley
L.
Ross.
Third
edition.
John
Willey.
New
Delhi.
2004.
Section
:
Chapter
1,
section
1.3.
Exercises
page
22
Problem
number
:
6(a)
Date
solved
:
Monday, March 31, 2025 at 07:36:54 AM
CAS
classification
:
[_separable]
With initial conditions
ode:=diff(y(x),x) = x^2*sin(y(x)); ic:=y(1) = -2; dsolve([ode,ic],y(x), singsol=all);
ode=D[y[x],x]==x^2*Sin[y[x]]; ic={y[1]==-2}; DSolve[{ode,ic},y[x],x,IncludeSingularSolutions->True]
from sympy import * x = symbols("x") y = Function("y") ode = Eq(-x**2*sin(y(x)) + Derivative(y(x), x),0) ics = {y(1): -2} dsolve(ode,func=y(x),ics=ics)
Timed Out