I'm trying to solve the next problem where given $A \in \mathbb{R}^{n \times n}$ symmetric positive definite I have to find the values for $\alpha \in \mathbb{R}$ such that this matrix:
$ B = \Big(\begin{matrix} A & -A\\ -A & \alpha A \end{matrix}\Big)$
Is positive definite. Also I notice that $B$ is symmetric, so I tried to find it's Cholesky's decomposition by block product, but I wasn't able to do so.
$$ \left( \begin{array}{rr} I & I \\ I & 0 \\ \end{array} \right) \left( \begin{array}{rr} A & -A \\ -A & \alpha A \\ \end{array} \right) \left( \begin{array}{rr} I & I \\ I & 0 \\ \end{array} \right) = \left( \begin{array}{cc} (\alpha-1)A & 0 \\ 0& A \\ \end{array} \right) $$