Ask Your Question
0

Dimension of a certain subspace of a matrix space

asked 9 years ago

Giukkya gravatar image

updated 9 years ago

slelievre gravatar image

Si scriva una procedura in Sage che calcoli al variare dell'intero n>=2 la dimensione del sottospazio vettoriale W di End(Mn(R)) costituito da tutte e sole le applicazioni lineari F(A;B) : Mn(R) --> Mn(R) del tipo F(A;B) : X |----> AX + XB al variare di A e B in Mn(R).

Please help me.

Edit: translation contributed by @daniele:

Write a function in Sage that computes the dimension of the vector subspace WEnd(Mn(R)) constructed as following: W consists of linear maps F(A;B):Mn(R)Mn(R) such that F(A;B)::XAX+XB with A, B in Mn(R). Here, n2.

Preview: (hide)

Comments

Google translate from Italian gives this very bad rendering, but maybe it will help someone help this person: "Is written to a procedure in which Sage calculations to vary the entire n> = 2, the dimension of the vector subspace W of End (Mn (R)) consisting of all and only the linear applications F (A; B): Mn (R) -> Mn (R) of the type F (A; B): X | ----> AX + XB to vary by A and B in Mn (R)."

kcrisman gravatar imagekcrisman ( 9 years ago )

I don't know whether we have arbitrary endomorphism rings implemented, but I would guess that if you could write it as a matrix space you should be able to implement this. It's probably not built-in.

kcrisman gravatar imagekcrisman ( 9 years ago )
1

I can not edit, still. Here below a translation:

Write a function in Sage, with the aim to compute the dimension of the vector subspace WEnd(Mn(R)) constructed as following: W consists of linear maps F(A;B):Mn(R)Mn(R) such that F(A;B):XAX+XB with A, B in Mn(R). Here, n2.

daniele gravatar imagedaniele ( 9 years ago )

1 Answer

Sort by » oldest newest most voted
0

answered 8 years ago

dan_fulea gravatar image

updated 8 years ago

It is arguable, that

lambda n:    2*n^2-1    # if n in ZZ and n > 0 else None

is the solution getting the full score in an exam. (But this is always a good test for the sense of humor of the examiner. And for the own courage in real life.)

Instead, we may translate as follows from the Italian:

Write a function in Sage that computes the matrix of the linear map F, written in suitable bases,

  • from the space VA×VB, where VA=VA(n), VB=VB(n) are two copies of Mn(R)

  • to the space W=W(n) of endomorphisms of Mn(R),

constructed as follows: For AVA and BVB we associate F(A,B)=F(A,0)+F(0,B) which acts on a matrix X as follows: F(A,B)(X)=AX+XB.

Then compute the rank for some small values of n.

My choice of the bases is as follows. Let EA(j,k) be the standard generators of VA. And EB(j,k) be the standard generators of VB. It is clear that the family of 2n2 endomorphisms in W of the shape F( EA(j,k),0 ) and F( 0,EB(j,k) ) generate the image of F. We associate the matrix for them and the standard generators of W, which are the homomorphisms E( (s,t)(u,v) ) mapping all standard generators to zero, except for E(s,t), which is mapped to E(u,v).

It is clear now, that a non-trivial liniar combination leads to an equation of the shape AX+XB0, an identity in X. (A and B come by assembling the coefficients in the non-trivial linear combination.) This is the case only for A=B a diagonal matrix, moreover a scalar times unit matrix. (This was exactly my first exercise in von Neuman algebras.) So the dimension of the kernel is one. The following lines compute the matrix explicitly, and the rank is as expected. The programmer has no problems with the linear algebra, but rather with the reshaping of a matrix as a vector.

def FMatrix( n ):
    R = range(n)
    A = matrix( QQ, n^4, n^2+n^2 )
    count_columns = 0
    for j, k in cartesian_product( [R, R] ):
        # the elementary matrix (j,k) acts on the vector of morphisms ( (s,t) -> (u,v) )
        # first of all from the left, then from the right,

        # from the left
        count_rows = 0
        for s, t, u, v in cartesian_product( [R,R,R,R] ):
             # is (j,k) o (s,t) = (u,v) ?
             if j == u and k == s and t == v:
                 A[ count_rows, count_columns ] = 1
             count_rows += 1
        count_columns += 1

        # from the right
        count_rows = 0
        for s, t, u, v in cartesian_product( [R,R,R,R] ):
             # is (s,t) o (j,k) = (u,v) ?
             if s == u and t == j and k == v:
                 A[ count_rows, count_columns ] = 1
             count_rows += 1
        count_columns += 1

    return A

for n in [1..4]:
    print "Dimension of W(%s) is: %s" % ( n, FMatrix(n).rank() )

And after a short thrill:

Dimension of W(1) is: 1
Dimension of W(2) is: 7
Dimension of W(3) is: 17
Dimension of W(4) is: 31
Preview: (hide)
link

Your Answer

Please start posting anonymously - your entry will be published after you log in or create a new account.

Add Answer

Question Tools

1 follower

Stats

Asked: 9 years ago

Seen: 694 times

Last updated: Mar 03 '17