I'm currently dealing with a problem that I'm unsure how to start.
Let G be a graph with largest Laplacian eigenvalue $\lambda_1$ and maximum degree $\Delta > 0$. Show that $\lambda_1 \geq \Delta + 1 $.
I have tried using that the sum of the eigenvalues of the Laplacian is the trace of Laplacian, but that got me nowhere. Any tips appreciated!
The correct place to start, when it comes to interpreting the largest eigenvalue of any symmetric matrix, is almost always the following lemma:
For the Laplacian matrix in particular, it's convenient to keep in mind that $\mathbf x^{\mathsf T}L \mathbf x = \sum_{ij \in E}(x_i -x_j)^2$, where the sum is over all edges of the graph.
Usually, the actual eigenvector is some complicated mess that's hard to interpret from the point of view of classical graph theory. However, we can try to find nice and simple vectors that seem like they'd be pretty good at maximizing the quantity above, and get a lower bound for the largest eigenvalue.
In particular, if your goal is to prove that $\lambda_1 \ge \Delta+1$, it's reasonable to try to use the existence of a degree-$\Delta$ vertex to find some $\mathbf x$ such that $\frac{\mathbf x^{\mathsf T}L \mathbf x}{\mathbf x^{\mathsf T}\mathbf x} \ge \Delta+1$.
My first try was to set $x_i = 1$ for a single vertex of degree $\Delta$, and $x_j = 0$ for all $j \ne i$. You can check that this only tells us $\lambda_1 \ge \Delta$. Instead, setting $x_i = \Delta$, $x_j = -1$ for all $\Delta$ vertices $j$ adjacent to $i$, and $x_k=0$ for the rest works.
(Why should this second vector work better? Well, we've made it more eigenvector-like. All eigenvectors of $L$ are orthogonal, and one of them is the all-ones eigenvector $\mathbf 1$. So we improve $\mathbf x$ by making sure that all its entries add up to $0$: that $\mathbf x^{\mathsf T} \mathbf 1 = 0$.)
There's a second way to think about this problem, which is derived from the first. If $H$ is a subgraph of $G$, then $\lambda_1(H) \le \lambda_1(G)$.
(The argument here is that whatever the eigenvector $\mathbf x$ corresponding to $\lambda_1(H)$ is, it does at least as well at maximizing $\frac{\mathbf x^{\mathsf T}L_G \mathbf x}{\mathbf x^{\mathsf T}\mathbf x}$ as it did at maximizing $\frac{\mathbf x^{\mathsf T}L_H \mathbf x}{\mathbf x^{\mathsf T}\mathbf x}$. Pad $\mathbf x$ by zeroes first if $H$ was missing some vertices of $G$.)
Saying "$G$ has maximum degree at least $\Delta$" is equivalent to saying "$G$ has a subgraph isomorphic to $K_{1,\Delta}$". So if we can show that $\lambda_1(K_{1,\Delta}) \ge \Delta+1$, we immediately get that for all other graphs with maximum degree at least $\Delta$.