[step:Construct the Cholesky factor from positive leading minors by induction on dimension]$(3) \Rightarrow (4)$: Suppose all leading principal minors $\det A_k > 0$ for $k = 1, \dots, n$. We construct a lower triangular matrix $L \in \mathbb{R}^{n \times n}$ with strictly positive diagonal entries such that $A = L L^\top$ by induction on $n$.
**Base case** ($n = 1$): $A = (a_{11})$ with $\det A_1 = a_{11} > 0$. Set $L = (\sqrt{a_{11}})$. Then $L L^\top = a_{11} = A$ and the diagonal entry $\sqrt{a_{11}} > 0$.
**Inductive step**: Assume the result holds for $(n-1) \times (n-1)$ symmetric matrices with positive leading principal minors. Write $A$ in block form:
\begin{align*}
A = \begin{pmatrix} A_{n-1} & b \\ b^\top & a_{nn} \end{pmatrix},
\end{align*}
where $A_{n-1} \in \mathbb{R}^{(n-1) \times (n-1)}$ is the leading principal submatrix, $b \in \mathbb{R}^{n-1}$, and $a_{nn} \in \mathbb{R}$. The leading principal minors of $A_{n-1}$ are $\det A_1, \dots, \det A_{n-1}$, all positive by hypothesis. By the inductive hypothesis, there exists a unique lower triangular $L_{n-1} \in \mathbb{R}^{(n-1) \times (n-1)}$ with strictly positive diagonal entries such that $A_{n-1} = L_{n-1} L_{n-1}^\top$.
We seek $L$ in the form
\begin{align*}
L = \begin{pmatrix} L_{n-1} & 0 \\ w^\top & \ell_{nn} \end{pmatrix},
\end{align*}
where $w \in \mathbb{R}^{n-1}$ and $\ell_{nn} > 0$. The equation $A = L L^\top$ yields the system:
\begin{align*}
A_{n-1} &= L_{n-1} L_{n-1}^\top, \\
b &= L_{n-1} w, \\
a_{nn} &= |w|^2 + \ell_{nn}^2.
\end{align*}
The first equation is satisfied by construction. Since $L_{n-1}$ is lower triangular with positive diagonal entries, it is invertible, so $w = L_{n-1}^{-1} b$ is uniquely determined. For the third equation, we need $a_{nn} - |w|^2 > 0$. Observe that
\begin{align*}
\det A = \det \begin{pmatrix} A_{n-1} & b \\ b^\top & a_{nn} \end{pmatrix} = \det(A_{n-1}) \cdot (a_{nn} - b^\top A_{n-1}^{-1} b),
\end{align*}
where the second equality follows from expanding the determinant along the last row: subtracting $b^\top A_{n-1}^{-1}$ times the first $n-1$ rows from the last row eliminates the off-diagonal entry $b^\top$, leaving $\det(A_{n-1}) \cdot (a_{nn} - b^\top A_{n-1}^{-1} b)$. Since $A_{n-1}^{-1} = (L_{n-1} L_{n-1}^\top)^{-1} = L_{n-1}^{-\top} L_{n-1}^{-1}$, we have
\begin{align*}
b^\top A_{n-1}^{-1} b = b^\top L_{n-1}^{-\top} L_{n-1}^{-1} b = |L_{n-1}^{-1} b|^2 = |w|^2.
\end{align*}
Therefore $a_{nn} - |w|^2 = \det A / \det A_{n-1} > 0$, since both $\det A > 0$ and $\det A_{n-1} > 0$ by hypothesis. We set $\ell_{nn} = \sqrt{a_{nn} - |w|^2} > 0$, completing the construction.
**Uniqueness**: Suppose $A = L L^\top = \tilde{L} \tilde{L}^\top$ with both $L, \tilde{L}$ lower triangular with positive diagonal entries. The block structure of the inductive construction shows that $L_{n-1}$ is uniquely determined by the inductive hypothesis, $w = L_{n-1}^{-1} b$ is then uniquely determined, and $\ell_{nn} = \sqrt{a_{nn} - |w|^2}$ is uniquely determined (taking the positive root). By induction, $L$ is unique.[/step]