diff --git a/code/linear-regression/src/Components/ClosedForm.svelte b/code/linear-regression/src/Components/ClosedForm.svelte index 89135d39..a54b19b9 100644 --- a/code/linear-regression/src/Components/ClosedForm.svelte +++ b/code/linear-regression/src/Components/ClosedForm.svelte @@ -36,10 +36,10 @@

A Closed-Form Solution
- We'd be remiss not to mention the Normal Equation, a widely taught (but rarely-used) - method for obtaining estimates for our linear regression coefficients. The Normal - Equation is a closed-form solution that allows us to estimate our coefficients - directly by minimizing the residual sum of squares (RSS) of our data: + We'd be remiss not to mention the Normal Equation, a widely taught method for + obtaining estimates for our linear regression coefficients. The Normal Equation + is a closed-form solution that allows us to estimate our coefficients directly + by minimizing the residual sum of squares (RSS) of our data: {@html katexify( `\\begin{aligned} RSS = \\sum^{n}_{i=1}(y_i - \\hat{y_i})^2 \\end{aligned}`, true