Internal
problem
ID
[7716]
Book
:
Engineering
Mathematics.
By
K.
A.
Stroud.
5th
edition.
Industrial
press
Inc.
NY.
2001
Section
:
Program
24.
First
order
differential
equations.
Test
excercise
24.
page
1067
Problem
number
:
11
Date
solved
:
Tuesday, September 30, 2025 at 05:01:54 PM
CAS
classification
:
[[_homogeneous, `class G`], _rational, _Bernoulli]
ode:=diff(y(x),x)+y(x)/x = y(x)^3; dsolve(ode,y(x), singsol=all);
ode=D[y[x],x]+y[x]/x==y[x]^3; ic={}; DSolve[{ode,ic},y[x],x,IncludeSingularSolutions->True]
from sympy import * x = symbols("x") y = Function("y") ode = Eq(-y(x)**3 + Derivative(y(x), x) + y(x)/x,0) ics = {} dsolve(ode,func=y(x),ics=ics)