Internal
problem
ID
[13711]
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
(i)
Date
solved
:
Wednesday, March 05, 2025 at 10:13:25 PM
CAS
classification
:
[[_2nd_order, _with_linear_symmetries]]
ode:=diff(diff(y(x),x),x)-diff(y(x),x)-6*y(x) = exp(x); dsolve(ode,y(x), singsol=all);
ode=D[y[x],{x,2}]-D[y[x],x]-6*y[x]==Exp[x]; ic={}; DSolve[{ode,ic},y[x],x,IncludeSingularSolutions->True]
from sympy import * x = symbols("x") y = Function("y") ode = Eq(-6*y(x) - exp(x) - Derivative(y(x), x) + Derivative(y(x), (x, 2)),0) ics = {} dsolve(ode,func=y(x),ics=ics)