Internal
problem
ID
[10015]
Book
:
Differential
Gleichungen,
E.
Kamke,
3rd
ed.
Chelsea
Pub.
NY,
1948
Section
:
Chapter
1,
linear
first
order
Problem
number
:
1
Date
solved
:
Wednesday, March 05, 2025 at 08:04:13 AM
CAS
classification
:
[_quadrature]
ode:=diff(y(x),x)-1/(a4*x^4+a3*x^3+a2*x^2+a1*x+a0)^(1/2) = 0; dsolve(ode,y(x), singsol=all);
ode=D[y[x],x] - (a4*x^4+a3*x^3+a2*x^2+a1*x+a0)^(-1/2)==0; ic={}; DSolve[{ode,ic},y[x],x,IncludeSingularSolutions->True]
Too large to display
from sympy import * x = symbols("x") a0 = symbols("a0") a1 = symbols("a1") a2 = symbols("a2") a3 = symbols("a3") a4 = symbols("a4") y = Function("y") ode = Eq(Derivative(y(x), x) - 1/sqrt(a0 + a1*x + a2*x**2 + a3*x**3 + a4*x**4),0) ics = {} dsolve(ode,func=y(x),ics=ics)