Internal
problem
ID
[13673]
Book
:
AN
INTRODUCTION
TO
ORDINARY
DIFFERENTIAL
EQUATIONS
by
JAMES
C.
ROBINSON.
Cambridge
University
Press
2004
Section
:
Chapter
12,
Homogeneous
second
order
linear
equations.
Exercises
page
118
Problem
number
:
12.1
(iii)
Date
solved
:
Wednesday, March 05, 2025 at 10:11:29 PM
CAS
classification
:
[[_2nd_order, _missing_x]]
With initial conditions
ode:=diff(diff(z(t),t),t)-4*diff(z(t),t)+13*z(t) = 0; ic:=z(0) = 7, D(z)(0) = 42; dsolve([ode,ic],z(t), singsol=all);
ode=D[z[t],{t,2}]-4*D[z[t],t]+13*z[t]==0; ic={z[0]==7,Derivative[1][z][0]==42}; DSolve[{ode,ic},z[t],t,IncludeSingularSolutions->True]
from sympy import * t = symbols("t") z = Function("z") ode = Eq(13*z(t) - 4*Derivative(z(t), t) + Derivative(z(t), (t, 2)),0) ics = {z(0): 7, Subs(Derivative(z(t), t), t, 0): 42} dsolve(ode,func=z(t),ics=ics)