Internal
problem
ID
[13458]
Book
:
Differential
Equations
by
Shepley
L.
Ross.
Third
edition.
John
Willey.
New
Delhi.
2004.
Section
:
Chapter
4,
Section
4.4.
Variation
of
parameters.
Exercises
page
162
Problem
number
:
25
Date
solved
:
Monday, March 31, 2025 at 07:58:29 AM
CAS
classification
:
[[_2nd_order, _linear, _nonhomogeneous]]
ode:=sin(x)^2*diff(diff(y(x),x),x)-2*sin(x)*cos(x)*diff(y(x),x)+(cos(x)^2+1)*y(x) = sin(x)^3; dsolve(ode,y(x), singsol=all);
ode=Sin[x]^2*D[y[x],{x,2}]-2*Sin[x]*Cos[x]*D[y[x],x]+(Cos[x]^2+1)*y[x]==Sin[x]^3; ic={}; DSolve[{ode,ic},y[x],x,IncludeSingularSolutions->True]
from sympy import * x = symbols("x") y = Function("y") ode = Eq((cos(x)**2 + 1)*y(x) - sin(x)**3 + sin(x)**2*Derivative(y(x), (x, 2)) - 2*sin(x)*cos(x)*Derivative(y(x), x),0) ics = {} dsolve(ode,func=y(x),ics=ics)
NotImplementedError : The given ODE -((-sin(x) + Derivative(y(x), (x, 2)))*sin(x)**2 + y(x)*cos(x)**2 + y(x))/(2*sin(x)*cos(x)) + Derivative(y(x), x) cannot be solved by the factorable group method