Proving Linear Transformation for C*A^2

squaremeplz
Messages
114
Reaction score
0

Homework Statement



C is a fixed n*n matrix. Is T(A) =CA^2 a linear transformation on R^(n*n)

Homework Equations



Linear transform requirements:

1. T(A + Y) = T(A) + T(Y)

2. T(c*A) = c*T(A)

The Attempt at a Solution



I'm confused as to how the linear transform requirements apply to matrices. i.e. should I do the proof as column vectors of A i.e.

T(a_1 + a_2 + .. + a_n) = T(a_1) + T(a_2) + ... + T(a_n)

and

T(c*a_1 + c*a_2 + .. + c* a_n) = c* (T(a_1) + T(a_2) + ... + T(a_n))


I think that this is not a linear transformation since scalar multiplication does not hold

i.e. L(c*A) =/= c*L(A)

I'm just looking for a nudge in the right direction and any input is appreciated.

Thank You
 
Physics news on Phys.org
squaremeplease said:

Homework Statement



C is a fixed n*n matrix. Is T(A) =CA^2 a linear transformation on R^(n*n)

Homework Equations



Linear transform requirements:

1. T(A + Y) = T(A) + T(Y)

2. T(c*A) = c*T(A)

The Attempt at a Solution



I'm confused as to how the linear transform requirements apply to matrices. i.e. should I do the proof as column vectors of A i.e.

T(a_1 + a_2 + .. + a_n) = T(a_1) + T(a_2) + ... + T(a_n)

and

T(c*a_1 + c*a_2 + .. + c* a_n) = c* (T(a_1) + T(a_2) + ... + T(a_n))


I think that this is not a linear transformation since scalar multiplication does not hold

i.e. L(c*A) =/= c*L(A)

I'm just looking for a nudge in the right direction and any input is appreciated.

Thank You
You don't need to work with the column vectors at all, just the matrices. For arbitrary n X n matrices A and B, what is T(A + B)? Is it the same as T(A) + T(B)?

And since you believe that scalar multiplication doesn't hold for transformation, you should show why T(cA) != cT(A).
 
Thanks for the quick reply!

1. T(A+B) = C(A+B)^2
= C(A+B)(A+B)
= C(A^2 + 2AB + B^2)
= C(A^2) + C(2AB) + C(B^2)
= T(A) + T(B) + C(2AB)
T(A+B) =/= T(A) + T(B)

2. T(b*A) = C(b*A)^2 : where b is some scalar

= b^2 * CA^2

= b^2 * T(A)
 
Small correction, otherwise it's ok: Since you deal with matrices, in general AB != BA. So you have (A+B)(A+B) = A² + AB + BA + B².
 
thanks! got to keep an eye on the details :)
 
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