Linear transformations + writing of output matrix

JamesGoh
Messages
140
Reaction score
0

Homework Statement



Given the following defined transformation

T(a + bt+ct^{2}) = (a+c) - (c+b)t + (a+b+c)t^{2}

find the matrix with respect to the standard basis


From my understanding, the standard basis for a 3 element vector would
be

(0,0,1)^{T} (0,1,0)^{T} (1,0,0)^{T}

Homework Equations



T(u+v)= T(u) + T(v)

λT(v) = T(λv)

The Attempt at a Solution




okay, if I used the defined transformation, I get the following when I put any of the standard basis into the transformation

T(0,0,1)^{T}=1 - t + t^{2}<br /> <br /> <br /> <br /> T(0,1,0)^{T} = 0 -t + t^{2}<br /> <br /> <br /> <br /> T(1,0,0)^{T} = 1 - 0 + t^{2}<br /> <br />

If I am correct, the matrix should be the following

1 -1 1
0 -1 1
1 0 1

However, the tutorial answers have it in the form

1 0 1

-1 -1 0

1 1 1

Shouldn't my answer be correct, since the t and t^{2} terms are different parts of a linear equation which is why they can't be in the same column ?
 
Physics news on Phys.org
T(x) = A.x

where
x = [c b a]^T
A is the transformation matrix


The way you have put your A matrix, we would need to do following
T(p) = p.A
p = [c b a]
 
evidently, the "standard basis" being referred to is {1,t,t2}.

that is: a+bt+ct2<---> (a,b,c)

(1,0,0) <--> 1
(0,1,0) <--> t
(0,0,1) <--> t2

with respect to a given basis, B = {v1,...,vn}, the matrix of a linear transformation T:V-->V, [T]B, is the matrix such that:

[T]B[vj]B = [T(vj)]B,

where the multiplication on the left is an nxn matrix multiplied by an nx1 matrix.

of course, [vj]B = [0,0,...1,...,0]B, where the 1 is in the j-th place, which then gives us the j-th column of [T]B.
 
Deveno said:
evidently, the "standard basis" being referred to is {1,t,t2}.

Does this case of "standard basis" only apply for any 3-element vector input written in the form of a parabolic equation ?
 
Yes. Your "standard basis", <1, 0, 0>, <0, 1, 0>, and <0, 0, 1>, would be correct for R^3. Of course, the assignment <1, 0, 0>->1, <0, 1, 0>->t, <0, 0, 1>->t^2 maps one to the other.
 
There are two things I don't understand about this problem. First, when finding the nth root of a number, there should in theory be n solutions. However, the formula produces n+1 roots. Here is how. The first root is simply ##\left(r\right)^{\left(\frac{1}{n}\right)}##. Then you multiply this first root by n additional expressions given by the formula, as you go through k=0,1,...n-1. So you end up with n+1 roots, which cannot be correct. Let me illustrate what I mean. For this...
Back
Top