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