Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

two spelling typos corrected #6

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions Module_1a_linear_algebra_inverse.ipynb
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@
"metadata": {},
"source": [
"## Row-wise / Lines (2 x 2)\n",
"Let us solve this the traditional way by thinking of them as row wise and solving it. We can plot each of these queations and see where they intersect.\n",
"Let us solve this the traditional way by thinking of them as row wise and solving it. We can plot each of these equations and see where they intersect.\n",
"\n",
"$$ x + 3y = 15 ~~~~ \\textit{(row 1) }$$\n",
"$$ 2x - y = 2 ~~~~ \\textit{(row 2) }$$"
Expand Down Expand Up @@ -321,7 +321,7 @@
"Now we can solve this using elimination as we did earlier in the algebraic formulation\n",
"\n",
"### E<sub>1</sub> elimination\n",
"To remove `x` from the second equation matrix, we write our first slimination matrix\n",
"To remove `x` from the second equation matrix, we write our first elimination matrix\n",
"\n",
"$$ E_{1} = \\begin{bmatrix}1 & 0\\\\ -2 & 1\\end{bmatrix} $$\n",
"\n",
Expand Down