Internal
problem
ID
[23163]
Book
:
An
introduction
to
Differential
Equations.
By
Howard
Frederick
Cleaves.
1969.
Oliver
and
Boyd
publisher.
ISBN
0050015044
Section
:
Chapter
5.
Linear
equations
of
the
second
order
with
constant
coefficients.
Exercise
5e
at
page
91
Problem
number
:
3
Date
solved
:
Thursday, October 02, 2025 at 09:23:38 PM
CAS
classification
:
[[_2nd_order, _missing_x], [_2nd_order, _reducible, _mu_y_y1]]
ode:=diff(diff(T(y),y),y)+diff(T(y),y)^3 = 0; dsolve(ode,T(y), singsol=all);
ode=D[T[y],{y,2}]+D[T[y],y]^3==0; ic={}; DSolve[{ode,ic},T[y],y,IncludeSingularSolutions->True]
from sympy import * y = symbols("y") T = Function("T") ode = Eq(Derivative(T(y), y)**3 + Derivative(T(y), (y, 2)),0) ics = {} dsolve(ode,func=T(y),ics=ics)