Ask Your Question
0

How to find orthogonal subspace of a subspace

asked 2021-10-14 20:52:10 +0200

Sanu gravatar image

I have written a code:

n=4
V = VectorSpace(GF(2),n) C=[[0,0,1,0], [1,1,1,0]]
U = V.subspace(C)

How to find orthogonal subspace of U?

edit retag flag offensive close merge delete

1 Answer

Sort by ยป oldest newest most voted
1

answered 2021-10-15 13:01:54 +0200

philipp7 gravatar image

You can use the method complement. In your case:

sage: U_perp = U.complement()
sage: U_perp
Vector space of degree 4 and dimension 2 over Finite Field of size 2
Basis matrix:
[1 1 0 0]
[0 0 0 1]

We can easily check that this is indeed the orthogonal complement:

sage: [ b*c for b in U_perp.basis() for c in U.basis() ]
[0, 0, 0, 0]
edit flag offensive delete link more

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: 2021-10-14 20:52:10 +0200

Seen: 714 times

Last updated: Oct 15 '21