I've posted a more detailed version of this question here : SE-ComputationalSci
but I'm really struggling with a simpler and related question. Lets say one wants to solve (I made this equation up, right now)
$F''(x) - F'(x) + x^2 F(x) = \lambda F(x)$, and you are given the boundary conditions $F(0)=F(X) =0$. The domain of $x$ is $(0,X)$.
Now, if I want to use a spectral method, where I expand my functions in terms of Chebyshev polynomials. I would want to do something like this:
1) Change the domain, introduce $y = 2(x/X) -1$ then I would do
2) Express $F (x) = \Sigma_0^{\infty} f_i T_i(y)- \frac{1}{2}f_0$ , where $T_i$ are my Chebyshev polynomials.
3) Use the orthogonality of the polynomials to get set of algebraic equations to solve for $F(x)$.
My question is what do I do with the $x^2$ term in my original equation. Do I rewrite that in terms of $y$, or do I define a new function $x^2*F(x) = G(x)$ and then try to work out how the expansion coefficients for $G(x)$ would be related to $f_i$?
I may just be missing the whole idea of the spectral method, in the first place. The goal of understanding this better would be to reproduce the spectral method used in Appendix A of this paper: http://arxiv.org/pdf/gr-qc/0210102.pdf
Thanks for any answers, and help.
This post imported from StackExchange Mathematics at 2014-06-02 20:27 (UCT), posted by SE-user tau1777