1.10 Vectors and Matrices

What are they and why to we care about them ?

Vectors

What are they ?

(c) One Fourth Labs

- Start with simple x1, x2 axis (not x, y).

- Show a point in this 2-d plane.

- Now show an arrow from the origin to this point

- Now repeat the above for a few more points (such that one of these vectors is shorter than the first and the other is longer)

- Now in pink bubble write two bullet points: "Magnitude of a vector" and "Direction of a vector"

- Show formula for L2 norm (magnitude of the vector) and compute the magnitude of these vectors

- Now show two points in the x1,x2, plane (1,1) and (-1,1) and compute the magnitude (you can delete the other points). Both these points will be

Guiding principle for this entire lecture:

 

Many students in the course may be hearing the word "vector" for the first time. So we have to be very slow and methodically compute everything (even something as simple as L2 norm)

 

Vectors

What are they ? (some jargon)

(c) One Fourth Labs

- On RHS, write the definition if Euclidean space in a pink bubble

- On LHS top  show a 2D Euclidean space with some points and their co-ordinates written

- On LHS bottom first show a 3D Euclidean space with some points and their co-ordinates written

- Now in pink bubble add L2 norm is also called Euclidean norm

Euclidean space, In geometry, a two- or three-dimensionalspace in which the axioms and postulates of Euclideangeometry apply; also, a space in any finite number of dimensions, in which points are designated by coordinates (one for each dimension) and the distance between two points is given by a distance formula

Vectors

How do you add, subtract, multiply vectors ?

(c) One Fourth Labs

Slide 1 (How do you add two vectors?)

- On LHS top  show a 2D Euclidean space with two points and their co-ordinates written. On LHS write them as column vectors. Now add them and write the result. Now show the resulting vector on the Plot

- Repeat the above for 3d space

 

Slide 2 (How do you subtract one vector from another?)

- Repeat the above slide for subtraction

 

Slide 3 (How do you compute the dot product of two vectors?)

- LHS same as in the above two slides

- on RHS show the dot product formula for 2d and also show the column vectors

- Now show the formula in 3d and also show the column vectors

- For n-dimensions, show the formula

Slide 4 (How do you compute element-wise product of two vectors?)

- 2d, show formula \( \odot \), compute

- 3d, show formula \( \odot \), compute

- n-d, show formula

Vectors

How do you project a vector onto another ?

(c) One Fourth Labs

Slide1:

