Skip to content

Commit a3acf41

Browse files
committed
commit
1 parent 61680b6 commit a3acf41

File tree

4 files changed

+124
-11
lines changed

4 files changed

+124
-11
lines changed
Lines changed: 59 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,59 @@
1+
{
2+
"cells": [
3+
{
4+
"cell_type": "markdown",
5+
"metadata": {},
6+
"source": [
7+
"Here are a few definitions and basic properties of matrices. \n",
8+
"\n",
9+
"Those who are not yet familiar with these terms can simply assume that the entries are real numbers.\n",
10+
"\n",
11+
"Let $R$ be a ring and $m$ and $n$ positive integers. Then an $m \\times n$ matrix over $R$ is an array of elements of $R$ with $m$ rows and $n$ columns. If our matrix is $A$ then we write $a_{i j}$ for the $(i, j)$ -entry of $A$; that is,\n",
12+
"$$\n",
13+
"A=\\left(\\begin{array}{cccc}\n",
14+
"a_{11} & a_{12} & \\cdots & a_{1 n} \\\\\n",
15+
"a_{21} & a_{22} & \\cdots & a_{2 n} \\\\\n",
16+
"\\vdots & \\vdots & \\ddots & \\vdots \\\\\n",
17+
"a_{m 1} & a_{m 2} & \\cdots & a_{m n}\n",
18+
"\\end{array}\\right)\n",
19+
"$$\n",
20+
"Example B.I. If we let\n",
21+
"$$\n",
22+
"A=\\left(\\begin{array}{lll}\n",
23+
"4 & 6 & 7 \\\\\n",
24+
"3 & 8 & 5\n",
25+
"\\end{array}\\right)\n",
26+
"$$\n",
27+
"then $A$ is a $2 \\times 3$ matrix over $\\mathbb{R}$. Furthermore, $a_{12}=6$ and $a_{21}=3$"
28+
]
29+
},
30+
{
31+
"cell_type": "code",
32+
"execution_count": null,
33+
"metadata": {},
34+
"outputs": [],
35+
"source": []
36+
}
37+
],
38+
"metadata": {
39+
"kernelspec": {
40+
"display_name": "Python 3",
41+
"language": "python",
42+
"name": "python3"
43+
},
44+
"language_info": {
45+
"codemirror_mode": {
46+
"name": "ipython",
47+
"version": 3
48+
},
49+
"file_extension": ".py",
50+
"mimetype": "text/x-python",
51+
"name": "python",
52+
"nbconvert_exporter": "python",
53+
"pygments_lexer": "ipython3",
54+
"version": "3.7.4"
55+
}
56+
},
57+
"nbformat": 4,
58+
"nbformat_minor": 2
59+
}
Lines changed: 54 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,54 @@
1+
{
2+
"cells": [
3+
{
4+
"cell_type": "markdown",
5+
"metadata": {},
6+
"source": [
7+
"A *set* is a collection of objects. We will see many sorts of sets throughout this notebook series. Perhaps the most common will be sets of numbers. For instance, we have the set of *natural numbers*\n",
8+
"\n",
9+
"$$\n",
10+
"\\mathbb{N}=\\{1,2,3, \\ldots\\}\n",
11+
",$$\n",
12+
"\n",
13+
"the set of *integers*,\n",
14+
"\n",
15+
"$$\n",
16+
"\\mathbb{Z}=\\{\\ldots,-2,-1,0,1,2, \\ldots\\}\n",
17+
"$$\n",
18+
"and the set of *rational numbers*\n",
19+
"\n",
20+
"$$\n",
21+
"\\mathbb{Q}=\\left\\{\\frac{a}{b}: a, b \\in \\mathbb{Z}, b \\neq 0\\right\\}\n",
22+
".$$"
23+
]
24+
},
25+
{
26+
"cell_type": "code",
27+
"execution_count": null,
28+
"metadata": {},
29+
"outputs": [],
30+
"source": []
31+
}
32+
],
33+
"metadata": {
34+
"kernelspec": {
35+
"display_name": "Python 3",
36+
"language": "python",
37+
"name": "python3"
38+
},
39+
"language_info": {
40+
"codemirror_mode": {
41+
"name": "ipython",
42+
"version": 3
43+
},
44+
"file_extension": ".py",
45+
"mimetype": "text/x-python",
46+
"name": "python",
47+
"nbconvert_exporter": "python",
48+
"pygments_lexer": "ipython3",
49+
"version": "3.7.4"
50+
}
51+
},
52+
"nbformat": 4,
53+
"nbformat_minor": 2
54+
}

