Internal
problem
ID
[14962]
Book
:
Ordinary
Differential
Equations.
An
introduction
to
the
fundamentals.
Kenneth
B.
Howell.
second
edition.
CRC
Press.
FL,
USA.
2020
Section
:
Chapter
3.
Some
basics
about
First
order
equations.
Additional
exercises.
page
63
Problem
number
:
3.4
j
Date
solved
:
Monday, March 31, 2025 at 01:09:02 PM
CAS
classification
:
[_Riccati]
ode:=diff(y(x),x)+(8-x)*y(x)-y(x)^2 = -8*x; dsolve(ode,y(x), singsol=all);
ode=D[y[x],x]+(8-x)*y[x]-y[x]^2==-8*x; ic={}; DSolve[{ode,ic},y[x],x,IncludeSingularSolutions->True]
from sympy import * x = symbols("x") y = Function("y") ode = Eq(8*x + (8 - x)*y(x) - y(x)**2 + Derivative(y(x), x),0) ics = {} dsolve(ode,func=y(x),ics=ics)
TypeError : bad operand type for unary -: list