lectures.alex.balgavy.eu

Lecture notes from university.
git clone git://git.alex.balgavy.eu/lectures.alex.balgavy.eu.git
Log | Files | Refs | Submodules

intuitive-guide-to-linear-algebra-notes.md (1576B)


      1 +++
      2 title = 'Notes from An Intuitive Guide to Linear Algebra'
      3 +++
      4 # Notes from [An Intuitive Guide to Linear Algebra](https://betterexplained.com/articles/linear-algebra-guide/)
      5 
      6 - Linear algebra gives you mini-spreadsheets for your math equations
      7 
      8     ![Visualisation](https://betterexplained.com/wp-content/webp-express/webp-images/uploads/images/linear-algebra-visualize-20121002-221620.png.webp)
      9 
     10 - Commonly: operations are in rows, data is in columns.
     11 - Imagine "pouring" each input through each operation:
     12 
     13     ![Pouring input matrix](https://betterexplained.com/wp-content/webp-express/webp-images/uploads/images/linear-algebra-pour-20121002-220550.png.webp)
     14 
     15 - A matrix is a single variable representing a spreadsheet of inputs or operations.
     16 - the beauty of linear algebra is representing an entire spreadsheet calculation with a single letter. Want to apply the same transformation a few times? Use N² or N³.
     17 - we can treat the operations matrix as inputs! Applying one operations matrix to another gives a new operations matrix that applies both transformations, in order.
     18 - The determinant is the "size" of the output transformation
     19 - Transposition is sort of like converting code to data and vice-versa
     20 - The eigenvector and eigenvalue represent the "axes" of the transformation.
     21 - An "eigenvector" is an input that doesn't change direction when it's run through the matrix (it points "along the axis"). And although the direction doesn't change, the size might. The eigenvalue is the amount the eigenvector is scaled up or down when going through the matrix.
     22