Internal
problem
ID
[5755]
Book
:
Differential
Equations,
By
George
Boole
F.R.S.
1865
Section
:
Chapter
7
Problem
number
:
6
Date
solved
:
Sunday, March 30, 2025 at 10:08:12 AM
CAS
classification
:
[_quadrature]
ode:=x = a*diff(y(x),x)+b*diff(y(x),x)^2; dsolve(ode,y(x), singsol=all);
ode=x==a*D[y[x],x]+b*(D[y[x],x])^2; ic={}; DSolve[{ode,ic},y[x],x,IncludeSingularSolutions->True]
from sympy import * x = symbols("x") a = symbols("a") b = symbols("b") y = Function("y") ode = Eq(-a*Derivative(y(x), x) - b*Derivative(y(x), x)**2 + x,0) ics = {} dsolve(ode,func=y(x),ics=ics)