Internal
problem
ID
[3010]
Book
:
Differential
Equations
by
Alfred
L.
Nelson,
Karl
W.
Folley,
Max
Coral.
3rd
ed.
DC
heath.
Boston.
1964
Section
:
Exercise
12,
page
46
Problem
number
:
7
Date
solved
:
Tuesday, March 04, 2025 at 03:43:12 PM
CAS
classification
:
[[_1st_order, _with_linear_symmetries]]
ode:=2*exp(x(t))-t^2+t*exp(x(t))*diff(x(t),t) = 0; dsolve(ode,x(t), singsol=all);
ode=(2*Exp[x[t]]-t^2)+(t*Exp[x[t]])*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(-t**2 + t*exp(x(t))*Derivative(x(t), t) + 2*exp(x(t)),0) ics = {} dsolve(ode,func=x(t),ics=ics)