Beginners_Guide_Math_LinAlg/Math/Eigenvalue Computation.ipynb

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@
5050
},
5151
{
5252
"cell_type": "code",
53-
"execution_count": 4,
53+
"execution_count": 3,
5454
"metadata": {},
5555
"outputs": [
5656
{
@@ -75,7 +75,7 @@
7575
},
7676
{
7777
"cell_type": "code",
78-
"execution_count": 5,
78+
"execution_count": 4,
7979
"metadata": {},
8080
"outputs": [
8181
{
@@ -96,7 +96,7 @@
9696
},
9797
{
9898
"cell_type": "code",
99-
"execution_count": 6,
99+
"execution_count": 5,
100100
"metadata": {},
101101
"outputs": [
102102
{
@@ -115,7 +115,7 @@
115115
},
116116
{
117117
"cell_type": "code",
118-
"execution_count": 7,
118+
"execution_count": 6,
119119
"metadata": {},
120120
"outputs": [],
121121
"source": [
@@ -164,7 +164,7 @@
164164
},
165165
{
166166
"cell_type": "code",
167-
"execution_count": 8,
167+
"execution_count": 7,
168168
"metadata": {},
169169
"outputs": [
170170
{
@@ -245,7 +245,7 @@
245245
},
246246
{
247247
"cell_type": "code",
248-
"execution_count": 9,
248+
"execution_count": 8,
249249
"metadata": {},
250250
"outputs": [
251251
{
@@ -254,8 +254,8 @@
254254
"text": [
255255
"[[ 2.23964345e+01 1.01162895e+00 -3.99289689e+00 -8.64584027e-01]\n",
256256
" [-9.53185822e-02 -1.31317710e+01 5.71184329e+00 1.95731776e+00]\n",
257-
" [ 4.56904318e-16 -2.49934586e-08 -1.67305884e+00 -7.92295866e-01]\n",
258-
" [ 1.34398419e-15 -5.60119902e-16 -2.75027919e-05 -5.91604624e-01]]\n"
257+
" [ 7.98356699e-17 -2.49934586e-08 -1.67305884e+00 -7.92295866e-01]\n",
258+
" [ 1.05756546e-15 -3.55793109e-16 -2.75027919e-05 -5.91604624e-01]]\n"
259259
]
260260
}
261261
],
@@ -265,7 +265,7 @@
265265
},
266266
{
267267
"cell_type": "code",
268-
"execution_count": 10,
268+
"execution_count": 9,
269269
"metadata": {},
270270
"outputs": [
271271
{
@@ -306,7 +306,7 @@
306306
"name": "python",
307307
"nbconvert_exporter": "python",
308308
"pygments_lexer": "ipython3",
309-
"version": "3.6.4"
309+
"version": "3.7.4"
310310
}
311311
},
312312
"nbformat": 4,

github/Practicing writing stuff I like -- ANN, Information-Theory, Capsules and more.ipynb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -130,7 +130,7 @@
130130
"name": "python",
131131
"nbconvert_exporter": "python",
132132
"pygments_lexer": "ipython3",
133-
"version": "3.6.1"
133+
"version": "3.7.4"
134134
}
135135
},
136136
"nbformat": 4,

0 commit comments

Comments
 (0)