Internal
problem
ID
[6312]
Book
:
Fundamentals
of
Differential
Equations.
By
Nagle,
Saff
and
Snider.
9th
edition.
Boston.
Pearson
2018.
Section
:
Chapter
2,
First
order
differential
equations.
Section
2.3,
Linear
equations.
Exercises.
page
54
Problem
number
:
19
Date
solved
:
Sunday, March 30, 2025 at 10:50:30 AM
CAS
classification
:
[_linear]
With initial conditions
ode:=t^2*diff(x(t),t)+3*x(t)*t = t^4*ln(t)+1; ic:=x(1) = 0; dsolve([ode,ic],x(t), singsol=all);
ode=t^2*D[x[t],t]+3*t*x[t]==t^4*Log[t]+1; ic={x[1]==0}; DSolve[{ode,ic},x[t],t,IncludeSingularSolutions->True]
from sympy import * t = symbols("t") x = Function("x") ode = Eq(-t**4*log(t) + t**2*Derivative(x(t), t) + 3*t*x(t) - 1,0) ics = {x(1): 0} dsolve(ode,func=x(t),ics=ics)