Given the Problem
$A x = b$
for some regular matrix $A \in \mathbb{R}^{n \times n}$ and $b\in\mathbb{R}^n$. One can compute $x$ with the Cholesky factorization in $O(n^3)$.
If $A$ is known to be a symmetric, positive (i.e. $A_{ij} >0$) and positive definite matrix, is it possible to solve $Ax = b$ faster than $O(n^3)$?