To find the transpose of a matrix, you can interchange its rows and columns:
Mirror the matrix over its diagonal from top left to bottom right
Make the first row the first column, and vice versa
Make the second row the second column, and vice versa
Continue this pattern for all rows and columns
The transpose of a matrix is often denoted by placing a tilde symbol over the matrix name or by adding a superscript T. For example, if the matrix is called "A", then its transpose is represented by A' or AT.