Internal
problem
ID
[22277]
Book
:
Schaums
outline
series.
Differential
Equations
By
Richard
Bronson.
1973.
McGraw-Hill
Inc.
ISBN
0-07-008009-7
Section
:
Chapter
16.
Initial-value
problems.
Solved
problems.
Page
81
Problem
number
:
16.4
Date
solved
:
Thursday, October 02, 2025 at 08:37:00 PM
CAS
classification
:
[[_3rd_order, _missing_x]]
With initial conditions
ode:=diff(diff(diff(y(x),x),x),x)-6*diff(diff(y(x),x),x)+11*diff(y(x),x)-6*y(x) = 0; ic:=[y(Pi) = 0, D(y)(Pi) = 0, (D@@2)(y)(Pi) = 1]; dsolve([ode,op(ic)],y(x), singsol=all);
ode=D[y[x],{x,3}]-6*D[y[x],{x,2}]+11*D[y[x],{x,1}]-6*y[x]==0; ic={y[Pi]==0,Derivative[1][y][Pi] ==0,Derivative[2][y][Pi] ==1}; DSolve[{ode,ic},y[x],x,IncludeSingularSolutions->True]
from sympy import * x = symbols("x") y = Function("y") ode = Eq(-6*y(x) + 11*Derivative(y(x), x) - 6*Derivative(y(x), (x, 2)) + Derivative(y(x), (x, 3)),0) ics = {y(pi): 0, Subs(Derivative(y(x), x), x, pi): 1} dsolve(ode,func=y(x),ics=ics)