So I have a determinant of a matrix given to be (p_0 - λ)(p_1 - λ) - (1 - p_0)(1 - p_1) which I simplified to λ^2 - λp_0 - λp_1 + p_1 + p_0 - 1 Now I need to factor this equation to determine the eigenvalues. I factored to (λ + p_1)(λ - p_0)= 1 and then λ=p_0 and λ=-p_1 Does this look correct?
Edit: P_0 and p_1 are constants, $$ det(A)= \begin{bmatrix} p_{0} - \lambda & 1 - p_{1} \\ 1 - p_{0} & p_{1} - \lambda \end{bmatrix} $$
It looks like your Determinantal equation is $\left|\begin{array}[cc] pp_0-\lambda & 1-p_0\\1-p_1 & p_1-\lambda\end{array}\right|$. If so the charactersitic polynomial will be
$(p_0-\lambda)(p_1-\lambda)-(1-p_0)(1-p_1)$
and if you foil(first-outer-inner-last) both products and collect terms in powers of $\lambda$, you get
$p_0p_1-\lambda p_0-\lambda p_1+\lambda^2-1+p_1+p_0-p_0p_1$
Notice the cancellation of the $p_0p_1$ term. This gives
$\lambda^2-(p_0+p_1)\lambda+p_0+p_1-1$