Try   HackMD

Singular value decomposition

Problem

Let

α={v1,v2,v3} with

v1=13[111], v2=12[110], v3=16[112].

Let

β={u1,u2,u3,u4} with

u1=12[1100], u2=12[1100], u3=12[0011], u4=12[0011].

Let

A be a
4×3
matrix such that

[fA]αβ=[300020000000].

For

x=[012],

find

Ax.

Thought

Recall that

[fA]αβ[x]α=[Ax]β. Therefore, we need to transform
x
into
[x]α
and then transform
[Ax]β
into
Ax
to get the answer.

Sample answer

Note that

α is an orthonormal basis, so we have

x=c1v1+c2v2+c3v3

with

ci=x,vi for
i=1,2,3
. By direct computation, we have

x=3v112v236v3 and [x]α=[31236].

Now we may compute

[Ax]β=[fA]αβ[x]α=[33200].

This means

Ax=33u12u2+0u3+0u4=332[1100][1100]=[332+1332100].

This note can be found at Course website > Learning resources.