Internal
problem
ID
[7782]
Book
:
Engineering
Mathematics.
By
K.
A.
Stroud.
5th
edition.
Industrial
press
Inc.
NY.
2001
Section
:
Program
25.
Second
order
differential
equations.
Further
problems
25.
page
1094
Problem
number
:
9
Date
solved
:
Tuesday, September 30, 2025 at 05:05:23 PM
CAS
classification
:
[[_2nd_order, _with_linear_symmetries]]
ode:=diff(diff(y(x),x),x)-2*diff(y(x),x)+3*y(x) = x^2-1; dsolve(ode,y(x), singsol=all);
ode=D[y[x],{x,2}]-2*D[y[x],x]+3*y[x]==x^2-1; ic={}; DSolve[{ode,ic},y[x],x,IncludeSingularSolutions->True]
from sympy import * x = symbols("x") y = Function("y") ode = Eq(-x**2 + 3*y(x) - 2*Derivative(y(x), x) + Derivative(y(x), (x, 2)) + 1,0) ics = {} dsolve(ode,func=y(x),ics=ics)