Internal
problem
ID
[6653]
Book
:
Schaums
Outline.
Theory
and
problems
of
Differential
Equations,
1st
edition.
Frank
Ayres.
McGraw
Hill
1952
Section
:
Chapter
6.
Equations
of
first
order
and
first
degree
(Linear
equations).
Supplemetary
problems.
Page
39
Problem
number
:
19
(o)
Date
solved
:
Sunday, March 30, 2025 at 11:13:48 AM
CAS
classification
:
[_Bernoulli]
ode:=2*diff(x(y),y)-x(y)/y+x(y)^3*cos(y) = 0; dsolve(ode,x(y), singsol=all);
ode=2*D[x[y],y]-x[y]/y+x[y]^3*Cos[y]==0; ic={}; DSolve[{ode,ic},x[y],y,IncludeSingularSolutions->True]
from sympy import * y = symbols("y") x = Function("x") ode = Eq(x(y)**3*cos(y) + 2*Derivative(x(y), y) - x(y)/y,0) ics = {} dsolve(ode,func=x(y),ics=ics)