Skip to content

Commit f4e4a03

Browse files
author
StephenElston
committed
Fixed typos
1 parent 470a82e commit f4e4a03

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

Module03/03-05-Transformations Eigenvectors and Eigenvalues.ipynb

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1224,7 +1224,7 @@
12241224
"\n",
12251225
"So our eigenvalue-eigenvector scalar multiplications do indeed correspond to our matrix-eigenvector dot-product transformations.\n",
12261226
"\n",
1227-
"Here's the equivalent code in Python, using the ***eVals*** and ***eVecs*** variables you generated in the previous code cell:"
1227+
"Here's the equivalent code in R using the previous results:"
12281228
]
12291229
},
12301230
{
@@ -1716,7 +1716,7 @@
17161716
"$$ 2 \\times \\begin{bmatrix}-1 \\\\ 0\\end{bmatrix} = \\begin{bmatrix}-2 \\\\ 0\\end{bmatrix} \\;\\;\\;and\\;\\;\\; \\begin{bmatrix}2 & 0\\\\0 & 2\\end{bmatrix} \\cdot \\begin{bmatrix}-1 \\\\ 0\\end{bmatrix} = \\begin{bmatrix}-2 \\\\ 0\\end{bmatrix} $$\n",
17171717
"\n",
17181718
"\n",
1719-
"Now let's use Pythonto verify and plot these transformations:"
1719+
"Now let's use R to verify and plot these transformations:"
17201720
]
17211721
},
17221722
{
@@ -2186,7 +2186,7 @@
21862186
"\n",
21872187
"$$ 1 \\times \\begin{bmatrix}-0.70710678 \\\\ 0.70710678\\end{bmatrix} = \\begin{bmatrix}-0.70710678\\\\0.70710678\\end{bmatrix} \\;\\;\\;and\\;\\;\\; \\begin{bmatrix}2 & 1\\\\1 & 2\\end{bmatrix} \\cdot \\begin{bmatrix}-0.70710678 \\\\ 0.70710678\\end{bmatrix} = \\begin{bmatrix}-0.70710678\\\\0.70710678\\end{bmatrix} $$\n",
21882188
"\n",
2189-
"With more complex examples like this, it's generally easier to do it with Python:"
2189+
"With more complex examples like this, it's generally easier to use a tool like R:"
21902190
]
21912191
},
21922192
{
@@ -2542,7 +2542,7 @@
25422542
"\n",
25432543
"$$A=\\begin{bmatrix}3 & 2\\\\1 & 0\\end{bmatrix}$$\n",
25442544
"\n",
2545-
"***Q*** is a matrix in which each column is an eigenvector of ***A***; which as we've seen previously, we can calculate using Python:"
2545+
"***Q*** is a matrix in which each column is an eigenvector of ***A***; which as we've seen previously, we can calculate using R:"
25462546
]
25472547
},
25482548
{
@@ -3352,7 +3352,7 @@
33523352
"\n",
33533353
"$$A^{-1}=\\begin{bmatrix}-0.4472136 & -0.70710678 \\\\-0.89442719 & 0.70710678 \\end{bmatrix}\\cdot\\begin{bmatrix}0.2 & 0\\\\0 & -1\\end{bmatrix}\\cdot\\begin{bmatrix}-0.74535599 & 0.47140452\\\\-0.94280904 & -0.74535599\\end{bmatrix}$$\n",
33543354
"\n",
3355-
"Let's calculate that in Python:"
3355+
"Let's calculate that with R:"
33563356
]
33573357
},
33583358
{
@@ -3455,7 +3455,7 @@
34553455
"cell_type": "markdown",
34563456
"metadata": {},
34573457
"source": [
3458-
"Which is the orriginal matrix A. \n",
3458+
"Which is the original matrix A. \n",
34593459
"\n",
34603460
"You can also use R verify that:\n",
34613461
"\n",

0 commit comments

Comments
 (0)