Goetz–Kirkman–Moore–Vashaw R
A monomial-type quadratic algebra with no scalar parameters, built from the combinatorics of a dual reflection group. Each relation pairs two distinct monomials with sign \(\pm 1\); the Kodaira–Spencer map vanishes, so the family is a rigid point of the moduli space.
- Relations
- \(x_1 x_2 + x_2 x_1\)
- \(x_1 x_3 + x_4 x_2\)
- \(x_1 x_4 - x_3 x_2\)
- \(x_2 x_3 - x_4 x_1\)
- \(x_2 x_4 + x_3 x_1\)
- \(x_3 x_4 + x_4 x_3\)
- Centre
- \(\dim \operatorname{Z}(A)_2 = 2\), \(\dim \operatorname{Z}(A)_3 = 0\), \(\dim \operatorname{Z}(A)_4 = 6\).
- Hochschild cohomology of \(A\)
- \(\mathrm{HH}^\bullet_0(A) = (1, 2, 12, 22)\)
- Hochschild cohomology of \(\operatorname{qgr} A\)
- \(\mathrm{HH}^\bullet(\operatorname{qgr} A) = (1, 3, 21, 23)\)
- Kodaira–Spencer
- rank \(0\)
injective: yes
surjective: no - Introduced
- 2024, arXiv:2410.08959. The algebra "R" of Goetz–Kirkman–Moore–Vashaw, one of three dimension-four Artin–Schelter regular algebras they construct from a dual reflection group of order 16. It is a rigid (parameter-free) example.
References
Goetz, P., Kirkman, E. E., Moore, W. F., & Vashaw, K. B. (2024). Some Artin–Schelter Regular Algebras From Dual Reflection Groups and their Geometry.
Code
The presentation, ready to paste into a computer algebra system:
needsPackage "AssociativeAlgebras"
K = QQ;
A = K<|x1,x2,x3,x4|>;
I = ideal {
x1*x2 + x2*x1,
x1*x3 + x4*x2,
x1*x4 - x3*x2,
x2*x3 - x4*x1,
x2*x4 + x3*x1,
x3*x4 + x4*x3
};
B = A/I;PolyRing := Rationals;;
kQ := FreeKAlgebra(PolyRing, 4, "x");;
x1 := kQ.x1;; x2 := kQ.x2;; x3 := kQ.x3;; x4 := kQ.x4;;
rels := [
x1*x2 + x2*x1,
x1*x3 + x4*x2,
x1*x4 - x3*x2,
x2*x3 - x4*x1,
x2*x4 + x3*x1,
x3*x4 + x4*x3
];;
A := kQ / rels;;// untested (Magma not available here)
K := Rationals();
F<x1,x2,x3,x4> := FreeAlgebra(K, 4);
rels := [
x1*x2 + x2*x1,
x1*x3 + x4*x2,
x1*x4 - x3*x2,
x2*x3 - x4*x1,
x2*x4 + x3*x1,
x3*x4 + x4*x3
];
A := quo< F | rels >;