2.6.6Matrices & Determinants — Introduction

Transpose — definition, properties

2,402 words11 min readdifficulty · medium1 backlinks

Definition

Derivation from scratch:

Start with a concrete matrix: A=[a11a12a13a21a22a23]2×3A = \begin{bmatrix} a_{11} & a_{12} & a_{13} \\ a_{21} & a_{22} & a_{23} \end{bmatrix}_{2 \times 3}

We want to swap the "coordinate system": what was accessed as "row ii, column jj" should become "row jj, column ii".

Step 1: The first row of AA is [a11,a12,a13][a_{11}, a_{12}, a_{13}]. These should become the first column of ATA^T.

Step 2: The second row of AA is [a21,a22,a23][a_{21}, a_{22}, a_{23}]. These should become the second column of ATA^T.

Result: AT=[a11a21 a12a22a13a23]3×2A^T = \begin{bmatrix} a_{11} & a_{21} \ a_{12} & a_{22} \\ a_{13} & a_{23} \end{bmatrix}_{3 \times 2}

Why this step? Because "row becomes column" means the kk-th row vector of AA becomes the kk-th column vector of ATA^T.

Properties of Transpose

Property 1: Double transpose returns original

Property 2: Transpose of sum

Property 3: Transpose of scalar multiple

Property 4: Transpose of product (reversal rule)

Property 5: Transpose of inverse

Recall Explain to a 12-year-old

Imagine you have a table of data with students in rows and test scores in columns:

       Math  Science  English
Alice    90     85      88
Bob      75     92      80

The transpose just flips this table so that students become columns and subjects become rows:

        Alice  Bob
Math      90    75
Science   85    92
English   88    80

Why would you do this? Sometimes it's easier to work with data organized one way versus another. For example, if you wanted to compare all students' math scores, it's easier when math is a single row you can read across.

The cool properties are just rules about what happens when you flip tables:

  1. If you flip twice, you get back to the original (duh!)
  2. If you add two tables then flip, it's the same as flipping both tables first then adding
  3. If you multiply two tables then flip, the order of the tables reverses (this one's tricky — it happens because of how the rows and columns interact when multiplying)

Connections

#flashcards/maths

What is the transpose of a matrix? :: The transpose ATA^T of an m×nm \times n matrix AA is the n×mn \times m matrix where [AT]ij=[A]ji[A^T]_{ij} = [A]_{ji} — rows and columns are swapped.

What is (AT)T(A^T)^T?
(AT)T=A(A^T)^T = A — transposing twice returns the original matrix.
How does transpose interact with addition?
(A+B)T=AT+BT(A + B)^T = A^T + B^T — you can transpose then add, or add then transpose.
How does transpose interact with scalar multiplication?
(kA)T=kAT(kA)^T = k A^T — scalars can move in or out of the transpose.
What is the transpose of a product (AB)T(AB)^T?
(AB)T=BTAT(AB)^T = B^T A^T — the order reverses (most important property!).
What is the transpose of an inverse (A1)T(A^{-1})^T?
(A1)T=(AT)1(A^{-1})^T = (A^T)^{-1} — transpose and inverse commute.
What is a symmetric matrix?
A matrix AA where AT=AA^T = A — elements satisfy aij=ajia_{ij} = a_{ji}.
What is a skew-symmetric matrix?
A matrix AA where AT=AA^T = -A — elements satisfy aij=ajia_{ij} = -a_{ji}, and diagonal elements are zero.
Why does (AB)T=BTAT(AB)^T = B^T A^T instead of ATBTA^T B^T?
Because the summation index in matrix multiplication swaps position during transpose, forcing the matrix order to reverse.
If AA is 2×32 \times 3, what is the size of ATA^T?
ATA^T is 3×23 \times 2 — dimensions flip.

Concept Map

flip rows and columns

defines

element rule

k-th row becomes k-th column

applied twice

restores

over addition

proves

proves

underlies

verified by

Matrix A m x n

Transpose A^T n x m

Def: A^T ij = A ji

Row i col j becomes row j col i

Row vectors become columns

(A^T)^T = A

(A + B)^T = A^T + B^T

Symmetric matrices and orthogonality

Example check A^T 23 = A 32

Hinglish (regional understanding)

Intuition Hinglish mein samjho

Transpose ka matlab hai matrix ko flip karna — rows ko columns bana do aur columns ko rows. Agar tumhare pas ek 2×3 matrix hai (2 rows, 3 columns), toh uska transpose 3×2 hoga (3 rows, 2 columns). Formula simple hai: [AT]ij=[A]ji[A^T]_{ij} = [A]_{ji} — matlab jo element original matrix mein (j,i)(j,i) position petha, woh transpose mein (i,j)(i,j) pe aa jayega.

Properties kafi straightforward hain. Agar tum do baar transpose karo, toh wapas original matrix mil jayegi: (AT)T=A(A^T)^T = A. Addition aur scalar multiplication ke sath transpose distribute ho jata hai: (A+B)T=AT+BT(A+B)^T = A^T + B^T aur (kA)T=kAT(kA)^T = kA^T. Lekin multiplication mein ek twist hai — agar tum do matrices multiply karo phir transpose karo, toh order reverse ho jata hai: (AB)T=BTAT(AB)^T = B^T A^T. Yeh isliye hota hai kyunki matrix multiplication mein jo indices sum hote hain, woh transpose karne pe swap ho jate hain.

Transpose ki understanding bahut zaroori hai kyunki yeh linear algebra mein har jagah dikhta hai — symmetric matrices (jahan AT=AA^T = A), orthogonal matrices (jahan ATA=IA^T A = I), dot products (xy=xTy\mathbf{x} \cdot \mathbf{y} = \mathbf{x}^T \mathbf{y}), aur determinants mein. Ek baar transpose ke properties clear ho gaye, toh aage ke concepts bahut asan ho jate hain.

Ek common galti yeh hai ki log transpose ko inverse samajh lete hain. Lekin transpose sirf ek structural operation hai (flipping indices), jabki inverse ek multiplicative operation hai (jo AA ko undo kare). Woh sirf orthogonal matrices ke liye equal hote hain. Dusri galti hai (AB)T=ATBT(AB)^T = A^T B^T likhna — yad rakho, product ke sath order reverse hota hai!

Go deeper — visual, from zero

Test yourself — Matrices & Determinants — Introduction

Connections