Matrices of linear transformation

Join the discussion
Ask a follow-up here, or get your own question answered by working scientists, mathematicians and engineers — people, not an autocomplete.
Real named experts · corrections over time · the nuance an AI answer skips
6 replies · 2K views
eaglesmath15
Messages
7
Reaction score
0
1. The question
Let V be a vector space with the ordered basis β={v1, v2,...,vn}. Define v0=0. Then there exists a linear transformation T:V→V such that T(vj) = vj+vj-1 for j=1,2,...,n. Compute [T]β.


Homework Equations


[T]γβ = (aij), 1≤i≤m, 1≤j≤n (where m is dimension of γ and n is the dimension of β (I think)


The Attempt at a Solution


Basically, I know that T(v1)= v1, and T(v2) = v2 + v1, all the way up to T(vn) = vn + vn-1, but I'm not sure how this helps me form the matrix. Also, I know that the matrix is generally the dimension of the range by the dimension of the domain, which would make this matrix nxn, but I'm just not sure how to get it.
 
Physics news on Phys.org
jbunniii said:
Let's start with the first equation, ##T(v_1) = v_1##. What is ##[v_1]_{\beta}##?
Do you multiply T(v1) by beta?
 
eaglesmath15 said:
Do you multiply T(v1) by beta?
No, ##\beta## isn't a number, so you can't multiply by it. It is an ordered list of the elements of a basis for the vector space ##V##, just like you said: ##\beta = (v_1, v_2, \ldots v_n)##.

If ##A## is a linear transformation from ##V## to ##V##, the notation ##[A]_\beta## means the matrix of ##A## with respect to the basis ##\beta##. Similarly, if ##v## is a vector in ##V##, then ##[v]_\beta## means the matrix (in this case it will be a column vector) of ##v## with respect to ##\beta##.
 
jbunniii said:
No, ##\beta## isn't a number, so you can't multiply by it. It is an ordered list of the elements of a basis for the vector space ##V##, just like you said: ##\beta = (v_1, v_2, \ldots v_n)##.

If ##A## is a linear transformation from ##V## to ##V##, the notation ##[A]_\beta## means the matrix of ##A## with respect to the basis ##\beta##. Similarly, if ##v## is a vector in ##V##, then ##[v]_\beta## means the matrix (in this case it will be a column vector) of ##v## with respect to ##\beta##.
Right, I should have clarified. Do you multiply v1 by the components of beta? So the column vector would be (v1v1 v1v2 ... v1vn) (except going down of course, not across)?
 
Do you know what are the coordinates of a vector in a basis?
[itex][v_{1}]_β[/itex] is just the coordinates of [itex]v_1[/itex] in β

Let's be [itex]β={v_1, v_2,...,v_n}[/itex]
If β is a basis of a vector space V, then all v[itex]\in[/itex]V can be write as:
[itex]v=\sum _{i=1}^{n}\alpha _{i}v_i[/itex]
And [itex]\alpha_1, \alpha_2,...,\alpha_n[/itex] are unique.
Then:
[itex](\alpha_1, \alpha_2,...,\alpha_n)[/itex] is the coordinates of V in B.

Then:
If [itex][T]_{β}=\begin{pmatrix}<br /> a_{11} &... &a_{1n} \\ <br /> \vdots & &\vdots \\ <br /> a_{n1} &... & a_{nn}<br /> \end{pmatrix}[/itex]
and
[itex][v]_{β}=(\alpha_1, \alpha_2,...,\alpha_n)[/itex]
Then
[itex] [T]_{β} \cdot [v]_{β}<br /> =<br /> \begin{pmatrix}<br /> a_{11} &... &a_{1n} \\ <br /> \vdots & &\vdots \\ <br /> a_{n1} &... & a_{nn}<br /> \end{pmatrix}<br /> \cdot <br /> \begin{pmatrix}<br /> \alpha_{1} \\ <br /> \vdots \\ <br /> \alpha_{n}<br /> \end{pmatrix}[/itex]

Note: With the definition I'm using (and I learned in my Linear Algebra's course), we shortcut [itex](A.x^t)^t[/itex] as [itex]A.x[/itex], that's why I'm talking of a row vector but when I use the matrix product it's a column vector.
If something on my post is confusing feel free to ask me to clarify it.
 
Last edited:
Have you looked at simple two and three dimensional examples?
In two dimensions, [itex]T(v_1)= v_1[/itex] and [itex]T(v_2)= v_2- v1[/itex]. Using those as columns, the matrix representation of T is
[tex]\begin{bmatrix}1 & -1 \\ 0 & 1 \end{bmatrix}[/tex]

In three dimensions, [itex]T(v_1)= v_1[/itex], [itex]T(v_2)= v_2- v_1[/itex] and [itex]T(v_3)= v_3- v_2[/itex]. Using those as columns, thew matrix representation of T is
[tex]\begin{bmatrix}1 & -1 & 0 \\ 0 & 1 & -1 \\ 0 & 0 & 1\end{bmatrix}[/tex]