Internal
problem
ID
[13008]
Book
:
A
First
Course
in
Differential
Equations
by
J.
David
Logan.
Third
Edition.
Springer-Verlag,
NY.
2015.
Section
:
Chapter
1,
First
order
differential
equations.
Section
1.4.1.
Integrating
factors.
Exercises
page
41
Problem
number
:
1(e)
Date
solved
:
Monday, March 31, 2025 at 07:30:36 AM
CAS
classification
:
[_rational, [_Abel, `2nd type`, `class A`]]
ode:=x(t)*diff(x(t),t) = 1-t*x(t); dsolve(ode,x(t), singsol=all);
ode=x[t]*D[x[t],t]==1-t*x[t]; 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) - 1,0) ics = {} dsolve(ode,func=x(t),ics=ics)
NotImplementedError : The given ODE t + Derivative(x(t), t) - 1/x(t) cannot be solved by the factorable group method