Internal
problem
ID
[6885]
Book
:
Differential
Equations,
By
George
Boole
F.R.S.
1865
Section
:
Chapter
7
Problem
number
:
1
Date
solved
:
Tuesday, September 30, 2025 at 04:00:03 PM
CAS
classification
:
[_quadrature]
ode:=diff(y(x),x)^2-5*diff(y(x),x)+6 = 0; dsolve(ode,y(x), singsol=all);
ode=(D[y[x],x])^2-5*D[y[x],x]+6==0; ic={}; DSolve[{ode,ic},y[x],x,IncludeSingularSolutions->True]
from sympy import * x = symbols("x") y = Function("y") ode = Eq(Derivative(y(x), x)**2 - 5*Derivative(y(x), x) + 6,0) ics = {} dsolve(ode,func=y(x),ics=ics)