Rayleigh's differential equation

Join the discussion
Ask a follow-up here, or get your own question answered by working scientists, mathematicians and engineers — people, not an autocomplete.
Real named experts · corrections over time · the nuance an AI answer skips
4 replies · 4K views
Physics news on Phys.org
Well, i am asked to numerically solve it and produce a phase diagram.
Should its value be given to me?
 
You're right , it was supposed to be given.
Rayleigh's DE is [itex]y''-\mu y' + \frac{\mu (y')^3}{3} + y = 0[/itex]
By rearranging it to a system of DEs, you get
[tex] y_1 = y , y_1' = y_2 \\<br /> y_2' = \mu y_2 - \frac{\mu (y_2)^3}{3} - y_1[/tex]

So i have only the derivative of y2 , i.e. the 2nd derivative of y1.
Since i don't have an analytical description of y2 , how do i compute it with specific parameters, according to the numerical method.
For example, for the classic Runge Kutta method,where f = y'
[tex] k_1 = hf(x_n,y_n) = hy_2(n)\\<br /> k_2 = hf(x_n + 0.5h,y_n + 0.5k_1) = ?[/tex]
I should numerically approximate the intermmediate values as well?