Internal
problem
ID
[6923]
Book
:
A
First
Course
in
Differential
Equations
with
Modeling
Applications
by
Dennis
G.
Zill.
12
ed.
Metric
version.
2024.
Cengage
learning.
Section
:
Chapter
1.
Introduction
to
differential
equations.
Exercises
1.1
at
page
12
Problem
number
:
50
Date
solved
:
Tuesday, January 28, 2025 at 03:10:36 PM
CAS
classification
:
system_of_ODEs
✓ Solution by Maple
Time used: 0.035 (sec). Leaf size: 67
dsolve([diff(x(t),t$2)=4*y(t)+exp(t),diff(y(t),t$2)=4*x(t)-exp(t)],singsol=all)
✓ Solution by Mathematica
Time used: 0.067 (sec). Leaf size: 218
DSolve[{D[x[t],{t,2}]==4*y[t]+Exp[t],D[y[t],{t,2}]==4*x[t]-Exp[t]},{x[t],y[t]},t,IncludeSingularSolutions -> True]