home.social

#matrices — Public Fediverse posts

Live and recent posts from across the Fediverse tagged #matrices, aggregated by home.social.

fetched live
  1. Alright, future engineers!
    **Matrix:** A rectangular array of numbers arranged in rows & columns.
    Ex: `[[1, 2], [3, 4]]` is a 2x2 matrix.
    Pro-Tip: Think of them as structured data, essential for solving systems & linear transformations!
    #LinAlg #Matrices #STEM #StudyNotes

  2. Alright, future engineers!
    **Matrix Multiplication:** Combines two matrices, representing sequential linear transformations.
    Ex: An (m x n) * (n x p) matrix yields an (m x p) result.
    Pro-Tip: The number of columns in the first matrix *must* equal the rows in the second (n=n)!
    #LinearAlgebra #Matrices #STEM #StudyNotes

  3. Alright, future engineers!
    **Matrix Multiplication:** Combines two matrices, representing sequential linear transformations.
    Ex: An (m x n) * (n x p) matrix yields an (m x p) result.
    Pro-Tip: The number of columns in the first matrix *must* equal the rows in the second (n=n)!
    #LinearAlgebra #Matrices #STEM #StudyNotes

  4. Alright, future engineers!
    **Matrix:** A rectangular grid of numbers organized into rows & columns.
    Ex: `A = [[1,2],[3,4]]` (2x2).
    Pro-Tip: Dimensions (rows x cols) dictate *all* operations! Check `(m x n)` first!
    #LinearAlgebra #Matrices #STEM #StudyNotes

  5. Alright, future engineers!
    **Matrix:** A rectangular grid of numbers organized into rows & columns.
    Ex: `A = [[1,2],[3,4]]` (2x2).
    Pro-Tip: Dimensions (rows x cols) dictate *all* operations! Check `(m x n)` first!
    #LinearAlgebra #Matrices #STEM #StudyNotes

  6. Alright, future engineers!
    **Matrix Transpose:** Swap a matrix's rows & columns.
    Ex: `A=[[1,2],[3,4]]`, `A^T=[[1,3],[2,4]]`
    Pro-Tip: It's like flipping it over the main diagonal! Great for reorienting data.
    #LinearAlgebra #Matrices #STEM #StudyNotes

  7. Alright, future engineers!
    **Matrix Transpose:** Swap a matrix's rows & columns.
    Ex: `A=[[1,2],[3,4]]`, `A^T=[[1,3],[2,4]]`
    Pro-Tip: It's like flipping it over the main diagonal! Great for reorienting data.
    #LinearAlgebra #Matrices #STEM #StudyNotes

  8. Alright, future engineers!
    **Determinant (2x2):** A scalar indicating how much a matrix transformation scales/flips space.
    Ex: For `[[a,b],[c,d]]`, `det = ad - bc`.
    Pro-Tip: If `det = 0`, the matrix is *singular* - it squishes space to a line or point!
    #Matrices #LinearAlgebra #STEM #StudyNotes

  9. Alright, future engineers!
    **Determinant (2x2):** A scalar indicating how much a matrix transformation scales/flips space.
    Ex: For `[[a,b],[c,d]]`, `det = ad - bc`.
    Pro-Tip: If `det = 0`, the matrix is *singular* - it squishes space to a line or point!
    #Matrices #LinearAlgebra #STEM #StudyNotes

  10. Alright, future engineers!
    **Identity Matrix (I):** A square matrix with 1s on the main diagonal & 0s elsewhere.
    Ex: `I = [[1,0],[0,1]]` for 2x2.
    Pro-Tip: It's the 1 of matrix multiplication! `A * I = A`. It doesn't change a matrix when multiplied.
    #LinearAlgebra #Matrices #STEM #StudyNotes

  11. Alright, future engineers!
    **Identity Matrix (I):** A square matrix with 1s on the main diagonal & 0s elsewhere.
    Ex: `I = [[1,0],[0,1]]` for 2x2.
    Pro-Tip: It's the 1 of matrix multiplication! `A * I = A`. It doesn't change a matrix when multiplied.
    #LinearAlgebra #Matrices #STEM #StudyNotes

  12. Alright, future engineers!
    **Matrix Multiplication:** A core operation combining matrices. Rows of 1st x Columns of 2nd.
    Ex: `[[1,2],[3,4]] * [[5],[6]] = [[1*5+2*6],[3*5+4*6]]`.
    Pro-Tip: Inner dimensions MUST match! (e.g., `(m x n) * (n x p)`)
    #LinAlg #Matrices #STEM #StudyNotes

  13. Alright, future engineers!
    **Determinant:** A scalar value from a square matrix. It indicates volume scaling & invertibility.
    Ex: `det([a,b; c,d]) = ad-bc`.
    Pro-Tip: If `det(A) = 0`, matrix A is singular (not invertible)!
    #LinearAlgebra #Matrices #STEM #StudyNotes

  14. Alright, future engineers!
    **Determinant:** A scalar value from a square matrix. It indicates volume scaling & invertibility.
    Ex: `det([a,b; c,d]) = ad-bc`.
    Pro-Tip: If `det(A) = 0`, matrix A is singular (not invertible)!
    #LinearAlgebra #Matrices #STEM #StudyNotes

  15. Alright, future engineers!
    **Matrix Multiplication:** Combining two matrices to get a new one, representing composed transformations.
    Ex: `(2x3) * (3x2)` gives a `(2x2)` matrix.
    Pro-Tip: Inner dimensions MUST match (n in m x n * n x p)!
    #Matrices #LinearAlgebra #STEM #StudyNotes

  16. Alright, future engineers!
    **Matrix Multiplication:** Combining two matrices to get a new one, representing composed transformations.
    Ex: `(2x3) * (3x2)` gives a `(2x2)` matrix.
    Pro-Tip: Inner dimensions MUST match (n in m x n * n x p)!
    #Matrices #LinearAlgebra #STEM #StudyNotes

  17. Alright, future engineers!
    **Matrix Mult:** Rows of 1st dot products with cols of 2nd. NOT element-wise!
    Ex: `[[1,2],[3,4]] * [[5],[6]] = [[1*5+2*6], [3*5+4*6]]`
    Pro-Tip: Inner dimensions MUST match for product to be defined! (m x n * n x p = m x p)
    #LinearAlgebra #Matrices #STEM #StudyNotes

  18. Alright, future engineers!
    **Matrix Mult:** Rows of 1st dot products with cols of 2nd. NOT element-wise!
    Ex: `[[1,2],[3,4]] * [[5],[6]] = [[1*5+2*6], [3*5+4*6]]`
    Pro-Tip: Inner dimensions MUST match for product to be defined! (m x n * n x p = m x p)
    #LinearAlgebra #Matrices #STEM #StudyNotes

  19. Alright, future engineers!

    The **Determinant** of a square matrix is a scalar value that tells you if the matrix is invertible.
    Ex: For `[[a,b],[c,d]]`, `det = ad - bc`.
    Pro-Tip: If `det = 0`, the matrix is singular (no inverse), meaning `Ax=b` has no unique solution!

    #LinearAlgebra #Matrices #STEM #StudyNotes

  20. Alright, future engineers!

    The **Determinant** of a square matrix is a scalar value that tells you if the matrix is invertible.
    Ex: For `[[a,b],[c,d]]`, `det = ad - bc`.
    Pro-Tip: If `det = 0`, the matrix is singular (no inverse), meaning `Ax=b` has no unique solution!

    #LinearAlgebra #Matrices #STEM #StudyNotes

  21. Alright, future engineers!
    **Matrix multiplication** combines two matrices, forming a new one where elements are dot products of rows & columns.
    Ex: `(AB)_ij = sum(A_ik * B_kj)`. Inner dimensions must match!
    Pro-Tip: It's NOT commutative (AB != BA)!
    #Matrices #LinearAlgebra #STEM #StudyNotes

  22. Alright, future engineers!
    **Matrix multiplication** combines two matrices, forming a new one where elements are dot products of rows & columns.
    Ex: `(AB)_ij = sum(A_ik * B_kj)`. Inner dimensions must match!
    Pro-Tip: It's NOT commutative (AB != BA)!
    #Matrices #LinearAlgebra #STEM #StudyNotes

  23. Thanks for attending! We were able to port a lot more of `glam` into our Gleam matrices library. A polished release will be right around the corner and 1.0 not far off.

    See you next week, like/follow/subscribe: youtube.com/@seancribbs

    #GleamLang #GameDev #Matrices

  24. Thanks for attending! We were able to port a lot more of `glam` into our Gleam matrices library. A polished release will be right around the corner and 1.0 not far off.

    See you next week, like/follow/subscribe: youtube.com/@seancribbs

    #GleamLang #GameDev #Matrices

  25. Alright, future engineers!

    **Matrix Multiplication** creates a new matrix where `C_ij` is the dot product of row `i` from the 1st matrix & column `j` from the 2nd.

    Ex: `A(2x3) * B(3x2)` gives `C(2x2)`.
    Pro-Tip: Inner dimensions must match!

    #LinearAlgebra #Matrices #STEM #StudyNotes

  26. Alright, future engineers!

    **Matrix Multiplication** creates a new matrix where `C_ij` is the dot product of row `i` from the 1st matrix & column `j` from the 2nd.

    Ex: `A(2x3) * B(3x2)` gives `C(2x2)`.
    Pro-Tip: Inner dimensions must match!

    #LinearAlgebra #Matrices #STEM #StudyNotes

  27. A major #update to my #collection of #morphological #matrices worthy to infer #networks:
    a bunch of matrices we generated and reanalysed for a paper by S. Renner, D. Sokoloff, and me dealing with ancestors, hard polytomies and seed plant evolution; depicted not as the usual cladograms (where ancestor-descendant pairs must trigger unsolvable hard trichotomies) but as a "Romerogram" (or spindle graph) that shows #dichotomy as well as #buddingEvolution, i.e., #phylogeny

    doi.org/10.6084/m9.figshare.70

  28. A major #update to my #collection of #morphological #matrices worthy to infer #networks:
    a bunch of matrices we generated and reanalysed for a paper by S. Renner, D. Sokoloff, and me dealing with ancestors, hard polytomies and seed plant evolution; depicted not as the usual cladograms (where ancestor-descendant pairs must trigger unsolvable hard trichotomies) but as a "Romerogram" (or spindle graph) that shows #dichotomy as well as #buddingEvolution, i.e., #phylogeny

    doi.org/10.6084/m9.figshare.70

  29. 🎩🤓 Behold, the blog that bravely attempts to explain the mystical Q, K, V #matrices as if they're the holy trinity of #AI. Spoiler alert: it's mostly a glorified game of 'which word matters?' because we all need another reason to overcomplicate common sense. 🙄🔍
    arpitbhayani.me/blogs/qkv-matr #QKV #Overcomplication #CommonSense #HackerNews #HackerNews #ngated

  30. 🎩🤓 Behold, the blog that bravely attempts to explain the mystical Q, K, V #matrices as if they're the holy trinity of #AI. Spoiler alert: it's mostly a glorified game of 'which word matters?' because we all need another reason to overcomplicate common sense. 🙄🔍
    arpitbhayani.me/blogs/qkv-matr #QKV #Overcomplication #CommonSense #HackerNews #HackerNews #ngated

  31. This is how you know your approaching the analytic fried zone : staring at the screen making #Math pirate noises..." Arrrrrr, ya see how this works don't ya ? We'll be squeezin #Convergence from yer scrawny little Rows and Columns, yer big fat #Matrices and anything else that gets in Captains way. We're gonna hang yer #Asymptotes out to dry in the broiling sun. We're gonna scrub the decks with yer residuals and paint the cannons with yer remainders arrrrrrr"

    So yes. Possibly time for a break...

  32. 🚨BREAKING NEWS: Another thrilling episode of "Linear Algebra for Masochists" has been released, now with 100% more convoluted Python snippets! 🙃 Get ready to snooze through endless chapters of #vectors and #matrices, because clearly, that's what the world needs right now! 📉📚
    little-book-of.github.io/linea #LinearAlgebraForMasochists #PythonSnippets #TechHumor #BreakingNews #HackerNews #ngated

  33. 🚨BREAKING NEWS: Another thrilling episode of "Linear Algebra for Masochists" has been released, now with 100% more convoluted Python snippets! 🙃 Get ready to snooze through endless chapters of #vectors and #matrices, because clearly, that's what the world needs right now! 📉📚
    little-book-of.github.io/linea #LinearAlgebraForMasochists #PythonSnippets #TechHumor #BreakingNews #HackerNews #ngated

  34. There are two obstacles when you use #Assemblyscript and #Deno for #MachineLearning #ML and #SmallLanguageModels #SLM. 1. Assemblyscript works with linear memory and you have to flatten 3D #tensors and 2D #matrices into 1D #arrays for doing any matrix algebra. 2. Deno is a bit more complicated than Node.js when working with #WASM (#Webassemly) files. Here is how you do it. Webassembly makes NNUE models even faster in computation. This together with #WebGPU will become our future. #AI #javascript

  35. Furthermore, she showed that certain stabilising effects of #network #structure can only be reproduced in theoretical #matrices when the underlying distribution of interaction strengths is highly skewed - which is in apparent contradiction to what is suggested by random matrix theory....

    👉🏻 biorxiv.org/content/10.1101/20

    More of her results will be published soon, so stay tuned!

  36. BLOSUM (Genetics 🧬)

    In bioinformatics, the BLOSUM matrix is a substitution matrix used for sequence alignment of proteins. BLOSUM matrices are used to score alignments between evolutionarily divergent protein sequences. They are based on local alignments. BLOSUM matrices were first introduced in a paper by Steven Henikoff and Jorja Henikoff. They scanned the BLOCKS database for very conserved regions of p...

    en.wikipedia.org/wiki/BLOSUM

    #Blosum #Genetics #Matrices #BiochemistryMethods

  37. 'A Statistical Experimental Design Method for Constructing Deterministic Sensing Matrices for Compressed Sensing', by Youran Qi, Xu He, Tzu-Hsiang Hung, Peter Chien.

    jmlr.org/papers/v25/22-0760.ht

    #sensing #matrices #compressed

  38. For all Transf ∈ ℝn×n, the matrix is invertible if and only if rank(Transf) = n

    The #determinant exists if and only if the transformation matrix is square.
    The determinant in a linear transformation is the (signed) area of the image of the fundamental basis formed by the unit square.

    #algebra #matrices #tutorial #determinants #singularity #math #maths #mathematics #mathStodon #ML #machineLearning #systems