Internal
problem
ID
[17536]
Book
:
INTRODUCTORY
DIFFERENTIAL
EQUATIONS.
Martha
L.
Abell,
James
P.
Braselton.
Fourth
edition
2014.
ElScAe.
2014
Section
:
Chapter
4.
Higher
Order
Equations.
Exercises
4.2,
page
147
Problem
number
:
42
(b)
Date
solved
:
Friday, October 03, 2025 at 07:31:34 AM
CAS
classification
:
[[_2nd_order, _missing_x]]
ode:=diff(diff(y(t),t),t)^2-2*diff(diff(y(t),t),t)*diff(y(t),t)+y(t)^2 = 0; dsolve(ode,y(t), singsol=all);
ode=D[y[t],{t,2}]^2-2*D[y[t],{t,2}]*D[y[t],t]+y[t]^2==0; ic={}; DSolve[{ode,ic},y[t],t,IncludeSingularSolutions->True]
Not solved
from sympy import * t = symbols("t") y = Function("y") ode = Eq(y(t)**2 - 2*Derivative(y(t), t)*Derivative(y(t), (t, 2)) + Derivative(y(t), (t, 2))**2,0) ics = {} dsolve(ode,func=y(t),ics=ics)
NotImplementedError : The given ODE -(y(t)**2 + Derivative(y(t), (t, 2))**2)/(2*Derivative(y(t), (t, 2))) + Derivative(y(t), t) cannot be solved by the factorable group method