Loading [MathJax]/jax/output/HTML-CSS/jax.js
Ask Your Question
1

How to obtain a linear space from the direct sum of two spaces?

asked 0 years ago

Ycs gravatar image

Dear all,

Given a linear space V of dimension m over a finite field. W1 is t1-dimensional space of V. W2 is t2-dimensional space of V . W1 and W2 are in direct sum. If W=W1+W2 and W1 are known, then how to solve W2 by Sage?


def random_small_space_gen(t,m):
    B = matrix(GF(q),t,m,0)
    while B.rank() != t:
        B = random_matrix(GF(q),t,m)
    return B.row_space()

(q,m,t1,t2) = (2,30,3,4)
Fqm = GF(q)

V = random_small_space_gen(m,m)
W1 = random_small_space_gen(t1,m)
W2 = random_small_space_gen(t2,m)
W = W1 + W2
print("W :", W)
print()
print("W1 :", W1)

Thanks all very much!

Preview: (hide)

1 Answer

Sort by » oldest newest most voted
0

answered 0 years ago

Max Alekseyev gravatar image

updated 0 years ago

A possible solution:

W.intersection(W1.complement())

UPDATE. As explained in the comments, this does not quite work over finite fields. Here is a somewhat slower alternative:

# computes the complement of U in A
def mycomplement(U,A):
    R = A.subspace([])
    while U.dimension() < A.dimension():
        while True:
            if (v := A.random_element()) not in U:
                break
        U += span([v])
        R += span([v])
    return R

W2_ = mycomplement(W1,W)
assert W == W1 + W2_ and W1.intersection(W2_).dimension()==0
Preview: (hide)
link

Comments

Thanks! But I seem not to get a successful test!

 def random_small_space_gen(t,m):
    B = matrix(GF(q),t,m,0)
    while B.rank() != t:
        B = random_matrix(GF(q),t,m)
    return B.row_space()

(q, m, t1, t2) = (2,30,3,4)

V = random_small_space_gen(m,m)

while W2.intersection(W1) == 0:
    W1 = random_small_space_gen(t1, m)
    W2 = random_small_space_gen(t2, m)


print("Is intersection of W1 and W2 zero space?", W2.intersection(W1))
W = W1 + W2

print()
print("W2 :\n", W2.basis_matrix())
print()
W2_test = W.intersection(W1.complement())
print("W2_test :\n", W2_test.basis_matrix())
print()
print(W2_test == W2)
Ycs gravatar imageYcs ( 0 years ago )

Something fishy is going on. However, the condition while W2.intersection(W1) == 0: looks wrong anyway. Perhaps, you meant while W2.intersection(W1).dimension() != 0: here.

Max Alekseyev gravatar imageMax Alekseyev ( 0 years ago )

Thank you very much! Even using the condition while W2.intersection(W1).dimension() != 0:, I also do not get a successful test! Does the code W2_test = W.intersection(W1.complement()) need to be improved by other sage functions?

Ycs gravatar imageYcs ( 0 years ago )

The explanation for this behavior is given in the docs:

All these complements are only done with respect to the inner product in the usual basis. Over finite fields, this means we can get complements which are only isomorphic to a vector space decomposition complement.

See also an example given there.

Max Alekseyev gravatar imageMax Alekseyev ( 0 years ago )

Hi, this means that there exists no feasible way to the problem on Sage? There exists no feasible way to the problem on finite fields?

Ycs gravatar imageYcs ( 0 years ago )

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: 0 years ago

Seen: 295 times

Last updated: Sep 20 '24