Internal
problem
ID
[21212]
Book
:
A
Textbook
on
Ordinary
Differential
Equations
by
Shair
Ahmad
and
Antonio
Ambrosetti.
Second
edition.
ISBN
978-3-319-16407-6.
Springer
2015
Section
:
Chapter
3.
First
order
nonlinear
differential
equations.
Excercise
3.7
at
page
67
Problem
number
:
51
Date
solved
:
Thursday, October 02, 2025 at 07:26:51 PM
CAS
classification
:
[[_1st_order, _with_linear_symmetries]]
ode:=diff(x(t),t)^2-t*x(t)+x(t) = 0; dsolve(ode,x(t), singsol=all);
ode=D[x[t],t]^2-t*x[t]+x[t]==0; ic={}; DSolve[{ode,ic},x[t],t,IncludeSingularSolutions->True]
from sympy import * t = symbols("t") x = Function("x") ode = Eq(-t*x(t) + x(t) + Derivative(x(t), t)**2,0) ics = {} dsolve(ode,func=x(t),ics=ics)
TypeError : cannot determine truth value of Relational: _X0*(-288*t**3 + 864*t**2 - 864*t + 288) < -72*C1**2*t**3 + 216*C1**2*t**2 - 216*C1**2*t + 72*C1**2 + 32*t**6 - 192*t**5 + 480*t**4 - 640*t**3 + 480*t**2 - 192*t + 32