Consider the Laplace operator over a 1D domain, with homogeneous Neumann boundary conditions. I have discretized this operator using the cell-centered Finite Volume method on a uniform grid of size $h$, employing a four-point central difference scheme in the bulk of the grid, while reverting to a two-point scheme near the boundaries. The result is the following matrix: \begin{equation} L_n = \frac{1}{24h} \begin{bmatrix} -24 & 24 & & & & &\\ 25 & -51 & 27 & -1 & & &\\ -1 & 28 & -54 & 28 & -1 &\\ &\ddots &\ddots&\ddots&\ddots&\ddots\\ & &-1 &28 &-54 &28 & -1\\ & & &-1 &27 &-51 &25\\ & & & & & 24 & -24 \end{bmatrix}\in\mathbb{R}^{n\times n}. \end{equation}
Since it is a discretization of a negative semi-definite operator, I would expect $L_n$ to have real, non-positive eigenvalues. This is indeed what I observe numerically (regardless of size), but I'm struggling to prove it due to the inconvenient properties. Matrix $L_n$ is singular, asymmetric and its Gershgorin disks don't confine its eigenvalues to the left complex half-plane (we get a disk of radius $\frac{58}{24h}$ centered around $-\frac{54}{24h}$). The things that I have been able to prove, are the following:
- The vector $[1\dots 1]^T$ is an eigenvector of $L_n$, corresponding to eigenvalue 0.
- The smallest version of $L_n$ that contains the repeating stencil, $L_5$, has demonstrably real, non-positive eigenvalues (an exact expression for the characteristic polynomial can be derived & plotted). \begin{equation} L_5 = \frac{1}{24h} \begin{bmatrix} -24 & 24 & & &\\ 25 & -51 & 27 & -1 &\\ -1 & 28 & -54 & 28 & -1\\ &-1 &27 &-51 &25\\ & & & 24 & -24 \end{bmatrix}. \end{equation}
- The four-point scheme yields a negative semi-definite matrix when using periodic boundary conditions (an exact expression for eigenvalues can be derived, by leveraging the circularity of the resulting matrix $\tilde{L}_n$). \begin{equation} \tilde{L}_{n}= \frac{1}{24h} \begin{bmatrix} -54 & 28 & -1 & & & -1& 28\\ 28 & -54 & 28 & -1 & & & -1 \\ -1 & 28 & -54 & 28 & -1 &\\ &\ddots &\ddots&\ddots&\ddots&\ddots\\ & &-1 &28 &-54 &28 & -1\\ -1& & &-1 &28 &-54 &28\\ 28& -1& & & -1 & 28 & -54 \end{bmatrix}. \end{equation}
Does anyone have a suggestion for how I could go about proving the realness and non-positiveness of the eigenvalues of $L_n$? My hunch is that adding more rows with the repeating stencil somehow doesn't affect the bounds of the spectrum, but I don't know how I could prove this. I get the feeling that I might be missing a piece of theory here.
Thanks in advance!