Internal
problem
ID
[7739]
Book
:
Engineering
Mathematics.
By
K.
A.
Stroud.
5th
edition.
Industrial
press
Inc.
NY.
2001
Section
:
Program
24.
First
order
differential
equations.
Further
problems
24.
page
1068
Problem
number
:
22
Date
solved
:
Tuesday, September 30, 2025 at 05:04:14 PM
CAS
classification
:
[[_1st_order, _with_linear_symmetries], _Bernoulli]
ode:=diff(y(x),x)+y(x) = y(x)^4*exp(x); dsolve(ode,y(x), singsol=all);
ode=D[y[x],x]+y[x]==y[x]^4*Exp[x]; ic={}; DSolve[{ode,ic},y[x],x,IncludeSingularSolutions->True]
from sympy import * x = symbols("x") y = Function("y") ode = Eq(-y(x)**4*exp(x) + y(x) + Derivative(y(x), x),0) ics = {} dsolve(ode,func=y(x),ics=ics)