Skip to content

Commit 79c0999

Browse files
authored
Merge pull request #511 from mimi2626/patch-3
Update learn.md
2 parents 831c668 + 18ee914 commit 79c0999

File tree

1 file changed

+4
-2
lines changed
  • questions/7_matrix-transformation

1 file changed

+4
-2
lines changed

questions/7_matrix-transformation/learn.md

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,13 @@
11
### Matrix Transformation using $T^{-1} A S$
22

3-
Transforming a matrix $A$ using the operation $T^{-1} A S$ involves several steps. This operation changes the basis of matrix $A$ using two matrices $T$ and $S$, with $T$ being invertible.
3+
Transforming a matrix $A$ using the operation $T^{-1} A S$ involves several steps. This operation changes the basis of matrix $A$ using two matrices $T$ and $S$, with $T$ and $S$ being invertible, to avoid loss of information.
4+
(Multiplying by non-invertible $S$ would result in a loss of dimensions)
45

56
### Steps for Transformation
67

78
Given matrices $A$, $T$, and $S$:
89

9-
1. **Check Invertibility**: Verify that $T$ is invertible by ensuring its determinant is non-zero; otherwise, return $-1$.
10+
1. **Check Invertibility**: Verify that $T$ and $S$ are invertible by ensuring their determinants are non-zero; otherwise, return $-1$.
1011
2. **Compute Inverses**: Find the invers of $T$, denoted as $T^{-1}$.
1112
3. **Perform Matrix Multiplication**: Calculate the transformed matrix:
1213

@@ -45,6 +46,7 @@ $$
4546
#### Check Invertibility:
4647

4748
- $\det(T) = 4 \neq 0$
49+
- $\det(S) = 1 \neq 0$
4850

4951
#### Compute Inverses:
5052

0 commit comments

Comments
 (0)