Internal
problem
ID
[15075]
Book
:
AN
INTRODUCTION
TO
ORDINARY
DIFFERENTIAL
EQUATIONS
by
JAMES
C.
ROBINSON.
Cambridge
University
Press
2004
Section
:
Chapter
18,
The
variation
of
constants
formula.
Exercises
page
168
Problem
number
:
18.1
(v)
Date
solved
:
Thursday, October 02, 2025 at 10:02:39 AM
CAS
classification
:
[[_2nd_order, _missing_y]]
ode:=diff(diff(x(t),t),t)-4*diff(x(t),t) = tan(t); dsolve(ode,x(t), singsol=all);
ode=D[x[t],{t,2}]-4*D[x[t],t]==Tan[t]; ic={}; DSolve[{ode,ic},x[t],t,IncludeSingularSolutions->True]
from sympy import * t = symbols("t") x = Function("x") ode = Eq(-tan(t) - 4*Derivative(x(t), t) + Derivative(x(t), (t, 2)),0) ics = {} dsolve(ode,func=x(t),ics=ics)