Processing math: 100%

[Linear Algebra] 12. Change of basis

2022. 3. 12. 13:26Mathematics/Linear Algebra

Standard way to describe vector is using coordinates [xy]. each coordinate is scalar to stretches or squishes basis vectors, normally ˆi and ˆj which are standard basis vectors.

 

In this section, think about the idea of using different set of basis vectors.

 

Let's define new basis vectors b1 and b2 which are [v1v2] and [w1w2] described by standard perspective. But in new perspective, those vectors have coordinates [10] and [01].

 

Even though we are looking at same vectors, we use different vectors to describe them. Basis vectors are nothing more than tool to describe vectors.


Translate between coordinates systems

new language standard language
If new perspective describes a vector with coordinates [xy], this vector is xb1+yb2. Because b1 is [v1v2] and b2 is [w1w2] in standard perspective, this vector is (xv1+yw1)ˆi+(xv2+yw2)ˆj. This process is matrix-vector multiplication:

[v1w1v2w2][xy]

Geometrically, this matrix translates standard grid into new grid.

Numerically, it translates a vector in new language to standard language.

 

standard language new language
In this case, use inverse matrix:

[v1w1v2w2][xnewynew]=[xstandardystandard][xnewynew]=[v1w1v2w2]1[xstandardystandard]

 

This is a way to translate the description of individual vectors back and forth between different languages.

Representing same transformation in both standard and new language

For example, [0110] represents 90 rotation of space. It means that where ˆi and ˆj land, not b1 and b2 land.

 

Common way to represent same transformation in new language: 0). start with vector written in new language. 1). translate it into standard language, 2). apply the transformation matrix, 3). apply inverse change of basis matrix to get into new language:

[v1w1v2w2]1[0110][v1w1v2w2][xnewynew]

 

In general, expression like V1AV suggests a mathematical empathy. 1). A represents some transformation, and 2). V1 and V represent the shift of perspective, And 3). V1AV represents that same transformation in different language.