["text/html:<marimo-ui-element object-id='MJUe-0' random-id='2005b935-fd4e-e3fc-da10-707c74171220'><marimo-slider data-initial-value='3' data-label='&quot;&lt;span class=&#92;&quot;markdown prose dark:prose-invert contents&#92;&quot;&gt;&lt;span class=&#92;&quot;paragraph&#92;&quot;&gt;rows&lt;/span&gt;&lt;/span&gt;&quot;' data-start='1' data-stop='10' data-step='1' data-steps='[]' data-debounce='false' data-disabled='false' data-orientation='&quot;horizontal&quot;' data-show-value='false' data-include-input='false' data-full-width='false'></marimo-slider></marimo-ui-element>", "text/html:<marimo-ui-element object-id='MJUe-1' random-id='24275c4f-9450-bbe3-c145-1cdd82327338'><marimo-slider data-initial-value='3' data-label='&quot;&lt;span class=&#92;&quot;markdown prose dark:prose-invert contents&#92;&quot;&gt;&lt;span class=&#92;&quot;paragraph&#92;&quot;&gt;cols&lt;/span&gt;&lt;/span&gt;&quot;' data-start='1' data-stop='10' data-step='1' data-steps='[]' data-debounce='false' data-disabled='false' data-orientation='&quot;horizontal&quot;' data-show-value='false' data-include-input='false' data-full-width='false'></marimo-slider></marimo-ui-element>"]

SVD: A=UΣVA = U \Sigma V^\top

UU and VV are orthogonal matrices, Σ\Sigma is diagonal with singular values. Reveals the rank, range, and null space of a matrix.

||(=||)

||(\times||)

||(\times||)

QR: A=QRA = QR

QQ is orthogonal, RR is upper triangular. Used for solving least squares problems and computing eigenvalues.

||(=||)

||(\times||)

LU: A=PLUA = PLU

PP is a permutation matrix, LL is lower triangular, UU is upper triangular. Efficient for solving linear systems via forward/backward substitution.

||(=||)

||(\times||)

||(\times||)