Internal
problem
ID
[539]
Book
:
Elementary
Differential
Equations.
By
C.
Henry
Edwards,
David
E.
Penney
and
David
Calvis.
6th
edition.
2008
Section
:
Chapter
4.
Laplace
transform
methods.
Section
4.2
(Transformation
of
initial
value
problems).
Problems
at
page
287
Problem
number
:
10
Date
solved
:
Tuesday, September 30, 2025 at 04:01:08 AM
CAS
classification
:
[[_2nd_order, _with_linear_symmetries]]
Using Laplace method With initial conditions
ode:=diff(diff(x(t),t),t)+3*diff(x(t),t)+2*x(t) = t; ic:=[x(0) = 0, D(x)(0) = 2]; dsolve([ode,op(ic)],x(t),method='laplace');
ode=D[x[t],{t,2}]+3*D[x[t],t]+2*x[t]==t; ic={x[0]==0,Derivative[1][x][0] ==2}; DSolve[{ode,ic},x[t],t,IncludeSingularSolutions->True]
from sympy import * t = symbols("t") x = Function("x") ode = Eq(-t + 2*x(t) + 3*Derivative(x(t), t) + Derivative(x(t), (t, 2)),0) ics = {x(0): 0, Subs(Derivative(x(t), t), t, 0): 2} dsolve(ode,func=x(t),ics=ics)