Skip to content
Advertisement

How to guess the numerical Solution for Mathieu’s Equation

am trying to predict the exact solution for the mathieu’s equation y”+(lambda – 2qcos(2x))y = 0. I have been able to get five eigenvalues for the equation using numerical approximation and I want to find for each eigenvalues a guessed exact solution. I would be greatfull if someone helps. Thank you. Below is one of the codes for the fourth Eigenvalue

from scipy.integrate import solve_bvp import numpy as np import matplotlib.pyplot as plt

Definition of Mathieu’s Equation

JavaScript

Definition of Boundary conditions(BC)

JavaScript

A guess solution of the mathieu’s Equation

JavaScript

[Plot of the Fourth Eigenvalues][2]

Advertisement

Answer

To compute the first five eigenpairs, thus, pairs of eigenvalues and eigenfunctions, of the Mathieu’s equation Y” + (λ − 2q cos(2x))y = 0, on the interval [0, π] with boundary conditions: y'(0) = 0, and y'(π) = 0 when q = 5. The solution is normalized so that y(0) = 1. Though all the initial values are known at x = 0, the problem requires finding a value for the parameters that allows the boundary condition y'(π) = 0 to be satisfied. Therefore the guess or exact solution of Mathieu’s equation is cos(k*x) where k ∈ ℕ.

JavaScript

Solution of Mathieu Equation

User contributions licensed under: CC BY-SA
1 People found this is helpful
Advertisement