Internal
problem
ID
[6576]
Book
:
Schaums
Outline.
Theory
and
problems
of
Differential
Equations,
1st
edition.
Frank
Ayres.
McGraw
Hill
1952
Section
:
Chapter
2.
Solutions
of
differential
equations.
Supplemetary
problems.
Page
11
Problem
number
:
20
Date
solved
:
Sunday, March 30, 2025 at 11:10:14 AM
CAS
classification
:
[[_2nd_order, _with_linear_symmetries]]
ode:=diff(diff(y(x),x),x)-y(x) = -x+4; dsolve(ode,y(x), singsol=all);
ode=D[y[x],{x,2}]-y[x]==4-x; ic={}; DSolve[{ode,ic},y[x],x,IncludeSingularSolutions->True]
from sympy import * x = symbols("x") y = Function("y") ode = Eq(x - y(x) + Derivative(y(x), (x, 2)) - 4,0) ics = {} dsolve(ode,func=y(x),ics=ics)