Internal
problem
ID
[16583]
Book
:
INTRODUCTORY
DIFFERENTIAL
EQUATIONS.
Martha
L.
Abell,
James
P.
Braselton.
Fourth
edition
2014.
ElScAe.
2014
Section
:
Chapter
6.
Systems
of
Differential
Equations.
Exercises
6.1,
page
282
Problem
number
:
15
Date
solved
:
Thursday, March 13, 2025 at 08:23:47 AM
CAS
classification
:
[[_2nd_order, _linear, _nonhomogeneous]]
ode:=diff(diff(x(t),t),t)+16*x(t) = t*sin(t); dsolve(ode,x(t), singsol=all);
ode=D[x[t],{t,2}]+16*x[t]==t*Sin[t]; ic={}; DSolve[{ode,ic},x[t],t,IncludeSingularSolutions->True]
from sympy import * t = symbols("t") x = Function("x") ode = Eq(-t*sin(t) + 16*x(t) + Derivative(x(t), (t, 2)),0) ics = {} dsolve(ode,func=x(t),ics=ics)