Finding T(v) relative to B and B'

  • Thread starter Thread starter dzimitry
  • Start date Start date
  • Tags Tags
    Relative
Join the discussion
Registration is free. Ask a follow-up in this thread, or start your own.
3 replies · 3K views
dzimitry
Messages
4
Reaction score
0

Homework Statement



find T(v) using the matrix relative to B and B'

T(x, y, z) = (2x, x + y, y + z, x + z)
v = (1, -5, 2)
B = { (2, 0, 1), (0, 2, 1), (1, 2, 1) }
B' = { (1, 0, 0, 1), (0, 1, 0, 1), (1, 0, 1, 0), (1, 1, 0, 0) }


Homework Equations





The Attempt at a Solution



T(2, 0, 1) = (4, 2, 1, 3)
= 4(1, 0, 0, 1) + 2(0, 1, 0, 1) + 1(1, 0, 1, 0) + 3(1, 1, 0, 0)
= (8, 5, 1, 6)
T(0, 2, 1) = (0, 2, 3, 1)
= (4, 3, 3, 2)
T(1, 2, 1) = (2, 3, 3, 2)
= (7, 5, 3, 5)

A = 8 4 7
5 3 5
1 3 3
6 2 5

Av = (2, 0, -8, 6)

but if the person I am checking against is right, the answer should be (2, -4, -3, 3)

I am confused as to if I can even use the method I am using in this case.

Thanks in advance
 
Physics news on Phys.org
that's a matrix A btw, everything that was indented got shifted.
 
dzimitry said:

Homework Statement



find T(v) using the matrix relative to B and B'

T(x, y, z) = (2x, x + y, y + z, x + z)
v = (1, -5, 2)
B = { (2, 0, 1), (0, 2, 1), (1, 2, 1) }
B' = { (1, 0, 0, 1), (0, 1, 0, 1), (1, 0, 1, 0), (1, 1, 0, 0) }


Homework Equations





The Attempt at a Solution



T(2, 0, 1) = (4, 2, 1, 3)
= 4(1, 0, 0, 1) + 2(0, 1, 0, 1) + 1(1, 0, 1, 0) + 3(1, 1, 0, 0)
No, (4, 2, 1, 3) is NOT equal to (8, 5, 1, 6)! You are doing this backwards. You want to find numbers, a, b, c, d, such that (4, 2, 1, 3)= a(1, 0, 0, 1)+ b(0, 1, 0, 1)+ c(1 , 0, 1, 0)+ d(1, 1, 0, 0). That is you jeed to solve a+ c+ d= 4, b+ d= 2, c= 1, and a+ b= 3.
Then
[tex]\begin{bmatrix}a \\ b\\ c\\ d\end{bmatrix}[/tex]
will be the first column of the matrix.

= (8, 5, 1, 6)
T(0, 2, 1) = (0, 2, 3, 1)
= (4, 3, 3, 2)
T(1, 2, 1) = (2, 3, 3, 2)
= (7, 5, 3, 5)

A = 8 4 7
5 3 5
1 3 3
6 2 5

Av = (2, 0, -8, 6)

but if the person I am checking against is right, the answer should be (2, -4, -3, 3)

I am confused as to if I can even use the method I am using in this case.

Thanks in advance
 
ok that makes sense...and for the vector v = (1, -5, 2), do I need to solve a system like
(1, -5, 2) = a(2, 0, 1) + b(0, 2, 1) + c(1, 2, 1) and use (a, b, c) as my v and multiply that by A?