%md
## Linear Algebra Review / re-Introduction
### by Ameet Talwalkar in BerkeleyX: CS190.1x Scalable Machine Learning
This is a `breeze`'y `scala`rific break-down of:
* Ameet's Linear Algebra Review in CS190.1x Scalable Machine Learning Course that is archived in edX from 2015 and
* **Home Work:** read this! [https://github.com/scalanlp/breeze/wiki/Quickstart](https://github.com/scalanlp/breeze/wiki/Quickstart)
Using the above resources we'll provide a review of basic linear algebra concepts that will recur throughout the course. These concepts include:
1. Matrices
* Vectors
* Arithmetic operations with vectors and matrices
We will see the accompanying Scala computations in the local or non-distributed setting.
Linear Algebra Review / re-Introduction
by Ameet Talwalkar in BerkeleyX: CS190.1x Scalable Machine Learning
This is a breeze
'y scala
rific break-down of:
- Ameet's Linear Algebra Review in CS190.1x Scalable Machine Learning Course that is archived in edX from 2015 and
- Home Work: read this! https://github.com/scalanlp/breeze/wiki/Quickstart
Using the above resources we'll provide a review of basic linear algebra concepts that will recur throughout the course. These concepts include:
- Matrices
- Vectors
- Arithmetic operations with vectors and matrices
We will see the accompanying Scala computations in the local or non-distributed setting.
%md
Let's get a quick visual geometric interpretation for vectors, matrices and matrix-vector multiplications, eigen systems with real and comples Eigen values **NOW** from the following interactive visual-cognitive aid at:
* [http://setosa.io/ev/eigenvectors-and-eigenvalues/](http://setosa.io/ev/eigenvectors-and-eigenvalues/) just focus on geometric interpretation of vectors and matrices in Cartesian coordinates.
Let's get a quick visual geometric interpretation for vectors, matrices and matrix-vector multiplications, eigen systems with real and comples Eigen values NOW from the following interactive visual-cognitive aid at:
- http://setosa.io/ev/eigenvectors-and-eigenvalues/ just focus on geometric interpretation of vectors and matrices in Cartesian coordinates.
%md
#### 1. Matrix: creation and element-access
A **matrix** is a two-dimensional array.
Let us denote matrices via bold uppercase letters as follows:
For instance, the matrix below is denoted with \\(\mathbf{A}\\), a capital bold A.
$$
\mathbf{A} = \begin{pmatrix}
a\_{11} & a\_{12} & a\_{13} \\\\
a\_{21} & a\_{22} & a\_{23} \\\\
a\_{31} & a\_{32} & a\_{33}
\end{pmatrix}
$$
We usually put commas between the row and column indexing sub-scripts, to make the possibly multi-digit indices distinguishable as follows:
$$
\mathbf{A} = \begin{pmatrix}
a\_{1,1} & a\_{1,2} & a\_{1,3} \\\\
a\_{2,1} & a\_{2,2} & a\_{2,3} \\\\
a\_{3,1} & a\_{3,2} & a\_{3,3}
\end{pmatrix}
$$
* \\( \mathbf{A}\_{i,j} \\) denotes the entry in \\(i\\)-th row and \\(j\\)-th column of the matrix \\(\mathbf{A}\\).
* So for instance,
* the first entry, the top left entry, is denoted by \\( \mathbf{A}\_{1,1} \\).
* And the entry in the third row and second column is denoted by \\( \mathbf{A}\_{3,2} \\).
* We say that a matrix with n rows and m columns is an \\(n\\) by \\(m\\) matrix and written as \\(n \times m \\)
* The matrix \\(\mathbf{A}\\) shown above is a generic \\(3 \times 3\\) (pronounced 3-by-3) matrix.
* And the matrix in Ameet's example in the video above, having 4 rows and 3 columns, is a 4 by 3 matrix.
* If a matrix \\(\mathbf{A}\\) is \\(n \times m \\), we write:
* \\(\mathbf{A} \in \mathbb{R}^{n \times m}\\) and say that \\(\mathbf{A}\\) is an \\(\mathbb{R}\\) to the power of the n times m,
* where, \\(\mathbb{R}\\) here denotes the set of all real numbers in the line given by the open interval: \\( (-\infty,+\infty)\\).
1. Matrix: creation and element-access
A matrix is a two-dimensional array.
Let us denote matrices via bold uppercase letters as follows:
For instance, the matrix below is denoted with A, a capital bold A.
A=⎝⎛a11a21a31a12a22a32a13a23a33⎠⎞
We usually put commas between the row and column indexing sub-scripts, to make the possibly multi-digit indices distinguishable as follows:
A=⎝⎛a1,1a2,1a3,1a1,2a2,2a3,2a1,3a2,3a3,3⎠⎞
- Ai,j denotes the entry in i-th row and j-th column of the matrix A.
- So for instance,
- the first entry, the top left entry, is denoted by A1,1.
- And the entry in the third row and second column is denoted by A3,2.
- We say that a matrix with n rows and m columns is an n by m matrix and written as n×m
- The matrix A shown above is a generic 3×3 (pronounced 3-by-3) matrix.
- And the matrix in Ameet's example in the video above, having 4 rows and 3 columns, is a 4 by 3 matrix.
- If a matrix A is n×m, we write:
- A∈Rn×m and say that A is an R to the power of the n times m,
- where, R here denotes the set of all real numbers in the line given by the open interval: (−∞,+∞).
- A∈Rn×m and say that A is an R to the power of the n times m,
%md
Let us created a matrix `A` as a `val` (that is immutable) in scala. The matrix we want to create is mathematically notated as follows:
$$
\mathbf{A} = \begin{pmatrix}
a\_{1,1} & a\_{1,2} & a\_{1,3} \\\\
a\_{2,1} & a\_{2,2} & a\_{2,3}
\end{pmatrix}
=
\begin{pmatrix}
1 & 2 & 3 \\\\
4 & 5 & 6
\end{pmatrix}
$$
Let us created a matrix A
as a val
(that is immutable) in scala. The matrix we want to create is mathematically notated as follows:
A=(a1,1a2,1a1,2a2,2a1,3a2,3)=(142536)
%md
Now, let's access the element \\(a_{1,1}\\), i.e., the element from the first row and first column of \\(\mathbf{A}\\), which in our `val A` matrix is the integer of type `Int` equalling `1`.
Now, let's access the element a1,1, i.e., the element from the first row and first column of A, which in our val A
matrix is the integer of type Int
equalling 1
.
ScaDaMaLe Course site and book