markdown
Basics of the identity matrix, zero matrix, and transposemd 4f17b0a
lecture/math/linear-algebra/identity-zero-and-transpose-matrices.lecture.n.md
Download PDF

Basics of the identity matrix単位行列たんいぎょうれつ, zero matrix零行列れいぎょうれつ, and transpose転置てんち

1Introduction

The identity matrix単位行列たんいぎょうれつ, the zero matrix零行列れいぎょうれつ, and the transpose転置てんち are reference objects and operations that should be clarified before more complicated matrix calculations.

The identity matrix represents doing nothing, the zero matrix collapses everything to the origin, and transpose exchanges the roles of rows and columns. Keeping these three roles separate makes inverse matrices, orthogonal matrices, symmetric matrices, and Hermitian matrices easier to read.

2Terms and definitions

The n by n identity matrix In is the square matrix whose diagonal entries are 1 and whose other entries are 0.

In=(100010001).

The zero matrix Om,n is the mxn matrix whose entries are all 0. When the size is clear from context, we write simply O.

For an mxn matrix A=(aij), the transpose AT is the nxm matrix obtained by moving the entry in row i, column j to row j, column i.

(AT)ij=aji.

3Intuitive explanation

The identity matrix is the linear map that returns every vector unchanged.

Inv=v.

The zero matrix is the linear map that sends every vector to the zero vector.

Ov=0.

Transpose does not discard information. It rearranges entries like a reflection across the main diagonal, turning information that was read as rows into information that can be read as columns. Therefore transpose is important when relating the row space行空間ぎょうくうかん and the column space列空間れつくうかん.

4Basic laws

When the sizes are compatible, the following identities hold.

AIn=A,ImA=A.
A+O=A.
(AT)T=A.
(A+B)T=AT+BT.
(cA)T=cAT.
(AB)T=BTAT.

The last identity reverses the order. This happens because the entries of AB are made from rows of A and columns of B; after transposing, those roles are exchanged.

5What transpose changes and preserves

Transpose changes the number of rows and columns, the way row space and column space are viewed, and the order of multiplication. An mxn matrix becomes an nxm matrix.

Transpose also preserves several quantities. It preserves the total number of entries, and for square matrices it preserves the determinant.

det(AT)=det(A).

It also preserves rank.

rank(AT)=rank(A).

The determinant and rank identities are previews proved in later lectures. The main point needed in this page is that transpose exchanges rows and columns and reverses the order of products.

For this reason, many statements about rows can be transposed into statements about columns.

6Transpose and elementary row/column operations

An elementary row operation行基本変形ぎょうきほんへんけい is represented by multiplying by an elementary matrix from the left. An elementary column operation列基本変形れつきほんへんけい is represented by multiplying by an elementary matrix from the right.

After transposing, an operation from the left becomes an operation from the right.

(EA)T=ATET.

Thus properties of row operations correspond to properties of column operations through transpose. This correspondence explains why row operations and column operations follow similar rules in determinant computations.

7Worked example: checking the reversed order under transpose

7.1Problem

For

A=(1203-14),B=(210-153),

verify (AB)T=BTAT.

7.2Explanation

First,

AB=(2-12616),

so

(AB)T=(226-116).

On the other hand,

BT=(2051-13),AT=(132-104),

and therefore

BTAT=(226-116).

The two results agree. This example is meant to make the reversal of order under transpose visible with concrete numbers.

8Common misunderstandings

The symbol O has a size. The zero matrix in A+O and the zero matrix in AO may require different sizes.

The symbol I also has a size. In AIn=A and ImA=A, the identity matrices on the two sides may have different sizes.

Transpose is not the inverse. In general, ATA=I is not true. This identity holds only for special matrices such as orthogonal or unitary matrices.

9Final form

The identity matrix does nothing, the zero matrix sends everything to zero, and transpose exchanges rows and columns.

Inv=v,Ov=0,(AT)ij=aji.

The especially important fact about transpose is that it reverses the order of multiplication.

(AB)T=BTAT.

10Exercise links

11Related links

raw .n.md をコピー
loc をコピー (filepath:line ~ line)
copy share link
copy encoded share link
path をコピー
copy share link
copy encoded share link
copy share link
copy encoded share link
タブを全て閉じる