Internal
problem
ID
[7936]
Book
:
Differential
Equations:
Theory,
Technique,
and
Practice
by
George
Simmons,
Steven
Krantz.
McGraw-Hill
NY.
2007.
1st
Edition.
Section
:
Chapter
1.
What
is
a
differential
equation.
Problems
for
Review
and
Discovery.
Page
53
Problem
number
:
4(d)
Date
solved
:
Sunday, March 30, 2025 at 12:38:38 PM
CAS
classification
:
[[_2nd_order, _missing_y]]
ode:=x*diff(diff(y(x),x),x)-3*diff(y(x),x) = 5*x; dsolve(ode,y(x), singsol=all);
ode=x*D[y[x],{x,2}]-3*D[y[x],x]==5*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, 2)) - 5*x - 3*Derivative(y(x), x),0) ics = {} dsolve(ode,func=y(x),ics=ics)