Internal
problem
ID
[10058]
Book
:
Own
collection
of
miscellaneous
problems
Section
:
section
1.0
Problem
number
:
60
Date
solved
:
Tuesday, September 30, 2025 at 06:51:51 PM
CAS
classification
:
[[_2nd_order, _quadrature]]
ode:=diff(diff(y(x),x),x) = 4*sin(x)-4; dsolve(ode,y(x), singsol=all);
ode=D[y[x],{x,2}]==4*Sin[x]-4; ic={}; DSolve[{ode,ic},y[x],x,IncludeSingularSolutions->True]
from sympy import * x = symbols("x") y = Function("y") ode = Eq(-4*sin(x) + Derivative(y(x), (x, 2)) + 4,0) ics = {} dsolve(ode,func=y(x),ics=ics)