Skip to content

Commit fe38d3b

Browse files
committed
Fixing typo with g_i^-1 implementation in Yokonuma-Hecke algebras.
1 parent 209ae4c commit fe38d3b

File tree

1 file changed

+17
-8
lines changed

1 file changed

+17
-8
lines changed

src/sage/algebras/yokonuma_hecke_algebra.py

Lines changed: 17 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -447,13 +447,17 @@ def inverse_g(self, i):
447447
448448
sage: Y = algebras.YokonumaHecke(2, 4)
449449
sage: [2*Y.inverse_g(i) for i in range(1, 4)]
450-
[(q^-1+q) + 2*g[1] + (q^-1+q)*t1*t2,
451-
(q^-1+q) + 2*g[2] + (q^-1+q)*t2*t3,
452-
(q^-1+q) + 2*g[3] + (q^-1+q)*t3*t4]
450+
[(q^-1-q) + 2*g[1] + (q^-1-q)*t1*t2,
451+
(q^-1-q) + 2*g[2] + (q^-1-q)*t2*t3,
452+
(q^-1-q) + 2*g[3] + (q^-1-q)*t3*t4]
453+
sage: all(Y.inverse_g(i) * Y.g(i) == Y.one() for i in range(1, 4))
454+
True
455+
sage: all(Y.g(i) * Y.inverse_g(i) == Y.one() for i in range(1, 4))
456+
True
453457
"""
454458
if i < 1 or i >= self._n:
455459
raise ValueError("invalid index")
456-
return self.g(i) + (~self._q + self._q) * self.e(i)
460+
return self.g(i) + (~self._q - self._q) * self.e(i)
457461

458462
class Element(CombinatorialFreeModule.Element):
459463
def __invert__(self):
@@ -468,10 +472,15 @@ def __invert__(self):
468472
sage: t.inverse() # indirect doctest
469473
t1^2*t2^2*t3^2
470474
sage: [3*~(t*g) for g in Y.g()]
471-
[(q^-1+q)*t2*t3^2 + (q^-1+q)*t1*t3^2
472-
+ (q^-1+q)*t1^2*t2^2*t3^2 + 3*t1^2*t2^2*t3^2*g[1],
473-
(q^-1+q)*t1^2*t3 + (q^-1+q)*t1^2*t2
474-
+ (q^-1+q)*t1^2*t2^2*t3^2 + 3*t1^2*t2^2*t3^2*g[2]]
475+
[(q^-1-q)*t2*t3^2 + (q^-1-q)*t1*t3^2
476+
+ (q^-1-q)*t1^2*t2^2*t3^2 + 3*t1^2*t2^2*t3^2*g[1],
477+
(q^-1-q)*t1^2*t3 + (q^-1-q)*t1^2*t2
478+
+ (q^-1-q)*t1^2*t2^2*t3^2 + 3*t1^2*t2^2*t3^2*g[2]]
479+
sage: g = prod(Y.g())
480+
sage: ~g * g == Y.one()
481+
True
482+
sage: g * ~g == Y.one()
483+
True
475484
476485
TESTS:
477486

0 commit comments

Comments
 (0)