Skip to content

Commit 2ccc6ae

Browse files
authored
Merge pull request #369 from sai-samarth/patch-1
Updated learn.html to remove inverse requirement of S
2 parents 91b4fb4 + 50f0d5a commit 2ccc6ae

File tree

1 file changed

+6
-7
lines changed

1 file changed

+6
-7
lines changed

Problems/7_transform_matrix/learn.html

Lines changed: 6 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
11
<h2>Matrix Transformation using \(T^{-1}AS\)</h2>
22

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.
44

55
Given matrices \(A\), \(T\), and \(S\):
66

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>
99
<p><strong>3.</strong> Perform the matrix multiplication to obtain the transformed matrix:</p>
1010
\[
1111
A' = T^{-1}AS
@@ -32,11 +32,10 @@ <h3> Example </h3>
3232
\end{pmatrix}
3333
\]
3434

35-
First, check that \(T\) and \(S\) are invertible:
35+
First, check if \(T\) is invertible:
3636
<p>• \(\det(T) = 4 \neq 0 \)</p>
37-
<p>• \(\det(S) = 1 \neq 0 \)</p>
3837

39-
Compute the inverses:
38+
Compute the inverse:
4039
\[
4140
T^{-1} = \begin{pmatrix}
4241
\frac{1}{2} & 0 \\
@@ -59,4 +58,4 @@ <h3> Example </h3>
5958
0.5 & 1.5 \\
6059
1.5 & 3.5
6160
\end{pmatrix}
62-
\]
61+
\]

0 commit comments

Comments
 (0)