Internal
problem
ID
[10100]
Book
:
Differential
Gleichungen,
E.
Kamke,
3rd
ed.
Chelsea
Pub.
NY,
1948
Section
:
Chapter
1,
linear
first
order
Problem
number
:
88
Date
solved
:
Sunday, March 30, 2025 at 03:15:59 PM
CAS
classification
:
[_Riccati]
ode:=2*diff(y(x),x)-3*y(x)^2-4*a*y(x)-b-c*exp(-2*a*x) = 0; dsolve(ode,y(x), singsol=all);
ode=2*D[y[x],x] - 3*y[x]^2 - 4*a*y[x] - b - c*Exp[-2*a*x]==0; ic={}; DSolve[{ode,ic},y[x],x,IncludeSingularSolutions->True]
Too large to display
from sympy import * x = symbols("x") a = symbols("a") b = symbols("b") c = symbols("c") y = Function("y") ode = Eq(-4*a*y(x) - b - c*exp(-2*a*x) - 3*y(x)**2 + 2*Derivative(y(x), x),0) ics = {} dsolve(ode,func=y(x),ics=ics)
NotImplementedError : The given ODE -2*a*y(x) - b/2 - c*exp(-2*a*x)/2 - 3*y(x)**2/2 + Derivative(y(x), x) cannot be solved by the factorable group method