Internal
problem
ID
[21740]
Book
:
The
Differential
Equations
Problem
Solver.
VOL.
I.
M.
Fogiel
director.
REA,
NY.
1978.
ISBN
78-63609
Section
:
Chapter
22.
Electrical
Circuits
Problem
number
:
22-1
Date
solved
:
Thursday, October 02, 2025 at 08:01:39 PM
CAS
classification
:
[[_2nd_order, _missing_x]]
ode:=diff(diff(y(t),t),t)+4*y(t) = 0; dsolve(ode,y(t), singsol=all);
ode=D[y[t],{t,2}]+4*y[t]==0; ic={}; DSolve[{ode,ic},y[t],t,IncludeSingularSolutions->True]
from sympy import * t = symbols("t") y = Function("y") ode = Eq(4*y(t) + Derivative(y(t), (t, 2)),0) ics = {} dsolve(ode,func=y(t),ics=ics)