- Same as this video upto 4:09 seconds (but change the vectors a bit

https://www.youtube.com/watch?v=fqPiDICPkj8

- Now take a numeric example in 2d and compute

 

- Now take a numeric example in 3d and compute

 

- Now give formula for n-dimensions

Vectors

What is a unit vector ?

(c) One Fourth Labs

Slide1:

- Pink bubble "Any vector whose magnitude is 1?"

- Show the standard 0,1 and 1,0 vectors

- Show the 1/sqrt(2), 1/sqrt(2)  vector

- Now show a non unit vector

- Now show how you get the unit vector in the direction of a vector

- repeat the same computation for one more vector (preferably with at least one -ve co-ordinate) 

- Repeat the same for 3d space

Vectors

How do you compute the angle between two vectors ?

(c) One Fourth Labs

 

- 2d vector on LHS, cos formula on RHS, computations

- 3d vector on LHS, cos formula on RHS, computations

Vectors

What are orthogonal vectors?

(c) One Fourth Labs

 

Show cos formula on RHS

- Orthogonal --> perpendicular --> \theta = 90 --> cos = 0 --> cosine_formula = 0 --> dot product = 0

 

- Show examples of 2d orthogonal vectors. First show column vectors, then compute dot product, show it is 0, then show the vectors on the plot to convey that they are indeed 0.

 

- Repeat point 2 with examples in 3d

 

- Now show one example in 5d (its okay if you need to spread this across more than 1 slide)

Vectors

Why do we care about them ?

(c) One Fourth Labs

- Show an icon of a mobile phone. Now adjacent to this icons show one row containing specs of this phone (the idea is to show that all data that we encounter can be viewed as vectors) - the black boxes will be replaced by icons

- Show an icon of a customer. Now adjacent to this icon show one row containing details of this customer

 

- Show an icon of an MNIST digit and then show a vector 

 

in each of the above case mention the dimension of the vector as R^?

Matrices

What are they ?

(c) One Fourth Labs

\begin{bmatrix} 1 \\ 2 \\ 3 \end{bmatrix}
[123]\begin{bmatrix} 1 \\ 2 \\ 3 \end{bmatrix}
\begin{bmatrix} 1 & 4\\ 2 & 5\\ 3 & 6 \end{bmatrix}
[142536]\begin{bmatrix} 1 & 4\\ 2 & 5\\ 3 & 6 \end{bmatrix}
\begin{bmatrix} 1 & 4 & 7\\ 2 & 5 & 8\\ 3 & 6 & 9 \end{bmatrix}
[147258369]\begin{bmatrix} 1 & 4 & 7\\ 2 & 5 & 8\\ 3 & 6 & 9 \end{bmatrix}

column vector

row vector

Matrices

How do you add two matrices ?

(c) One Fourth Labs

\begin{bmatrix} 1 & 4 & 7 \\ 2 & 5 & 8 \\ 3 & 6 & 9 \end{bmatrix}
[147258369]\begin{bmatrix} 1 & 4 & 7 \\ 2 & 5 & 8 \\ 3 & 6 & 9 \end{bmatrix}
\begin{bmatrix} 1 & 2 & 3 \\ 4 & 5 & 6 \\ 7 & 8 & 9 \end{bmatrix}
[123456789]\begin{bmatrix} 1 & 2 & 3 \\ 4 & 5 & 6 \\ 7 & 8 & 9 \end{bmatrix}
\begin{bmatrix} ? & ? & ? \\ ? & ? & ? \\ ? & ? & ? \end{bmatrix}
[?????????]\begin{bmatrix} ? & ? & ? \\ ? & ? & ? \\ ? & ? & ? \end{bmatrix}
+
++
=
==
\begin{bmatrix} 1+1 & ? & ? \\ ? & ? & ? \\ ? & ? & ? \end{bmatrix}
[1+1????????]\begin{bmatrix} 1+1 & ? & ? \\ ? & ? & ? \\ ? & ? & ? \end{bmatrix}
\begin{bmatrix} 2 & ? & ? \\ ? & ? & ? \\ ? & ? & ? \end{bmatrix}
[2????????]\begin{bmatrix} 2 & ? & ? \\ ? & ? & ? \\ ? & ? & ? \end{bmatrix}
\begin{bmatrix} 2 & 4+2 & ? \\ ? & ? & ? \\ ? & ? & ? \end{bmatrix}
[24+2???????]\begin{bmatrix} 2 & 4+2 & ? \\ ? & ? & ? \\ ? & ? & ? \end{bmatrix}
\begin{bmatrix} 2 & 6 & ? \\ ? & ? & ? \\ ? & ? & ? \end{bmatrix}
[26???????]\begin{bmatrix} 2 & 6 & ? \\ ? & ? & ? \\ ? & ? & ? \end{bmatrix}
\begin{bmatrix} 2 & 6 & 10 \\ ? & ? & ? \\ ? & ? & ? \end{bmatrix}
[2610??????]\begin{bmatrix} 2 & 6 & 10 \\ ? & ? & ? \\ ? & ? & ? \end{bmatrix}
\begin{bmatrix} 2 & 6 & 10 \\ 6 & 10 & 14 \\ 10 & 14 & 18 \end{bmatrix}
[261061014101418]\begin{bmatrix} 2 & 6 & 10 \\ 6 & 10 & 14 \\ 10 & 14 & 18 \end{bmatrix}
\begin{bmatrix} ? & ? & ? \\ ? & ? & ? \\ ? & ? & ? \end{bmatrix}
[?????????]\begin{bmatrix} ? & ? & ? \\ ? & ? & ? \\ ? & ? & ? \end{bmatrix}
\begin{bmatrix} 2 & ? & ? \\ ? & ? & ? \\ ? & ? & ? \end{bmatrix}
[2????????]\begin{bmatrix} 2 & ? & ? \\ ? & ? & ? \\ ? & ? & ? \end{bmatrix}
\begin{bmatrix} 2 & 6 & ? \\ ? & ? & ? \\ ? & ? & ? \end{bmatrix}
[26???????]\begin{bmatrix} 2 & 6 & ? \\ ? & ? & ? \\ ? & ? & ? \end{bmatrix}
\begin{bmatrix} 2 & 6 & 7+3 \\ ? & ? & ? \\ ? & ? & ? \end{bmatrix}
[267+3??????]\begin{bmatrix} 2 & 6 & 7+3 \\ ? & ? & ? \\ ? & ? & ? \end{bmatrix}

Matrices

How do you multiply a matrix with a vector ?

(c) One Fourth Labs

\begin{bmatrix} 1 & 3 \\ 2 & 4 \end{bmatrix}
[1324]\begin{bmatrix} 1 & 3 \\ 2 & 4 \end{bmatrix}
\begin{bmatrix} 5 \\ 6 \end{bmatrix}
[56]\begin{bmatrix} 5 \\ 6 \end{bmatrix}
\times
×\times
\begin{bmatrix} ? \\ ? \end{bmatrix}
[??]\begin{bmatrix} ? \\ ? \end{bmatrix}
=
==
\begin{bmatrix} ? \\ ? \end{bmatrix}
[??]\begin{bmatrix} ? \\ ? \end{bmatrix}
\begin{bmatrix} ? \\ ? \end{bmatrix}
[??]\begin{bmatrix} ? \\ ? \end{bmatrix}
\begin{bmatrix} (1 \times 5) + \\ ? \end{bmatrix}
[(1×5)+?]\begin{bmatrix} (1 \times 5) + \\ ? \end{bmatrix}
\begin{bmatrix} (1 \times 5) + (3 \times 6) \\ ? \end{bmatrix}
[(1×5)+(3×6)?]\begin{bmatrix} (1 \times 5) + (3 \times 6) \\ ? \end{bmatrix}
\begin{bmatrix} 5 + 18 \\ ? \end{bmatrix}
[5+18?]\begin{bmatrix} 5 + 18 \\ ? \end{bmatrix}
\begin{bmatrix} 23 \\ ? \end{bmatrix}
[23?]\begin{bmatrix} 23 \\ ? \end{bmatrix}
\begin{bmatrix} 23 \\ (2 \times 5) + \end{bmatrix}
[23(2×5)+]\begin{bmatrix} 23 \\ (2 \times 5) + \end{bmatrix}
\begin{bmatrix} 23 \\ (2 \times 5) + (4 \times 6) \end{bmatrix}
[23(2×5)+(4×6)]\begin{bmatrix} 23 \\ (2 \times 5) + (4 \times 6) \end{bmatrix}
\begin{bmatrix} 23 \\ 10 + 24 \end{bmatrix}
[2310+24]\begin{bmatrix} 23 \\ 10 + 24 \end{bmatrix}
\begin{bmatrix} 23 \\ 34 \end{bmatrix}
[2334]\begin{bmatrix} 23 \\ 34 \end{bmatrix}
\begin{bmatrix} (1 \times 5) + \\ ? \end{bmatrix}
[(1×5)+?]\begin{bmatrix} (1 \times 5) + \\ ? \end{bmatrix}
\begin{bmatrix} 23 \\ ? \end{bmatrix}
[23?]\begin{bmatrix} 23 \\ ? \end{bmatrix}
\begin{bmatrix} 23 \\ (2 \times 5) + \end{bmatrix}
[23(2×5)+]\begin{bmatrix} 23 \\ (2 \times 5) + \end{bmatrix}

Matrices

How do you multiply a matrix with a vector ?

(c) One Fourth Labs

  • What happens when a matrix hits a vector?
  • The vector gets transformed into a new vector (it strays from its path).
  • The vector may also get scaled (elongated or shortened) in the process.
v = \begin{bmatrix} 5 \\ 6 \\ \end{bmatrix}
v=[56]v = \begin{bmatrix} 5 \\ 6 \\ \end{bmatrix}
M = \begin{bmatrix} 1 & 3 \\ 2 & 4 \\ \end{bmatrix}
M=[1324]M = \begin{bmatrix} 1 & 3 \\ 2 & 4 \\ \end{bmatrix}
Mv = \begin{bmatrix} 23 \\ 34 \\ \end{bmatrix}
Mv=[2334]Mv = \begin{bmatrix} 23 \\ 34 \\ \end{bmatrix}
M = \begin{bmatrix} 1 & 3 \\ 2 & 4 \\ \end{bmatrix}
M=[1324]M = \begin{bmatrix} 1 & 3 \\ 2 & 4 \\ \end{bmatrix}
v = \begin{bmatrix} 5 \\ 6 \\ \end{bmatrix}
v=[56]v = \begin{bmatrix} 5 \\ 6 \\ \end{bmatrix}

Matrices

How do you multiply a matrix with a vector ?

(c) One Fourth Labs

\begin{bmatrix} 1 & 0 & 3 \\ 3 & 1 & 1 \\ 0 & 2 & 5 \end{bmatrix}
[103311025]\begin{bmatrix} 1 & 0 & 3 \\ 3 & 1 & 1 \\ 0 & 2 & 5 \end{bmatrix}
\begin{bmatrix} 1 \\ 6 \\ 5 \end{bmatrix}
[165]\begin{bmatrix} 1 \\ 6 \\ 5 \end{bmatrix}
\begin{bmatrix} ? \\ ? \\ ? \end{bmatrix}
[???]\begin{bmatrix} ? \\ ? \\ ? \end{bmatrix}
\times
×\times
=
==
\begin{bmatrix} ? \\ ? \\ ? \end{bmatrix}
[???]\begin{bmatrix} ? \\ ? \\ ? \end{bmatrix}
\begin{bmatrix} (1 \times 1) + \\ ? \\ ? \end{bmatrix}
[(1×1)+??]\begin{bmatrix} (1 \times 1) + \\ ? \\ ? \end{bmatrix}
\begin{bmatrix} ? \\ ? \\ ? \end{bmatrix}
[???]\begin{bmatrix} ? \\ ? \\ ? \end{bmatrix}
\begin{bmatrix} 1 + (0 \times 6) + \\ ? \\ ? \end{bmatrix}
[1+(0×6)+??]\begin{bmatrix} 1 + (0 \times 6) + \\ ? \\ ? \end{bmatrix}
\begin{bmatrix} 1 + \\ ? \\ ? \end{bmatrix}
[1+??]\begin{bmatrix} 1 + \\ ? \\ ? \end{bmatrix}
\begin{bmatrix} 1 + 0 + \\ ? \\ ? \end{bmatrix}
[1+0+??]\begin{bmatrix} 1 + 0 + \\ ? \\ ? \end{bmatrix}
\begin{bmatrix} 1 + 0 + (3 \times 5)\\ ? \\ ? \end{bmatrix}
[1+0+(3×5)??]\begin{bmatrix} 1 + 0 + (3 \times 5)\\ ? \\ ? \end{bmatrix}
\begin{bmatrix} 16 \\ ? \\ ? \end{bmatrix}
[16??]\begin{bmatrix} 16 \\ ? \\ ? \end{bmatrix}
\begin{bmatrix} 16 \\ ? \\ ? \end{bmatrix}
[16??]\begin{bmatrix} 16 \\ ? \\ ? \end{bmatrix}
\begin{bmatrix} 16\\ (3 \times 1) + \\ ? \end{bmatrix}
[16(3×1)+?]\begin{bmatrix} 16\\ (3 \times 1) + \\ ? \end{bmatrix}
\begin{bmatrix} 16\\ 3 + \\ ? \end{bmatrix}
[163+?]\begin{bmatrix} 16\\ 3 + \\ ? \end{bmatrix}
\begin{bmatrix} 16\\ 3 + (1 \times 6) + \\ ? \end{bmatrix}
[163+(1×6)+?]\begin{bmatrix} 16\\ 3 + (1 \times 6) + \\ ? \end{bmatrix}
\begin{bmatrix} 16\\ 3 + 6 +\\ ? \end{bmatrix}
[163+6+?]\begin{bmatrix} 16\\ 3 + 6 +\\ ? \end{bmatrix}
\begin{bmatrix} 16\\ 3 + 6 + (1 \times 5) \\ ? \end{bmatrix}
[163+6+(1×5)?]\begin{bmatrix} 16\\ 3 + 6 + (1 \times 5) \\ ? \end{bmatrix}
\begin{bmatrix} 16\\ 14\\ ? \end{bmatrix}
[1614?]\begin{bmatrix} 16\\ 14\\ ? \end{bmatrix}
\begin{bmatrix} 16\\ 14\\ ? \end{bmatrix}
[1614?]\begin{bmatrix} 16\\ 14\\ ? \end{bmatrix}
\begin{bmatrix} 16\\ 14 \\ (0 \times 1) + \end{bmatrix}
[1614(0×1)+]\begin{bmatrix} 16\\ 14 \\ (0 \times 1) + \end{bmatrix}
\begin{bmatrix} 16\\ 14\\ 0+ \end{bmatrix}
[16140+]\begin{bmatrix} 16\\ 14\\ 0+ \end{bmatrix}
\begin{bmatrix} 16\\ 14\\ 0 + 12 + \end{bmatrix}
[16140+12+]\begin{bmatrix} 16\\ 14\\ 0 + 12 + \end{bmatrix}
\begin{bmatrix} 16\\ 14 \\ 0 + (2 \times 6) + \end{bmatrix}
[16140+(2×6)+]\begin{bmatrix} 16\\ 14 \\ 0 + (2 \times 6) + \end{bmatrix}
\begin{bmatrix} 16\\ 14 \\ 0 + 12 + (5 \times 5) \end{bmatrix}
[16140+12+(5×5)]\begin{bmatrix} 16\\ 14 \\ 0 + 12 + (5 \times 5) \end{bmatrix}
\begin{bmatrix} 16\\ 14\\ 0 + 12 + 25 \end{bmatrix}
[16140+12+25]\begin{bmatrix} 16\\ 14\\ 0 + 12 + 25 \end{bmatrix}
\begin{bmatrix} 16 \\ 14 \\ 37 \end{bmatrix}
[161437]\begin{bmatrix} 16 \\ 14 \\ 37 \end{bmatrix}

Matrices

How do you multiply a matrix with a vector ?

(c) One Fourth Labs

Mv = \begin{bmatrix} 16 \\ 14 \\ 37 \end{bmatrix}
Mv=[161437]Mv = \begin{bmatrix} 16 \\ 14 \\ 37 \end{bmatrix}
M = \begin{bmatrix} 1 & 0 & 3\\ 3 & 1 & 1\\ 0 & 2 & 5\\ \end{bmatrix}
M=[103311025]M = \begin{bmatrix} 1 & 0 & 3\\ 3 & 1 & 1\\ 0 & 2 & 5\\ \end{bmatrix}
v = \begin{bmatrix} 1 \\ 6 \\ 5 \end{bmatrix}
v=[165]v = \begin{bmatrix} 1 \\ 6 \\ 5 \end{bmatrix}

Similarly, in a 3D space, when a vector is hit by a matrix, it gets transformed into a new vector.

Matrices

How do you multiply a matrix with a vector ?

(c) One Fourth Labs

\begin{bmatrix} 1 & 0 & 3 \\ 3 & 1 & 1 \\ 0 & 2 & 5 \end{bmatrix}
[103311025]\begin{bmatrix} 1 & 0 & 3 \\ 3 & 1 & 1 \\ 0 & 2 & 5 \end{bmatrix}
\begin{bmatrix} 7 \\ 1 \end{bmatrix}
[71]\begin{bmatrix} 7 \\ 1 \end{bmatrix}
\times
×\times
=
==
\begin{bmatrix} ? \\ ? \\ ? \end{bmatrix}
[???]\begin{bmatrix} ? \\ ? \\ ? \end{bmatrix}
\begin{bmatrix} ? \\ ? \\ ? \end{bmatrix}
[???]\begin{bmatrix} ? \\ ? \\ ? \end{bmatrix}
\begin{bmatrix} ? \\ ? \\ ? \end{bmatrix}
[???]\begin{bmatrix} ? \\ ? \\ ? \end{bmatrix}
\begin{bmatrix} (1 \times 7) + \\ ? \\ ? \end{bmatrix}
[(1×7)+??]\begin{bmatrix} (1 \times 7) + \\ ? \\ ? \end{bmatrix}
\begin{bmatrix} 7 + (0 \times 1) + \\ ? \\ ? \end{bmatrix}
[7+(0×1)+??]\begin{bmatrix} 7 + (0 \times 1) + \\ ? \\ ? \end{bmatrix}
\begin{bmatrix} 7 + \\ ? \\ ? \end{bmatrix}
[7+??]\begin{bmatrix} 7 + \\ ? \\ ? \end{bmatrix}

?

\begin{bmatrix} 7 + 0 + \\ ? \\ ? \end{bmatrix}
[7+0+??]\begin{bmatrix} 7 + 0 + \\ ? \\ ? \end{bmatrix}
\begin{bmatrix} 7 + 0 + (3 \times ?)\\ ? \\ ? \end{bmatrix}
[7+0+(3×?)??]\begin{bmatrix} 7 + 0 + (3 \times ?)\\ ? \\ ? \end{bmatrix}
\begin{bmatrix} 7 + 0 + (3 \times ?)\\ ? \\ ? \end{bmatrix}
[7+0+(3×?)??]\begin{bmatrix} 7 + 0 + (3 \times ?)\\ ? \\ ? \end{bmatrix}

illegal operation

Matrices

How do you multiply a matrix with a vector ?

(c) One Fourth Labs

\begin{bmatrix} 1 & 0 & 3 \\ 3 & 1 & 1 \end{bmatrix}
[103311]\begin{bmatrix} 1 & 0 & 3 \\ 3 & 1 & 1 \end{bmatrix}
\begin{bmatrix} 7 \\ 1 \\ 2 \end{bmatrix}
[712]\begin{bmatrix} 7 \\ 1 \\ 2 \end{bmatrix}
\times
×\times
=
==
\begin{bmatrix} ? \\ ? \end{bmatrix}
[??]\begin{bmatrix} ? \\ ? \end{bmatrix}
\begin{bmatrix} ? \\ ? \end{bmatrix}
[??]\begin{bmatrix} ? \\ ? \end{bmatrix}
\begin{bmatrix} ? \\ ? \end{bmatrix}
[??]\begin{bmatrix} ? \\ ? \end{bmatrix}
\begin{bmatrix} (1 \times 7) + \\ ? \end{bmatrix}
[(1×7)+?]\begin{bmatrix} (1 \times 7) + \\ ? \end{bmatrix}
\begin{bmatrix} 7 + (0 \times 1) + \\ ? \end{bmatrix}
[7+(0×1)+?]\begin{bmatrix} 7 + (0 \times 1) + \\ ? \end{bmatrix}
\begin{bmatrix} 7 + \\ ? \end{bmatrix}
[7+?]\begin{bmatrix} 7 + \\ ? \end{bmatrix}
\begin{bmatrix} 7 + 0 + \\ ? \end{bmatrix}
[7+0+?]\begin{bmatrix} 7 + 0 + \\ ? \end{bmatrix}
\begin{bmatrix} 7 + 0 + (3 \times 2)\\ ? \end{bmatrix}
[7+0+(3×2)?]\begin{bmatrix} 7 + 0 + (3 \times 2)\\ ? \end{bmatrix}
\begin{bmatrix} 13 \\ ? \end{bmatrix}
[13?]\begin{bmatrix} 13 \\ ? \end{bmatrix}
\begin{bmatrix} 13 \\ ? \end{bmatrix}
[13?]\begin{bmatrix} 13 \\ ? \end{bmatrix}
\begin{bmatrix} 13 \\ (3 \times 7) + \end{bmatrix}
[13(3×7)+]\begin{bmatrix} 13 \\ (3 \times 7) + \end{bmatrix}
\begin{bmatrix} 13 \\ 21 + \end{bmatrix}
[1321+]\begin{bmatrix} 13 \\ 21 + \end{bmatrix}
\begin{bmatrix} 13 \\ 21 + (1 \times 1) + \end{bmatrix}
[1321+(1×1)+]\begin{bmatrix} 13 \\ 21 + (1 \times 1) + \end{bmatrix}
\begin{bmatrix} 13 \\ 21 + 1 + \end{bmatrix}
[1321+1+]\begin{bmatrix} 13 \\ 21 + 1 + \end{bmatrix}
\begin{bmatrix} 13 \\ 21 + 1 + (1 \times 2) \end{bmatrix}
[1321+1+(1×2)]\begin{bmatrix} 13 \\ 21 + 1 + (1 \times 2) \end{bmatrix}
\begin{bmatrix} 13 \\ 24 \end{bmatrix}
[1324]\begin{bmatrix} 13 \\ 24 \end{bmatrix}

legal operation

 Conclusion : Number of columns in the matrix should be the same as the number of rows in the vector.

Matrices

How do you multiply two matrices ?

(c) One Fourth Labs

\begin{bmatrix} 1 & 0 & 3 \\ 3 & 1 & 1 \\ 0 & 2 & 5 \end{bmatrix}
[103311025]\begin{bmatrix} 1 & 0 & 3 \\ 3 & 1 & 1 \\ 0 & 2 & 5 \end{bmatrix}
\begin{bmatrix} 0 & 1 & 2\\ 3 & 0 & 5 \\ 1 & 2 & 1 \end{bmatrix}
[012305121]\begin{bmatrix} 0 & 1 & 2\\ 3 & 0 & 5 \\ 1 & 2 & 1 \end{bmatrix}
\times
×\times
=
==
\begin{bmatrix} ? & ? & ? \\ ? & ? & ? \\ ? & ? & ? \end{bmatrix}
[?????????]\begin{bmatrix} ? & ? & ? \\ ? & ? & ? \\ ? & ? & ? \end{bmatrix}
\begin{bmatrix} 1 & 0 & 3 \\ 3 & 1 & 1 \\ 0 & 2 & 5 \end{bmatrix}
[103311025]\begin{bmatrix} 1 & 0 & 3 \\ 3 & 1 & 1 \\ 0 & 2 & 5 \end{bmatrix}
\times
×\times
\begin{bmatrix} 0 \\ 3 \\ 1 \end{bmatrix}
[031]\begin{bmatrix} 0 \\ 3 \\ 1 \end{bmatrix}
=
==
\begin{bmatrix} 3 \\ 4 \\ 11 \end{bmatrix}
[3411]\begin{bmatrix} 3 \\ 4 \\ 11 \end{bmatrix}
\begin{bmatrix} ? & ? & ? \\ ? & ? & ? \\ ? & ? & ? \end{bmatrix}
[?????????]\begin{bmatrix} ? & ? & ? \\ ? & ? & ? \\ ? & ? & ? \end{bmatrix}
\begin{bmatrix} ? & ? & ? \\ ? & ? & ? \\ ? & ? & ? \end{bmatrix}
[?????????]\begin{bmatrix} ? & ? & ? \\ ? & ? & ? \\ ? & ? & ? \end{bmatrix}
\begin{bmatrix} ? & ? & ? \\ ? & ? & ? \\ ? & ? & ? \end{bmatrix}
[?????????]\begin{bmatrix} ? & ? & ? \\ ? & ? & ? \\ ? & ? & ? \end{bmatrix}
\begin{bmatrix} 1 & 0 & 3 \\ 3 & 1 & 1 \\ 0 & 2 & 5 \end{bmatrix}
[103311025]\begin{bmatrix} 1 & 0 & 3 \\ 3 & 1 & 1 \\ 0 & 2 & 5 \end{bmatrix}
\times
×\times
\begin{bmatrix} 0 \\ 3 \\ 1 \end{bmatrix}
[031]\begin{bmatrix} 0 \\ 3 \\ 1 \end{bmatrix}
=
==
\begin{bmatrix} 3 & ? & ? \\ 4 & ? & ? \\ 11 & ? & ? \end{bmatrix}
[3??4??11??]\begin{bmatrix} 3 & ? & ? \\ 4 & ? & ? \\ 11 & ? & ? \end{bmatrix}
\begin{bmatrix} 7 \\ 5 \\ 10 \end{bmatrix}
[7510]\begin{bmatrix} 7 \\ 5 \\ 10 \end{bmatrix}
\begin{bmatrix} 3 & ? & ? \\ 4 & ? & ? \\ 11 & ? & ? \end{bmatrix}
[3??4??11??]\begin{bmatrix} 3 & ? & ? \\ 4 & ? & ? \\ 11 & ? & ? \end{bmatrix}
\begin{bmatrix} 1 & 0 & 3 \\ 3 & 1 & 1 \\ 0 & 2 & 5 \end{bmatrix}
[103311025]\begin{bmatrix} 1 & 0 & 3 \\ 3 & 1 & 1 \\ 0 & 2 & 5 \end{bmatrix}
\times
×\times
\begin{bmatrix} 1 \\ 0 \\ 2 \end{bmatrix}
[102]\begin{bmatrix} 1 \\ 0 \\ 2 \end{bmatrix}
=
==
\begin{bmatrix} 1 & 0 & 3 \\ 3 & 1 & 1 \\ 0 & 2 & 5 \end{bmatrix}
[103311025]\begin{bmatrix} 1 & 0 & 3 \\ 3 & 1 & 1 \\ 0 & 2 & 5 \end{bmatrix}
\begin{bmatrix} 1 \\ 0 \\ 2 \end{bmatrix}
[102]\begin{bmatrix} 1 \\ 0 \\ 2 \end{bmatrix}
=
==
\begin{bmatrix} 3 & ? & ? \\ 4 & ? & ? \\ 11 & ? & ? \end{bmatrix}
[3??4??11??]\begin{bmatrix} 3 & ? & ? \\ 4 & ? & ? \\ 11 & ? & ? \end{bmatrix}
\times
×\times
\begin{bmatrix} 3 & ? & ? \\ 4 & ? & ? \\ 11 & ? & ? \end{bmatrix}
[3??4??11??]\begin{bmatrix} 3 & ? & ? \\ 4 & ? & ? \\ 11 & ? & ? \end{bmatrix}
\begin{bmatrix} 3 & 7 & ? \\ 4 & 5 & ? \\ 11 & 10 & ? \end{bmatrix}
[37?45?1110?]\begin{bmatrix} 3 & 7 & ? \\ 4 & 5 & ? \\ 11 & 10 & ? \end{bmatrix}
\begin{bmatrix} 3 & 7 & ? \\ 4 & 5 & ? \\ 11 & 10 & ? \end{bmatrix}
[37?45?1110?]\begin{bmatrix} 3 & 7 & ? \\ 4 & 5 & ? \\ 11 & 10 & ? \end{bmatrix}
\begin{bmatrix} 3 & 7 & ? \\ 4 & 5 & ? \\ 11 & 10 & ? \end{bmatrix}
[37?45?1110?]\begin{bmatrix} 3 & 7 & ? \\ 4 & 5 & ? \\ 11 & 10 & ? \end{bmatrix}
\begin{bmatrix} 3 & 7 & ? \\ 4 & 5 & ? \\ 11 & 10 & ? \end{bmatrix}
[37?45?1110?]\begin{bmatrix} 3 & 7 & ? \\ 4 & 5 & ? \\ 11 & 10 & ? \end{bmatrix}
\begin{bmatrix} 1 & 0 & 3 \\ 3 & 1 & 1 \\ 0 & 2 & 5 \end{bmatrix}
[103311025]\begin{bmatrix} 1 & 0 & 3 \\ 3 & 1 & 1 \\ 0 & 2 & 5 \end{bmatrix}
\times
×\times
=
==
\begin{bmatrix} 2 \\ 5 \\ 1 \end{bmatrix}
[251]\begin{bmatrix} 2 \\ 5 \\ 1 \end{bmatrix}
\begin{bmatrix} 5 \\ 12 \\ 15 \end{bmatrix}
[51215]\begin{bmatrix} 5 \\ 12 \\ 15 \end{bmatrix}
\begin{bmatrix} 1 & 0 & 3 \\ 3 & 1 & 1 \\ 0 & 2 & 5 \end{bmatrix}
[103311025]\begin{bmatrix} 1 & 0 & 3 \\ 3 & 1 & 1 \\ 0 & 2 & 5 \end{bmatrix}
\times
×\times
=
==
\begin{bmatrix} 2 \\ 5 \\ 1 \end{bmatrix}
[251]\begin{bmatrix} 2 \\ 5 \\ 1 \end{bmatrix}
\begin{bmatrix} 3 & 7 & 5 \\ 4 & 5 & 12 \\ 11 & 10 & 15 \end{bmatrix}
[3754512111015]\begin{bmatrix} 3 & 7 & 5 \\ 4 & 5 & 12 \\ 11 & 10 & 15 \end{bmatrix}

Matrices

How do you multiply two matrices ?

(c) One Fourth Labs

\begin{bmatrix} 1 & 0 & 3 \\ 3 & 1 & 1 \\ 0 & 2 & 5 \end{bmatrix}
[103311025]\begin{bmatrix} 1 & 0 & 3 \\ 3 & 1 & 1 \\ 0 & 2 & 5 \end{bmatrix}
\begin{bmatrix} 0 & 1 & 2\\ 3 & 0 & 1 \end{bmatrix}
[012301]\begin{bmatrix} 0 & 1 & 2\\ 3 & 0 & 1 \end{bmatrix}
\times
×\times
=
==
\begin{bmatrix} ? & ? & ? \\ ? & ? & ? \\ ? & ? & ? \end{bmatrix}
[?????????]\begin{bmatrix} ? & ? & ? \\ ? & ? & ? \\ ? & ? & ? \end{bmatrix}

Number of columns in the matrix is not equal to the number of rows in the vector.

\begin{bmatrix} 1 & 0 & 3 \\ 3 & 1 & 1 \\ 0 & 2 & 5 \end{bmatrix}
[103311025]\begin{bmatrix} 1 & 0 & 3 \\ 3 & 1 & 1 \\ 0 & 2 & 5 \end{bmatrix}
\begin{bmatrix} 0 \\ 3 \end{bmatrix}
[03]\begin{bmatrix} 0 \\ 3 \end{bmatrix}
\times
×\times
=
==

Matrices

How do you multiply two matrices ?

(c) One Fourth Labs

\begin{bmatrix} 1 & 0 \\ 3 & 1 \\ 0 & 2 \end{bmatrix}
[103102]\begin{bmatrix} 1 & 0 \\ 3 & 1 \\ 0 & 2 \end{bmatrix}
\begin{bmatrix} 0 & 1 & 2 & 4\\ 3 & 0 & 1 & 0 \end{bmatrix}
[01243010]\begin{bmatrix} 0 & 1 & 2 & 4\\ 3 & 0 & 1 & 0 \end{bmatrix}
\times
×\times
=
==
\begin{bmatrix} ? & ? & ? & ? \\ ? & ? & ? & ? \\ ? & ? & ? & ? \end{bmatrix}
[????????????]\begin{bmatrix} ? & ? & ? & ? \\ ? & ? & ? & ? \\ ? & ? & ? & ? \end{bmatrix}
\begin{bmatrix} 1 & 0 \\ 3 & 1 \\ 0 & 2 \end{bmatrix}
[103102]\begin{bmatrix} 1 & 0 \\ 3 & 1 \\ 0 & 2 \end{bmatrix}
\times
×\times
\begin{bmatrix} 0\\ 3 \end{bmatrix}
[03]\begin{bmatrix} 0\\ 3 \end{bmatrix}
=
==

Number of columns in the matrix is equal to the number of rows in the vector.

\begin{bmatrix} 1 & 0 \\ 3 & 1 \\ 0 & 2 \end{bmatrix}
[103102]\begin{bmatrix} 1 & 0 \\ 3 & 1 \\ 0 & 2 \end{bmatrix}
\times
×\times
\begin{bmatrix} 0\\ 3 \end{bmatrix}
[03]\begin{bmatrix} 0\\ 3 \end{bmatrix}
=
==
\begin{bmatrix} 1 & 0 \\ 3 & 1 \\ 0 & 2 \end{bmatrix}
[103102]\begin{bmatrix} 1 & 0 \\ 3 & 1 \\ 0 & 2 \end{bmatrix}
\times
×\times
\begin{bmatrix} 0\\ 3 \end{bmatrix}
[03]\begin{bmatrix} 0\\ 3 \end{bmatrix}
=
==
\begin{bmatrix} 0 \\ 3 \\ 6 \end{bmatrix}
[036]\begin{bmatrix} 0 \\ 3 \\ 6 \end{bmatrix}
\begin{bmatrix} 0 & 1 & 2 & 4 \\ 3 & 3 & 7 & 12 \\ 6 & 0 & 2 & 0 \end{bmatrix}
[0124337126020]\begin{bmatrix} 0 & 1 & 2 & 4 \\ 3 & 3 & 7 & 12 \\ 6 & 0 & 2 & 0 \end{bmatrix}
\begin{bmatrix} ? & ? & ? & ? \\ ? & ? & ? & ? \\ ? & ? & ? & ? \end{bmatrix}
[????????????]\begin{bmatrix} ? & ? & ? & ? \\ ? & ? & ? & ? \\ ? & ? & ? & ? \end{bmatrix}
\begin{bmatrix} ? & ? & ? & ? \\ ? & ? & ? & ? \\ ? & ? & ? & ? \end{bmatrix}
[????????????]\begin{bmatrix} ? & ? & ? & ? \\ ? & ? & ? & ? \\ ? & ? & ? & ? \end{bmatrix}
\begin{bmatrix} ? & ? & ? & ? \\ ? & ? & ? & ? \\ ? & ? & ? & ? \end{bmatrix}
[????????????]\begin{bmatrix} ? & ? & ? & ? \\ ? & ? & ? & ? \\ ? & ? & ? & ? \end{bmatrix}
\begin{bmatrix} 0 & ? & ? & ? \\ 3 & ? & ? & ? \\ 6 & ? & ? & ? \end{bmatrix}
[0???3???6???]\begin{bmatrix} 0 & ? & ? & ? \\ 3 & ? & ? & ? \\ 6 & ? & ? & ? \end{bmatrix}
\begin{bmatrix} ? & ? & ? & ? \\ ? & ? & ? & ? \\ ? & ? & ? & ? \end{bmatrix}
[????????????]\begin{bmatrix} ? & ? & ? & ? \\ ? & ? & ? & ? \\ ? & ? & ? & ? \end{bmatrix}

Matrices

How do you multiply two matrices ?

(c) One Fourth Labs

\begin{bmatrix} a_{11} & a_{12} & ... & a_{1n} \\ a_{21} & a_{22} & ... & a_{2n} \\ ... & ... & ... & ...\\ a_{m1} & a_{m2} & ... & a_{mn} \end{bmatrix}
[a11a12...a1na21a22...a2n............am1am2...amn]\begin{bmatrix} a_{11} & a_{12} & ... & a_{1n} \\ a_{21} & a_{22} & ... & a_{2n} \\ ... & ... & ... & ...\\ a_{m1} & a_{m2} & ... & a_{mn} \end{bmatrix}
\times
×\times
=
==

 Conclusion : Any m x n matrix can be multiplied with a n x k matrix to get a m x k output.

\begin{bmatrix} b_{11} & ... & b_{1k} \\ ... & ... & ... \\ b_{n1} & ... & b_{nk} \end{bmatrix}
[b11...b1k.........bn1...bnk]\begin{bmatrix} b_{11} & ... & b_{1k} \\ ... & ... & ... \\ b_{n1} & ... & b_{nk} \end{bmatrix}
\begin{bmatrix} c_{11} & ... & c_{1k} \\ c_{21} & ... & c_{2k} \\ ... & ... & ... \\ c_{m1} & ... & c_{mk} \end{bmatrix}
[c11...c1kc21...c2k.........cm1...cmk]\begin{bmatrix} c_{11} & ... & c_{1k} \\ c_{21} & ... & c_{2k} \\ ... & ... & ... \\ c_{m1} & ... & c_{mk} \end{bmatrix}

Matrices

Is there an alternate way of multiplying matrices ?

(c) One Fourth Labs

\begin{bmatrix} a_{11} & a_{12} \\ a_{21} & a_{22} \\ \end{bmatrix}
[a11a12a21a22]\begin{bmatrix} a_{11} & a_{12} \\ a_{21} & a_{22} \\ \end{bmatrix}
\begin{bmatrix} b_{11} \\ b_{21} \\ \end{bmatrix}
[b11b21]\begin{bmatrix} b_{11} \\ b_{21} \\ \end{bmatrix}
\times
×\times
=
==
\begin{bmatrix} a_{11} \times b_{11} + a_{12} \times b_{21} \\ a_{21} \times b_{11} + a_{22} \times b_{21} \\ \end{bmatrix}
[a11×b11+a12×b21a21×b11+a22×b21]\begin{bmatrix} a_{11} \times b_{11} + a_{12} \times b_{21} \\ a_{21} \times b_{11} + a_{22} \times b_{21} \\ \end{bmatrix}
\begin{bmatrix} a_{11} \\ a_{21} \\ \end{bmatrix}
[a11a21]\begin{bmatrix} a_{11} \\ a_{21} \\ \end{bmatrix}
\begin{bmatrix} a_{12} \\ a_{22} \\ \end{bmatrix}
[a12a22]\begin{bmatrix} a_{12} \\ a_{22} \\ \end{bmatrix}
b_{11}
b11b_{11}
\times
×\times
b_{21}
b21b_{21}
\times
×\times
+
++
=
==

Matrices

Is there an alternate way of multiplying matrices ?

(c) One Fourth Labs

\begin{bmatrix} a_{11} & a_{12} \\ a_{21} & a_{22} \\ \end{bmatrix}
[a11a12a21a22]\begin{bmatrix} a_{11} & a_{12} \\ a_{21} & a_{22} \\ \end{bmatrix}
\begin{bmatrix} b_{11} & b_{12} \\ b_{21} & b_{22} \\ \end{bmatrix}
[b11b12b21b22]\begin{bmatrix} b_{11} & b_{12} \\ b_{21} & b_{22} \\ \end{bmatrix}
\times
×\times
=
==
\begin{bmatrix} a_{11} \times b_{11} + a_{12} \times b_{21} & a_{11} \times b_{12} + a_{12} \times b_{22} \\ a_{21} \times b_{11} + a_{22} \times b_{21} & a_{21} \times b_{12} + a_{22} \times b_{22} \end{bmatrix}
[a11×b11+a12×b21a11×b12+a12×b22a21×b11+a22×b21a21×b12+a22×b22]\begin{bmatrix} a_{11} \times b_{11} + a_{12} \times b_{21} & a_{11} \times b_{12} + a_{12} \times b_{22} \\ a_{21} \times b_{11} + a_{22} \times b_{21} & a_{21} \times b_{12} + a_{22} \times b_{22} \end{bmatrix}
\begin{bmatrix} a_{11} \times b_{11} + a_{12} \times b_{21} \\ a_{21} \times b_{11} + a_{22} \times b_{21} \end{bmatrix}
[a11×b11+a12×b21a21×b11+a22×b21]\begin{bmatrix} a_{11} \times b_{11} + a_{12} \times b_{21} \\ a_{21} \times b_{11} + a_{22} \times b_{21} \end{bmatrix}
\begin{bmatrix} a_{11} \times b_{12} + a_{12} \times b_{22} \\ a_{21} \times b_{12} + a_{22} \times b_{22} \end{bmatrix}
[a11×b12+a12×b22a21×b12+a22×b22]\begin{bmatrix} a_{11} \times b_{12} + a_{12} \times b_{22} \\ a_{21} \times b_{12} + a_{22} \times b_{22} \end{bmatrix}
=
==
\begin{bmatrix} a_{11} & a_{12} \\ a_{21} & a_{22} \\ \end{bmatrix}
[a11a12a21a22]\begin{bmatrix} a_{11} & a_{12} \\ a_{21} & a_{22} \\ \end{bmatrix}
\begin{bmatrix} b_{11} \\ b_{21} \end{bmatrix}
[b11b21]\begin{bmatrix} b_{11} \\ b_{21} \end{bmatrix}
\times
×\times
\begin{bmatrix} a_{11} & a_{12} \\ a_{21} & a_{22} \\ \end{bmatrix}
[a11a12a21a22]\begin{bmatrix} a_{11} & a_{12} \\ a_{21} & a_{22} \\ \end{bmatrix}
\begin{bmatrix} b_{12} \\ b_{22} \end{bmatrix}
[b12b22]\begin{bmatrix} b_{12} \\ b_{22} \end{bmatrix}
\times
×\times
=
==
\begin{bmatrix} a_{11} \times b_{11} & a_{11} \times b_{12} \\ a_{21} \times b_{11} & a_{21} \times b_{12} \end{bmatrix}
[a11×b11a11×b12a21×b11a21×b12]\begin{bmatrix} a_{11} \times b_{11} & a_{11} \times b_{12} \\ a_{21} \times b_{11} & a_{21} \times b_{12} \end{bmatrix}
\begin{bmatrix} a_{12} \times b_{21} & a_{12} \times b_{22} \\ a_{22} \times b_{21} & a_{22} \times b_{22} \end{bmatrix}
[a12×b21a12×b22a22×b21a22×b22]\begin{bmatrix} a_{12} \times b_{21} & a_{12} \times b_{22} \\ a_{22} \times b_{21} & a_{22} \times b_{22} \end{bmatrix}
=
==
+
++
\begin{bmatrix} a_{11} \\ a_{21} \end{bmatrix}
[a11a21]\begin{bmatrix} a_{11} \\ a_{21} \end{bmatrix}
\begin{bmatrix} a_{12} \\ a_{22} \end{bmatrix}
[a12a22]\begin{bmatrix} a_{12} \\ a_{22} \end{bmatrix}
\begin{bmatrix} b_{11} & b_{12} \end{bmatrix}
[b11b12]\begin{bmatrix} b_{11} & b_{12} \end{bmatrix}
\begin{bmatrix} b_{21} & b_{22} \end{bmatrix}
[b21b22]\begin{bmatrix} b_{21} & b_{22} \end{bmatrix}
\times
×\times
\times
×\times
+
++
=
==

Matrices

What is the common operation that you will see in this course ?

(c) One Fourth Labs

W \ \ x \ \ + \ \ b
W  x  +  bW \ \ x \ \ + \ \ b
R^{m \times n}
Rm×nR^{m \times n}
R^{? \times ?}
R?×?R^{? \times ?}
R^{? \times ?}
R?×?R^{? \times ?}
R^{n \times 1}
Rn×1R^{n \times 1}
R^{m \times 1}
Rm×1R^{m \times 1}
Weight (g) Screen Size(in.) Dual SIM Radio Battery (mAh) Price (INR)  . . .  Internal Memory (GB)
151 5.8 1 1 3060 15000 . . .   64
180 6.18 1 0 3500 32000 . . .   64
160 5.84 0 0 3060 25000 . . .   64
205 6.2 0 1 5000 18000 . . .   64
162 5.9 0 1 3000 14000 . . .   64
182 6.26 1 1 4000 12000 . . .   64
138 4.7 0 0 1960 35000 . . .   64
185 6.41 1 0 3700 42000 . . .   64
170 5.5 0 0 3260 44000 . . .   64

Why do we care about them ?

(c) One Fourth Labs

Matrices

Why do we care about them ?

(c) One Fourth Labs

Matrices

\begin{bmatrix} 151 & 5.8 & 1 & 1 & 3060 & 15000 & ... & 64 \\ 180 & 6.18 & 1 & 0 & 3500 & 32000 & ... & 64 \\ 160 & 5.84 & 0 & 0 & 3060 & 25000 & ... & 64 \\ 205 & 6.2 & 0 & 1 & 5000 & 18000 & ... & 64 \\ 162 & 5.9 & 0 & 1 & 3000 & 14000 & ... & 64 \\ 182 & 6.26 & 1 & 1 & 4000 & 12000 & ... & 64 \\ 138 & 4.7 & 0 & 0 & 1960 & 35000 & ... & 64 \\ 185 & 6.41 & 1 & 0 & 3700 & 42000 & ... & 64 \\ 170 & 5.5 & 0 & 0 & 3260 & 44000 & ... & 64 \\ \end{bmatrix}
[1515.811306015000...641806.1810350032000...641605.8400306025000...642056.201500018000...641625.901300014000...641826.2611400012000...641384.700196035000...641856.4110370042000...641705.500326044000...64]\begin{bmatrix} 151 & 5.8 & 1 & 1 & 3060 & 15000 & ... & 64 \\ 180 & 6.18 & 1 & 0 & 3500 & 32000 & ... & 64 \\ 160 & 5.84 & 0 & 0 & 3060 & 25000 & ... & 64 \\ 205 & 6.2 & 0 & 1 & 5000 & 18000 & ... & 64 \\ 162 & 5.9 & 0 & 1 & 3000 & 14000 & ... & 64 \\ 182 & 6.26 & 1 & 1 & 4000 & 12000 & ... & 64 \\ 138 & 4.7 & 0 & 0 & 1960 & 35000 & ... & 64 \\ 185 & 6.41 & 1 & 0 & 3700 & 42000 & ... & 64 \\ 170 & 5.5 & 0 & 0 & 3260 & 44000 & ... & 64 \\ \end{bmatrix}
F1 F2 F3 F4 F5 F6 ... Fn

Why do we care about them ?

(c) One Fourth Labs

Matrices

F1 F2 F3 F4 F5 F6 ... Fn
\begin{bmatrix} 0 & 1 & 1 & 0 & 0 & 0 & ... & 0 \\ 1 & 0 & 1 & 1 & 0 & 1 & ... & 1 \\ 0 & 0 & 0 & 0 & 0 & 0 & ... & 0 \\ 0 & 0 & 0 & 1 & 0 & 1 & ... & 1 \\ 0 & 1 & 0 & 1 & 1 & 1 & ... & 1 \\ 1 & 1 & 1 & 1 & 1 & 0 & ... & 0 \\ 0 & 0 & 0 & 0 & 1 & 0 & ... & 1 \\ 0 & 1 & 1 & 0 & 0 & 0 & ... & 1 \\ 1 & 0 & 0 & 0 & 1 & 0 & ... & 0 \\ 0 & 0 & 1 & 1 & 0 & 0 & ... & 0 \end{bmatrix}
[011000...0101101...1000000...0000101...1010111...1111110...0000010...1011000...1100010...0001100...0]\begin{bmatrix} 0 & 1 & 1 & 0 & 0 & 0 & ... & 0 \\ 1 & 0 & 1 & 1 & 0 & 1 & ... & 1 \\ 0 & 0 & 0 & 0 & 0 & 0 & ... & 0 \\ 0 & 0 & 0 & 1 & 0 & 1 & ... & 1 \\ 0 & 1 & 0 & 1 & 1 & 1 & ... & 1 \\ 1 & 1 & 1 & 1 & 1 & 0 & ... & 0 \\ 0 & 0 & 0 & 0 & 1 & 0 & ... & 1 \\ 0 & 1 & 1 & 0 & 0 & 0 & ... & 1 \\ 1 & 0 & 0 & 0 & 1 & 0 & ... & 0 \\ 0 & 0 & 1 & 1 & 0 & 0 & ... & 0 \end{bmatrix}

Copy of 1.10 Vectors and Matrices

By Nitesh Methani

Copy of 1.10 Vectors and Matrices

matrices

  • 618