markdown
Change of basis and similarity - Basic Exercisesmd 0a121dd
exercise/math/linear-algebra/change-of-basis-and-similarity.exercise.n.md

Change of basis基底変換きていへんかん and similarity相似そうじ - Basic Exercises

date2026-06-06document_iddoc_468d9c3a02850d00241f2dabfc143d41description基底変換・座標変換・相似変換を、線型写像そのものと座標表示の区別から確認する基本演習である。prerequisites線型性の基本 / 線型写像と行列 / 行列計算と線型変換 / 基底変換と相似type問題演習content_typeexercisestatusactiverelateddata/lecture/math/linear-algebra/linearity-basics.lecture.n.md / data/lecture/math/linear-algebra/linear-maps-and-matrices.lecture.n.md / data/exercise/math/linear-algebra/matrix-computation-and-linear-transformations.exercise.n.md / data/lecture/math/linear-algebra/complex-inner-products-and-unitary-matrices.lecture.n.md / data/lecture/math/linear-algebra/change-of-basis-and-similarity.lecture.n.md
mathlinear-algebraexercisechange-of-basissimilarity
data/lecture/math/linear-algebra/change-of-basis-and-similarity.lecture.n.md data/lecture/math/linear-algebra/linear-maps-and-matrices.lecture.n.md data/lecture/math/linear-algebra/complex-inner-products-and-unitary-matrices.lecture.n.md

1Exercise plan

A change of basis基底変換きていへんかん changes the coordinate representation座標表示ざひょうひょうじ, not the vectorベクトル itself or the linear map線型写像せんけいしゃぞう itself. Distinguish old-basis coordinates, new-basis coordinates, and representation matrices表現行列ひょうげんぎょうれつ.


Keep the convention fixed throughout: in these problems, P sends new-basis coordinates to old-basis coordinates, so [x]old=P[x]new. This is why a representation matrix changes as P-1AoldP. Reversing the convention reverses the formula, so the order cannot be treated as cosmetic.

For rectangular maps, use separate basis changes on the domain and codomain and expect Q-1AP. For every proposed change-of-basis matrix, first check invertibility; if P is singular, the columns do not form a basis and the operation collapses information instead of merely relabeling coordinates.

Determinants and eigenvalues in this exercise are previews for later exercise sets. The main change-of-basis computations check invertibility by column independence or by an explicit inverse matrix.

2Check problem: change-of-coordinates matrix座標変換行列ざひょうへんかんぎょうれつ

Let the standard basis標準基底ひょうじゅんきてい of R2 be the old basis, and let the new basis基底きてい be

b1=(11),b2=(1-1).

Find the new-basis coordinates [x]new of

x=(31).

2.1Answer

Put the new basis vectors in the columns:

P=(111-1).

This matrix sends new coordinates to old coordinates:

[x]old=P[x]new.

Solve

(31)=s(11)+t(1-1).

Then

s+t=3,s-t=1,

so s=2 and t=1. Therefore

[PARSE ERROR: Undefined("Command(\"boxed\")")][x]new=(21).

The vector is unchanged; only its coordinate description changes.


3Check problem: similarity transformation相似変換そうじへんかん

Let

Aold=(2103),P=(111-1).

Find Anew=P-1AoldP.

3.1Answer

The determinant check is a preview. Equivalently, the two columns are linearly independent, and the displayed inverse can be verified by multiplication.

Since detP=-20,

P-1=(121212-12).

Also

AoldP=(2103)(111-1)=(313-3).

Thus

Anew=(121212-12)(313-3)=(3-102).

3.2Explanation

The right-side P converts a new-coordinate input to old coordinates. Aold applies the map in old coordinates. The left-side P-1 converts the result back to new coordinates.


4Check problem: changing bases in the domain定義域ていぎいき and codomain終域しゅういき

For T:R2R3, let

Aold=(100111),P=(1101),Q=I3.

Find Anew=Q-1AoldP.

4.1Answer

Since Q=I3,

Anew=AoldP=(100111)(1101)=(110112).

4.2Explanation

For a rectangular matrix長方行列ちょうほうぎょうれつ, the form is Q-1AP rather than similarity, because domain and codomain have separate bases.


5Check problem: quantities preserved by similarity

For

A=(2103),B=(3-102),

confirm that traceトレース, determinant行列式ぎょうれつしき, and eigenvalues固有値こゆうち agree.

Preview note: determinants and eigenvalues are developed later. Here this is an advanced check using the 2 by 2 determinant formula and the fact that the eigenvalues of an upper triangular matrix are its diagonal entries.

5.1Answer

tr(A)=5=tr(B),detA=6=detB.

Both are upper triangular, so their eigenvalues are the diagonal entries:

A:2,3,B:3,2.

The eigenvalues agree up to order.

5.2Explanation

Similarity is an alternative representation of the same linear map. Entries may change, but basis-independent quantities are preserved.


6Check problem: checking invertibility可逆性かぎゃくせい

Can

P=(1224)

be used as a change-of-coordinates matrix?

6.1Answer

No. The second column is twice the first:

(24)=2(12).

Thus the columns are linearly dependent線型従属せんけいじゅうぞく. Also

detP=1·4-2·2=0,

so P-1 does not exist.

6.2Explanation

A non-invertible matrix collapses information. A change of basis must only relabel coordinates, so its matrix must be invertible.


For a change of basis, the columns of P are the new basis vectors written in the old coordinates, so they must be linearly independent線型独立せんけいどくりつ. The determinant calculation confirms the same obstruction: using the inverse formula would require division by detP, and here that value is 0. Thus this matrix is not a coordinate-change matrix.

The determinant explanation is a preview. The main reason is already visible from the columns: the second column is twice the first, so the two columns cannot form a basis.

7Supplementary problems: failure examples and order

7.1Problem 6

Explain from invertibility why

b1=(10),b2=(20)

are not a basis of R2.

7.2Answer example

Putting them in columns gives

P=(1200),

which is not invertible. Coordinates would not recover vectors uniquely, so the vectors are not a basis.

7.3Problem 7

For

A=(2103),P=(1101),

compute P-1AP and PAP-1.

7.4Answer example

P-1=(1-101).

Then

P-1AP=(2003),PAP-1=(2203).

They are not the same, so the order cannot generally be swapped.


Problem 6 checks that using a non-basis breaks coordinate change: the matrix built from b1,b2 collapses the plane and cannot recover vectors uniquely. Problem 7 checks the order in a similarity transformation相似変換そうじへんかん. The expressions P-1AP and PAP-1 look similar, but they describe opposite coordinate conventions and generally give different matrices.

9Summary

  • In a change of basis基底変換きていへんかん, the coordinate representation changes, not the vector itself.
  • A similarity transformation相似変換そうじへんかん P-1AP represents the same linear map in another basis.
  • Changing bases in the domain and codomain separately gives Q-1AP.
  • Whenever P-1 is used, confirm that P is invertible可逆かぎゃく.
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
タブを全て閉じる