Internal
problem
ID
[1147]
Book
:
Elementary
differential
equations
and
boundary
value
problems,
10th
ed.,
Boyce
and
DiPrima
Section
:
Section
2.2.
Page
48
Problem
number
:
19
Date
solved
:
Tuesday, September 30, 2025 at 04:23:51 AM
CAS
classification
:
[_separable]
With initial conditions
ode:=sin(2*x)+cos(3*y(x))*diff(y(x),x) = 0; ic:=[y(1/2*Pi) = 0]; dsolve([ode,op(ic)],y(x), singsol=all);
ode=Sin[2*x]+Cos[3*y[x]]*D[y[x],x] == 0; ic=y[Pi/2]==0; DSolve[{ode,ic},y[x],x,IncludeSingularSolutions->True]
from sympy import * x = symbols("x") y = Function("y") ode = Eq(sin(2*x) + cos(3*y(x))*Derivative(y(x), x),0) ics = {y(pi/2): 0} dsolve(ode,func=y(x),ics=ics)