Internal
problem
ID
[19800]
Book
:
Elementary
Differential
Equations.
By
R.L.E.
Schwarzenberger.
Chapman
and
Hall.
London.
First
Edition
(1969)
Section
:
Chapter
4.
Autonomous
systems.
Exercises
at
page
69
Problem
number
:
1
Date
solved
:
Thursday, October 02, 2025 at 04:43:56 PM
CAS
classification
:
[_quadrature]
ode:=diff(x(t),t) = -lambda*x(t); dsolve(ode,x(t), singsol=all);
ode=D[x[t],t]==\[Lambda]*x[t]; ic={}; DSolve[{ode,ic},x[t],t,IncludeSingularSolutions->True]
from sympy import * t = symbols("t") lambda_ = symbols("lambda_") x = Function("x") ode = Eq(lambda_*x(t) + Derivative(x(t), t),0) ics = {} dsolve(ode,func=x(t),ics=ics)