Internal
problem
ID
[18487]
Book
:
Elementary
Differential
Equations.
By
Thornton
C.
Fry.
D
Van
Nostrand.
NY.
First
Edition
(1929)
Section
:
Chapter
IV.
Methods
of
solution:
First
order
equations.
section
31.
Problems
at
page
85
Problem
number
:
7
Date
solved
:
Monday, March 31, 2025 at 05:37:15 PM
CAS
classification
:
[_Bernoulli]
ode:=y(x)-cos(x)*diff(y(x),x) = y(x)^2*cos(x)*(1-sin(x)); dsolve(ode,y(x), singsol=all);
ode=y[x]-Cos[x]*D[y[x],x]==y[x]^2*Cos[x]*(1-Sin[x]); ic={}; DSolve[{ode,ic},y[x],x,IncludeSingularSolutions->True]
from sympy import * x = symbols("x") y = Function("y") ode = Eq(-(1 - sin(x))*y(x)**2*cos(x) + y(x) - cos(x)*Derivative(y(x), x),0) ics = {} dsolve(ode,func=y(x),ics=ics)