Internal
problem
ID
[20805]
Book
:
A
Text
book
for
differentional
equations
for
postgraduate
students
by
Ray
and
Chaturvedi.
First
edition,
1958.
BHASKAR
press.
INDIA
Section
:
Book
Solved
Excercises.
Chapter
II.
Equations
of
first
order
and
first
degree
Problem
number
:
Ex
14
page
15
Date
solved
:
Thursday, October 02, 2025 at 06:25:21 PM
CAS
classification
:
[_Bernoulli]
ode:=diff(y(x),x)+p(x)*y(x) = q(x)*y(x)^n; dsolve(ode,y(x), singsol=all);
ode=D[y[x],x]+p[x]*y[x]==q[x]*y[x]^n; ic={}; DSolve[{ode,ic},y[x],x,IncludeSingularSolutions->True]
from sympy import * x = symbols("x") n = symbols("n") y = Function("y") ode = Eq(p(x)*y(x) - q(x)*y(x)**n + Derivative(y(x), x),0) ics = {} dsolve(ode,func=y(x),ics=ics)