How i can solve the this second order diffrential equation

2 views (last 30 days)
y"(x)-(3+2w)cotx.y'(x)-2(1+w)y=(16/3)w(c^2)(cosx)^2)+(16/3)(c^2)

Answers (1)

KSSV
KSSV on 27 Oct 2020
syms y(x) c w
Dy = diff(y,x) ;
D2y = diff(Dy,x) ;
ode = D2y-(3+2*w)*cot(x)*Dy-2*(1+w)*y==(16/3)*w*(c^2)*(cos(x)^2)+(16/3)*(c^2)
sol = solve(ode)

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!