Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Add
SpinorNorm
#4668Add
SpinorNorm
#4668Changes from all commits
f4f4cb3
e0e7221
47844d4
6ce4d56
bacf28e
4f219d5
5865938
5b95e3b
b0e19a5
05dfc17
2beb217
c9ccd82
f0d91e2
f9bda75
File filter
Filter by extension
Conversations
Jump to
There are no files selected for viewing
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Actually it should be made clear (and perhaps also checked) that this function only applies to odd characteristic. Right now it always returns +1 in even characteristic; which is of course consistent with the notion of Spinor norm; but if one is interested in even characteristic, then one uses a different definition (but I need to look up the details, it's been too long). Anyway, if you don't need even char, it's fine to not cover it; but it simply should be made clear what his here and what not.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
In Taylors book "The geometry of the classical groups" there is no difference in the characteristic. But if there is an other definition, I change this.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
You are right, in Taylor's book there is no special case here. Instead, Taylor gives a definition of
SO(V)
that differs from that used in GAP: in even characteristic, in GAP we have that SO and GO return the same group. But for Taylor, SO is always an index 2 subgroup of GO, namely the kernel of the Dickson invariantD:O(V) -> C_2
. This then renders Theorem 11.51 true, where he shows that\Omega(V)
is the intersection ofSO(V)
with the kernel of the Spinor norm. Unfortunately, this is false in GAP.However, other authors handle this differently from Taylor, by using the "usual" definition for
SO(V)
(kernel of the determinant map onO(V)
) and then defining the Spinor norm differently (sorry got no good reference right now, but see e.g. https://groupprops.subwiki.org/wiki/Spinor_norm). And Magma simply returns the Dickson invariant in char 2.I am not saying this is better, just that it is a potential point of confusion. So it'd be good to document explicitly what happens in char 2.
So I see the following options:
DicksonInvariant
for that)Omega(V) = SO(V) \cap ker(SpinorNorm)
becomes true within GAPRight now you went with option 2, which is fine by me. It means we can decide on whether to go to option 1 or 3 at a later point in the future.