I am looking for a calculus solution of the following problem:
Problem. (Berkeley Qual Spring 1990):
Let $n$ br a positive integer, and let $A_n:= (a_{ij}) \in M_n(\mathbb{R})$ be a matrix given by $a_{ii} =2,\ a_{i,i+1} = -1,\ a_{ij} = 0$ otherwise. For instance,
$A_4 = \begin{pmatrix} 2 & -1 & 0 & 0\\ -1 & 2 & -1 &0 \\ 0 & -1 & 2 & -1\\ 0 & 0 & -1 & 2 \end{pmatrix} $
Prove that every eigenvalue of $A$ is a positive real number.
Here is the solution I am trying to complete.
We proceed by induction on $n$. Let $p_n(t) := \det(A_n-t Id)$, i.e. the characteristic polynomial of $A_n$. This satisfies the recursive rule $p_{n+2}(t) =(2-t)p_{n+1}(t) - p_n(t)$. It suffices to show that $p_n>0$ for all $t<0$.
The base case is easy. For the induction step, it is sufficient to prove the bound $|p_n(t)| \le (2-t)p_{n+1}(t)$ for $t<0$. How do can we prove this bound?
It's clear from $\deg p_n(t) = n$ that for $t \to - \infty$, the bound is satisfied, but this is not enough.
Note: my question is not a solution to the Problem above (see Note 2), but rather a solution using my particular approach (or a similar approach doing calculus on characteristic polynomials).
Note 2: I already know two solutions; one is to prove $A_n$ is positive definite, and another is to prove some bounds for entries of eigenvectors. See Problem 7.5.27 in Berkeley Problems in Mathematics. The point of my question is to solve the Problem in as many was as possible.