Internal
problem
ID
[16334]
Book
:
INTRODUCTORY
DIFFERENTIAL
EQUATIONS.
Martha
L.
Abell,
James
P.
Braselton.
Fourth
edition
2014.
ElScAe.
2014
Section
:
Chapter
4.
Higher
Order
Equations.
Exercises
4.5,
page
175
Problem
number
:
67
Date
solved
:
Monday, March 31, 2025 at 02:50:31 PM
CAS
classification
:
[[_2nd_order, _missing_x], [_2nd_order, _reducible, _mu_xy]]
ode:=2*y(t)*diff(diff(y(t),t),t)+y(t)^2 = diff(y(t),t)^2; dsolve(ode,y(t), singsol=all);
ode=2*y[t]*D[y[t],{t,2}]+y[t]^2==D[y[t],t]^2; ic={}; DSolve[{ode,ic},y[t],t,IncludeSingularSolutions->True]
from sympy import * t = symbols("t") y = Function("y") ode = Eq(y(t)**2 + 2*y(t)*Derivative(y(t), (t, 2)) - Derivative(y(t), t)**2,0) ics = {} dsolve(ode,func=y(t),ics=ics)
NotImplementedError : The given ODE -sqrt((y(t) + 2*Derivative(y(t), (t, 2)))*y(t)) + Derivative(y(t), t) cannot be solved by the factorable group method