Internal
problem
ID
[8743]
Book
:
Own
collection
of
miscellaneous
problems
Section
:
section
1.0
Problem
number
:
32
Date
solved
:
Sunday, March 30, 2025 at 01:29:23 PM
CAS
classification
:
[[_homogeneous, `class C`], _rational, [_Abel, `2nd type`, `class A`]]
ode:=2*t+3*x(t)+(x(t)+2)*diff(x(t),t) = 0; dsolve(ode,x(t), singsol=all);
ode=2*t+3*x[t]+(x[t]+2)*D[x[t],t]==0; ic={}; DSolve[{ode,ic},x[t],t,IncludeSingularSolutions->True]
from sympy import * t = symbols("t") x = Function("x") ode = Eq(2*t + (x(t) + 2)*Derivative(x(t), t) + 3*x(t),0) ics = {} dsolve(ode,func=x(t),ics=ics)