Internal
problem
ID
[12932]
Book
:
Differential
Gleichungen,
E.
Kamke,
3rd
ed.
Chelsea
Pub.
NY,
1948
Section
:
Chapter
6,
non-linear
second
order
Problem
number
:
1692
(book
6.101)
Date
solved
:
Friday, October 03, 2025 at 03:50:51 AM
CAS
classification
:
[NONE]
ode:=(a*x^2+b*x+c)^(3/2)*diff(diff(y(x),x),x)-F(y(x)/(a*x^2+b*x+c)^(1/2)) = 0; dsolve(ode,y(x), singsol=all);
ode=-f[y[x]/Sqrt[c + b*x + a*x^2]] + (c + b*x + a*x^2)^(3/2)*D[y[x],{x,2}] == 0; ic={}; DSolve[{ode,ic},y[x],x,IncludeSingularSolutions->True]
from sympy import * x = symbols("x") a = symbols("a") b = symbols("b") c = symbols("c") y = Function("y") F = Function("F") ode = Eq((a*x**2 + b*x + c)**(3/2)*Derivative(y(x), (x, 2)) - F(y(x)/sqrt(a*x**2 + b*x + c)),0) ics = {} dsolve(ode,func=y(x),ics=ics)
NotImplementedError : solve: Cannot solve (a*x**2 + b*x + c)**(3/2)*Derivative(y(x), (x, 2)) - F(y(x)/sqrt(a*x**2 + b*x + c))