I am constructing an eigenvalue problem of the form
$$[R]{c} = \lambda [F]{c}$$
The matrices are populated by the results of some integrals
$$ I_{i,j} = \int f(x,y,i,j) dxdy \quad for \quad i=1,..,N \quad j=1,...,M $$
All the numbers are coming out wrong the eigenvalues are nonsensical and do not converge as the matrices get larger, they just get larger in turn, and I am trying to troubleshoot. I noticed that $[F]$ always is singular. I added some "salt" ($1e-10$) so that the program did not rebel on me but I am thinkning that this might indicate some deeper issue about my problem formulation/computation, although I am not really sure what.
So my question is: Does the fact that $[F]$ is singular, point to any such problems and if yes how should I go about correcting it? Furthermore any advice on where to focus the troubleshooting?
Cheers
I don't see how I can mark a comment as the correct answer but after much pain and tears, using the pseudo-inverse matrix as suggested by Jean Marie yielded the best results. Not completely there yet, the resulting eigenvalues are always what I am looking for divided by 2 for some reason, but it's getting there.