Internal
problem
ID
[17224]
Book
:
INTRODUCTORY
DIFFERENTIAL
EQUATIONS.
Martha
L.
Abell,
James
P.
Braselton.
Fourth
edition
2014.
ElScAe.
2014
Section
:
Chapter
2.
First
Order
Equations.
Exercises
2.2,
page
39
Problem
number
:
44
Date
solved
:
Thursday, October 02, 2025 at 01:58:49 PM
CAS
classification
:
[_quadrature]
With initial conditions
ode:=sin(y)^2 = diff(x(y),y); ic:=[x(0) = 0]; dsolve([ode,op(ic)],x(y), singsol=all);
ode=Sin[y]^2==D[x[y],y]; ic={x[0]==0}; DSolve[{ode,ic},x[y],y,IncludeSingularSolutions->True]
from sympy import * y = symbols("y") x = Function("x") ode = Eq(sin(y)**2 - Derivative(x(y), y),0) ics = {x(0): 0} dsolve(ode,func=x(y),ics=ics)