80.2.14 problem 21

Internal problem ID [21157]
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 2. Theory of first order differential equations. Excercise 2.6 at page 37
Problem number : 21
Date solved : Thursday, October 02, 2025 at 07:13:52 PM
CAS classification : [`y=_G(x,y')`]

\begin{align*} x^{\prime }&=\sin \left (x t \right ) \end{align*}
Maple
ode:=diff(x(t),t) = sin(t*x(t)); 
dsolve(ode,x(t), singsol=all);
 
\[ \text {No solution found} \]
Mathematica
ode=D[x[t],t]==Sin[t*x[t]]; 
ic={}; 
DSolve[{ode,ic},x[t],t,IncludeSingularSolutions->True]
 

Not solved

Sympy
from sympy import * 
t = symbols("t") 
x = Function("x") 
ode = Eq(-sin(t*x(t)) + Derivative(x(t), t),0) 
ics = {} 
dsolve(ode,func=x(t),ics=ics)
 
NotImplementedError : The given ODE -sin(t*x(t)) + Derivative(x(t), t) cannot be solved by the lie group method