Internal
problem
ID
[10299]
Book
:
Differential
Gleichungen,
E.
Kamke,
3rd
ed.
Chelsea
Pub.
NY,
1948
Section
:
Chapter
1,
linear
first
order
Problem
number
:
291
Date
solved
:
Sunday, March 30, 2025 at 03:53:38 PM
CAS
classification
:
[[_1st_order, _with_linear_symmetries], _rational]
ode:=(b*(beta*y(x)+alpha*x)^2-beta*(a*x+b*y(x)))*diff(y(x),x)+a*(beta*y(x)+alpha*x)^2-alpha*(a*x+b*y(x)) = 0; dsolve(ode,y(x), singsol=all);
ode=(b*(\[Beta]*y[x]+alpha*x)^2-\[Beta]*(b*y[x]+a*x))*D[y[x],x]+a*(\[Beta]*y[x]+alpha*x)^2-alpha*(b*y[x]+a*x)==0; ic={}; DSolve[{ode,ic},y[x],x,IncludeSingularSolutions->True]
from sympy import * x = symbols("x") Alpha = symbols("Alpha") BETA = symbols("BETA") a = symbols("a") b = symbols("b") y = Function("y") ode = Eq(-Alpha*(a*x + b*y(x)) + a*(Alpha*x + BETA*y(x))**2 + (-BETA*(a*x + b*y(x)) + b*(Alpha*x + BETA*y(x))**2)*Derivative(y(x), x),0) ics = {} dsolve(ode,func=y(x),ics=ics)
Timed Out