Identifier
St001066:
Dyck paths
⟶ ℤ
Values
Modified entries:
Description
The number of simple reflexive modules in the corresponding Nakayama algebra.
Diff Description
The number of simple reflexive modules in the corresponding Nakayama algebra.
References
Code
DeclareOperation("IsNthSyzygy",[IsList]);
InstallMethod(IsNthSyzygy, "for a representation of a quiver", [IsList],0,function(LIST)
local M, n, f, N, i, h,W;
M:=LIST[1];
n:=LIST[2];
N:=DualOfModule(NthSyzygy(DualOfModule(M),n));
W:=NthSyzygy(N,n);
if IsDirectSummand(M,W)=true
then
return(1);
else return(0);
fi;
end);
DeclareOperation("NumberOfReflexiveSimpleModules",[IsList]);
InstallMethod(NumberOfReflexiveSimpleModules, "for a representation of a quiver", [IsList],0,function(LIST)
local M, n, f, N, i, h,W;
L:=LIST[1];
A:=NakayamaAlgebra(L,GF(3));
simA:=SimpleModules(A);
U:=Filtered(simA,x->IsNthSyzygy([x,2])=1);
return(Size(U));
end);
Created
Dec 30, 2017 at 14:30 by Rene Marczinzik
Updated
Apr 30, 2025 at 18:16 by Rene Marczinzik