Let $\mathbf{A}\in\mathbb{R}^{N \times N}$ be symmetric positive definite. For some $1\leq k<N$, partition $$\mathbf{A}=\begin{pmatrix}\mathbf{A}_{11} & \mathbf{A}_{12} \\ \mathbf{A}_{12}^T & \mathbf{A}_{22}\end{pmatrix},$$ where $\mathbf{A}_{11}$ is $k\times k$ and $\mathbf{A}_{22}$ is $(N-k)\times (N-k)$.
Let $\mathbf{A}=\mathbf{L}\mathbf{L}^T$ be a Cholesky factorization, where $$\mathbf{L}=\begin{pmatrix}\mathbf{L}_{11} & \mathbf{0} \\ \mathbf{L}_{21} & \mathbf{L}_{22}\end{pmatrix}.$$ The $k\times k$ matrix $\mathbf{L}_{11}$ and the $(N-k)\times (N-k)$ matrix $\mathbf{L}_{22}$ are lower triangular.
Express the submatrices $\mathbf{L}_{ij}$ in terms of the submatrices $\mathbf{A}_{ij}$ and appropriate Cholesky factors.
I've been able to find that,
$$\mathbf{A}_{11} = \mathbf{L}_{11}\mathbf{L}_{11}^T$$ $$\mathbf{A}_{12} = \mathbf{L}_{11}\mathbf{L}_{21}^T$$ $$\mathbf{A}_{12}^T = \mathbf{L}_{21}\mathbf{L}_{11}^T$$ $$\mathbf{A}_{22} = \mathbf{L}_{21}\mathbf{L}_{21}^T + \mathbf{L}_{22}\mathbf{L}_{22}^T,$$
but I am unsure of how to solve for the $\mathbf{L}_{ij}$'s.
Does anyone have any ideas?