You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: Problems/7_transform_matrix/learn.html
+6-7Lines changed: 6 additions & 7 deletions
Original file line number
Diff line number
Diff line change
@@ -1,11 +1,11 @@
1
1
<h2>Matrix Transformation using \(T^{-1}AS\)</h2>
2
2
3
-
Transforming a matrix \(A\) using the operation \(T^{-1}AS\) involves several steps. This operation changes the basis of matrix \(A\) using two invertible matrices \(T\) and \(S\).
3
+
Transforming a matrix \(A\) using the operation \(T^{-1}AS\) involves several steps. This operation changes the basis of matrix \(A\) using two matrices \(T\) and \(S\), with \(T\) being invertible.
4
4
5
5
Given matrices \(A\), \(T\), and \(S\):
6
6
7
-
<p><strong>1.</strong> Check if \(T\) and \(S\) are invertible by ensuring their determinants are non-zero; else return -1.</p>
8
-
<p><strong>2.</strong> Compute the inverses of \(T\) and \(S\), denoted as \(T^{-1}\) and \(S^{-1}\).</p>
7
+
<p><strong>1.</strong> Check if \(T\) is invertible by ensuring it's determinant is non-zero; else return -1.</p>
8
+
<p><strong>2.</strong> Compute the inverse of \(T\), denoted as \(T^{-1}\).</p>
9
9
<p><strong>3.</strong> Perform the matrix multiplication to obtain the transformed matrix:</p>
0 commit comments