Internal
problem
ID
[16080]
Book
:
INTRODUCTORY
DIFFERENTIAL
EQUATIONS.
Martha
L.
Abell,
James
P.
Braselton.
Fourth
edition
2014.
ElScAe.
2014
Section
:
Chapter
2.
First
Order
Equations.
Review
exercises,
page
80
Problem
number
:
15
Date
solved
:
Monday, March 31, 2025 at 02:39:18 PM
CAS
classification
:
[[_homogeneous, `class A`], _rational, _dAlembert]
ode:=diff(x(t),t) = 5*t*x(t)/(x(t)^2+t^2); dsolve(ode,x(t), singsol=all);
ode=D[x[t],t]==5*t*x[t]/(x[t]^2+t^2); ic={}; DSolve[{ode,ic},x[t],t,IncludeSingularSolutions->True]
from sympy import * t = symbols("t") x = Function("x") ode = Eq(-5*t*x(t)/(t**2 + x(t)**2) + Derivative(x(t), t),0) ics = {} dsolve(ode,func=x(t),ics=ics)