-
-
Notifications
You must be signed in to change notification settings - Fork 704
Closed
Description
This is wrong:
sage: S2 = SteenrodAlgebra(2)
sage: z = S2(0)
sage: z.additive_order()
2
looking at the code, it's easy to see why this happens...
def additive_order(self):
"""
The additive order of any element of the mod p Steenrod algebra is p.
OUTPUT:
order -- positive prime number
EXAMPLES:
sage: z = Sq(4) + Sq(6) + Sq(0)
sage: z.additive_order()
2
"""
return self._prime
Component: algebra
Issue created by migration from https://trac.sagemath.org/ticket/5061