double Ore N
- Relations
- \(x_2 x_1 + x_1 x_2\)
- \(x_4 x_3 + x_3 x_4\)
- \(x_3 x_1 + h (g x_2 x_3 - f x_2 x_4)\)
- \(x_3 x_2 + h (- g x_1 x_3 - f x_1 x_4)\)
- \(x_4 x_1 + h (- f x_2 x_3 + g x_2 x_4)\)
- \(x_4 x_2 + h (- f x_1 x_3 - g x_1 x_4)\)
- Parameters
- \(f\) — scalar parameter
- \(g\) — scalar parameter
- \(h\) — deformation parameter (generic scalar)
- Point scheme
- a union of 2 lines (dimension \(1\)).
- Normal elements
- normal locus dimension \(-1\) (degree 1), \(0\) (degree 2).
- Hochschild cohomology
- \(\mathrm{HH}^\bullet_0(A)\) \(= (1, 2, 2, 2)\)
\(\mathrm{HH}^\bullet(\operatorname{qgr} A)\) \(= (1, 1, 15, 19)\) - Kodaira–Spencer
- rank \(2\); injective: no; surjective: yes.
- Notes
- Constraint: \(f^2 \neq g^2\).
- Introduced
- 2009, MR2529094 . Family N among the double extension regular algebras of type (14641) classified by Zhang–Zhang.
Code
The presentation, ready to paste into a computer algebra system:
needsPackage "AssociativeAlgebras"
K = frac(QQ[f, g, h]);
A = K<|x1,x2,x3,x4|>;
I = ideal {
x2*x1 + x1*x2,
x4*x3 + x3*x4,
x3*x1 + h*(g*x2*x3 - f*x2*x4),
x3*x2 + h*(-*g*x1*x3 - f*x1*x4),
x4*x1 + h*(-*f*x2*x3 + g*x2*x4),
x4*x2 + h*(-*f*x1*x3 - g*x1*x4)
};
B = A/I;PolyRing := FunctionField(Rationals, ["f", "g", "h"]);;
indets := IndeterminatesOfFunctionField(PolyRing);;
f := indets[1];;
g := indets[2];;
h := indets[3];;
kQ := FreeKAlgebra(PolyRing, 4, "x");;
x1 := kQ.x1;; x2 := kQ.x2;; x3 := kQ.x3;; x4 := kQ.x4;;
rels := [
x2*x1 + x1*x2,
x4*x3 + x3*x4,
x3*x1 + h*(g*x2*x3 - f*x2*x4),
x3*x2 + h*(-*g*x1*x3 - f*x1*x4),
x4*x1 + h*(-*f*x2*x3 + g*x2*x4),
x4*x2 + h*(-*f*x1*x3 - g*x1*x4)
];;
A := kQ / rels;;// untested (Magma not available here)
K<f, g, h> := RationalFunctionField(Rationals(), 3);
F<x1,x2,x3,x4> := FreeAlgebra(K, 4);
rels := [
x2*x1 + x1*x2,
x4*x3 + x3*x4,
x3*x1 + h*(g*x2*x3 - f*x2*x4),
x3*x2 + h*(-*g*x1*x3 - f*x1*x4),
x4*x1 + h*(-*f*x2*x3 + g*x2*x4),
x4*x2 + h*(-*f*x1*x3 - g*x1*x4)
];
A := quo< F | rels >;