Internal
problem
ID
[16513]
Book
:
Ordinary
Differential
Equations.
An
introduction
to
the
fundamentals.
Kenneth
B.
Howell.
second
edition.
CRC
Press.
FL,
USA.
2020
Section
:
Chapter
13.
Higher
order
equations:
Extending
first
order
concepts.
Additional
exercises
page
259
Problem
number
:
13.3
(c)
Date
solved
:
Thursday, October 02, 2025 at 01:35:51 PM
CAS
classification
:
[[_3rd_order, _missing_x], [_3rd_order, _missing_y], [_3rd_order, _with_linear_symmetries], [_3rd_order, _reducible, _mu_y2]]
ode:=diff(diff(diff(y(x),x),x),x) = 2*diff(diff(y(x),x),x)^(1/2); dsolve(ode,y(x), singsol=all);
ode=D[y[x],{x,3}]==2*Sqrt[D[y[x],{x,2}]]; ic={}; DSolve[{ode,ic},y[x],x,IncludeSingularSolutions->True]
from sympy import * x = symbols("x") y = Function("y") ode = Eq(-2*sqrt(Derivative(y(x), (x, 2))) + Derivative(y(x), (x, 3)),0) ics = {} dsolve(ode,func=y(x),ics=ics)