Internal
problem
ID
[19913]
Book
:
A
short
course
on
differential
equations.
By
Donald
Francis
Campbell.
Maxmillan
company.
London.
1907
Section
:
Chapter
III.
Ordinary
differential
equations
of
the
first
order
and
first
degree.
Exercises
at
page
33
Problem
number
:
9
Date
solved
:
Thursday, October 02, 2025 at 05:00:58 PM
CAS
classification
:
[_separable]
ode:=diff(y(x),x)+sin(x)*y(x) = y(x)^2*sin(x); dsolve(ode,y(x), singsol=all);
ode=D[y[x],x]+Sin[x]*y[x]==y[x]^2*Sin[x]; ic={}; DSolve[{ode,ic},y[x],x,IncludeSingularSolutions->True]
from sympy import * x = symbols("x") y = Function("y") ode = Eq(-y(x)**2*sin(x) + y(x)*sin(x) + Derivative(y(x), x),0) ics = {} dsolve(ode,func=y(x),ics=ics)