From 0e1fd08cf9b9271ab39a01abaf0689e2c6b7035e Mon Sep 17 00:00:00 2001 From: nessan Date: Mon, 26 Aug 2024 14:46:55 +0100 Subject: [PATCH] spelling --- docs/pages/gauss/solve.qmd | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/pages/gauss/solve.qmd b/docs/pages/gauss/solve.qmd index 13da150..31fe47b 100644 --- a/docs/pages/gauss/solve.qmd +++ b/docs/pages/gauss/solve.qmd @@ -18,7 +18,7 @@ If there is a problem, the return value will be a {std.nullopt}. This happens if the system of equations has no solution. It will also be the case if `A` is not square or if the size of `b` is not the same as the number of rows in `A`. -NOTE: We wan to get _one_ solution for a system of equations with very little fuss. \ +NOTE: We want to get _one_ solution for a system of equations with very little fuss. \ Over {f2}, any free variable can take on one of the values 0 and 1. Hence, if the system is consistent and has $f$ free variables, it will have $2^f$ possible solutions. So, a consistent system will have a unique solution only if $A$ has full-rank.