Internal
problem
ID
[11501]
Book
:
Differential
Gleichungen,
E.
Kamke,
3rd
ed.
Chelsea
Pub.
NY,
1948
Section
:
Chapter
4,
linear
fourth
order
Problem
number
:
1537
Date
solved
:
Sunday, March 30, 2025 at 08:23:44 PM
CAS
classification
:
[[_high_order, _linear, _nonhomogeneous]]
ode:=diff(diff(diff(diff(y(x),x),x),x),x)-12*diff(diff(y(x),x),x)+12*y(x)-16*x^4*exp(x^2) = 0; dsolve(ode,y(x), singsol=all);
ode=-16*E^x^2*x^4 + 12*y[x] - 12*D[y[x],{x,2}] + Derivative[4][y][x] == 0; ic={}; DSolve[{ode,ic},y[x],x,IncludeSingularSolutions->True]
from sympy import * x = symbols("x") y = Function("y") ode = Eq(-16*x**4*exp(x**2) + 12*y(x) - 12*Derivative(y(x), (x, 2)) + Derivative(y(x), (x, 4)),0) ics = {} dsolve(ode,func=y(x),ics=ics)