Internal
problem
ID
[19797]
Book
:
Elementary
Differential
Equations.
By
R.L.E.
Schwarzenberger.
Chapman
and
Hall.
London.
First
Edition
(1969)
Section
:
Chapter
3.
Solutions
of
first-order
equations.
Exercises
at
page
47
Problem
number
:
4
(vi)
Date
solved
:
Thursday, October 02, 2025 at 04:43:52 PM
CAS
classification
:
[_linear]
ode:=t*diff(x(t),t)+x(t)*ln(t) = t^2; dsolve(ode,x(t), singsol=all);
ode=t*D[x[t],t]+x[t]*Log[t]==t^2; ic={}; DSolve[{ode,ic},x[t],t,IncludeSingularSolutions->True]
from sympy import * t = symbols("t") x = Function("x") ode = Eq(-t**2 + t*Derivative(x(t), t) + x(t)*log(t),0) ics = {} dsolve(ode,func=x(t),ics=ics)