The problem context is the average consensus algorithm implemented in a network with mutiple agents. The involved knowledge include matrix and graph thery. I need to know whther the eigenvalue of following matrix can be $-1$ or not.
Take any square matrix $D_{r \times r}$ with entries defined as follows.
$$D =\begin{pmatrix}{}{1 - \sum\limits_{j \in {N_1}} {{d_{1j}}} }& \cdots &{{d_{1i}}}& \cdots &{{d_{1r}}}\\ \cdots & \cdots & \cdots & \cdots & \cdots \\{{d_{i1}}}& \cdots &{1 - \sum\limits_{j \in {N_i}} {{d_{ij}}} }& \cdots &{{d_{ir}}}\\ \cdots & \cdots & \cdots & \cdots & \cdots \\{{d_{n1}}}& \cdots &{{d_{ri}}}& \cdots &{1 - \sum\limits_{j \in {N_r}} {{d_{rj}}} }\end{pmatrix} $$ The elements of D matrix are determined as $$ {d_{ij}} = \left\{ {\begin{array}{*{20}{c}}{2/({g_i} + {g_j} + 1)}\\{1 - \sum\limits_{i \in {N_i}} {2/({g_i} + {g_j} + 1)} }\\0\end{array}} \right.\begin{array}{*{20}{c}}{j \in {N_i}}\\{i = j}\\{otherwise}\end{array}{\rm{ }} $$ where $g_{i}$ and $g_{j}$ are node degrees, the number of agents connected to agent $i$ and $j$, respectively, $N_i$ is the set of neighbor agents connected to agent $i$. Each non-zero element in $D$-matrix is the line weights and self-weights between its two incident vertices and itself.
The sum of entries in each row and columns is $1$, where $e = [1,1,..,1]^T$. Note that the diagonal elements of D matrix can be negative, which means the D matrix is not a Doubly Stochastic Matrix.
$$\begin{array}{l}De = e\\{e^T}D = {e^T}\end{array}$$
Whether $-1$ can be an eigenvalue of D or not?
Let's $Ax=-x$, and let's $x_k = \min\{x_1, x_2,\dots, x_n\}$, $x_l = \max\{x_1, x_2,\dots, x_n\}$. Then $$ -x_k = \sum_j A_{k,j}x_j \le x_l\sum_j A_{k,j} = x_l \;\;\Rightarrow\;\; x_l+x_k\ge 0, \\ -x_l = \sum_j A_{l,j}x_j \ge x_k\sum_j A_{l,j} = x_k \;\;\Rightarrow\;\; x_l+x_k\le 0, $$ so $x_k+x_l = 0$, and thus $x_l \ge 0$. But since $A_{l,j} > 0$ $$ -x_l = \sum_j A_{i,j}x_j \ge 0 \ge -x_l, $$ which implies $x_l = 0$, so $x_k=0$ and finally $x=0$.