fractional_cy
quiverlab.modules.fractional_cy ¶
Stable-category fractional Calabi-Yau dimension of self-injective algebras (Plan 53 / R24).
In the stable module category mod-bar A of a self-injective A (triangulated,
Ivanov-Volkov arXiv:1212.2619 sec 1.3), the suspension is Sigma = Omega^{-1} (Heller's
cosyzygy) and the Serre functor is S = Omega . nu (nu = the Nakayama functor
D Hom_A(-, A)). Following Herschend-Iyama-Oppermann / Keller, mod-bar A is
fractionally Calabi-Yau of dimension m/ell iff S^ell = Sigma^m, i.e. the least
positive ell for which S^ell X ~ Sigma^m X for all objects X (some m).
Because nu and Omega commute, S^ell = Omega^ell nu^ell; fixing the sign to
match the ell=1 Ivanov-Volkov integer criterion Omega^{n+1} ~ nu^{-1} gives the
certified identity, per generator X (stable iso, projective summands dropped):
S^ell(X) ~ Sigma^{+m}(X) <=> Omega^{m+ell}( nu^ell(X) ) ~ X.
Honest scope -- TIER 3 (weak-on-generators). The certificate is checked OBJECT-WISE
on a generating set (the non-projective simples + the Omega^i nu^j-orbit reps met in
the search), NOT as a natural isomorphism of functors. This is a NECESSARY condition for
the tier-2 weak-CY property (object-wise on ALL objects) and hence for the tier-1 STRONG
CY property (S ~ Sigma^n as functors); "as functors" is reserved for the strong tier
and appears NOWHERE in what this module certifies. Object-wise agreement on a generating
set need not propagate to the whole category, so the search can UNDER-report BOTH the
numerator m (defined only mod the Sigma-period) AND the denominator ell (a
spurious small ell may pass on the generators while failing on a non-generator). The
tier-1 functorial certificate Omega^{n+1}_{A^e}(A) ~ (A^v)_phi (Ivanov-Volkov Thm 1.8,
via the minimal A^e engine) is the named successor on the verification page.
The numerator m is a residue mod the Sigma-period p (Sigma^p X ~ X on a
periodic stable category): S^ell X ~ Sigma^m X implies ~ Sigma^{m+kp} X for all
k. The canonical representative is "smallest ell >= 1, then smallest m >= 0",
with p reported in sigma_period when the search determines it.
Leans entirely on shipped module operations -- nu/nu^- (modules/ar.py),
Omega/Omega^- (modules/resolution.py), decompose (stable normal form),
is_isomorphic (the loud-when-undecidable certificate) -- no new math engine. The
decompose char caveat is load-bearing (loud over char <= dim on GF(p)); batteries
run over QQ / GF(32003).
FractionalCY
dataclass
¶
FractionalCY(m: 'int | None', ell: 'int | None', cy_dimension: 'str | None', weakly_n_cy: 'int | None', sigma_period: 'int | None', status: str, tier: str, checked_on: str, certificate: list)
The stable-category fractional Calabi-Yau dimension (m, ell) of a
self-injective algebra (Plan 53 / R24), certified at the weak-on-generators tier
(object-wise on the simples + orbit reps -- a NECESSARY condition for weak/strong CY,
never a functor iso; the tier field says so). cy_dimension is the reduced
m/ell; weakly_n_cy is the Ivanov-Volkov integer n = m when ell == 1
(else None); sigma_period is the order of Sigma on the generators (the
numerator's mod-ambiguity, None when the search did not determine it).
fractional_calabi_yau ¶
fractional_calabi_yau(A, *, ell_max=4, m_window=8, dim_budget=4096)
The stable-category fractional Calabi-Yau dimension (m, ell) of a
self-injective algebra A (Plan 53 / R24; Ivanov-Volkov arXiv:1212.2619).
Certified at the weak-on-generators tier (object-wise on the non-projective
simples + the Omega/nu-orbit reps -- a NECESSARY condition for weak/strong CY,
NEVER a functor isomorphism; see the module docstring). Bounded (m, ell) search
with the derived sign S^ell ~ Sigma^{+m} (Omega^m(S^ell G) ~ G, m >= 0
only -- the canonical representative for the mod-p ambiguity). Returns a
:class:FractionalCY:
* status="certified" with (m, ell), reduced m/ell, weakly_n_cy = m
iff ell == 1, and sigma_period when the search found it;
* status="shift-trivial" = (0, 1) when Sigma = Omega^{-1} ~ id on every
generator (radical-square-zero self-injective local);
* status="budget" when no (m, ell) is found in ell_max/m_window or a
module iterate exceeds dim_budget (honest -- likely rep-infinite, whose
modules need not be S-periodic).
RAISES QuiverlabError for non-self-injective A (nu is not an
autoequivalence and mod-bar A is not triangulated otherwise). The
is_isomorphic loud refusal propagates unchanged (never a silent budget where
an iso was undecidable); the decompose char caveat propagates too.
Source code in src/quiverlab/modules/fractional_cy.py
144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 | |
fractional_cy_block ¶
fractional_cy_block(A)
The fractional_cy block for algebra A (Plan 53 / R24): the stable-category
fractional Calabi-Yau dimension, certified at the weak-on-generators tier. The tier
field is ALWAYS "weak-on-generators" and is rendered beside the value so the
displayed result never overstates the certificate. A non-self-injective input is
caught into {"error": ...} (the loud not-self-injective message), never raised out
of the block. Returns the block minus citations (each runner resolves
references to citation pairs).
Source code in src/quiverlab/modules/fractional_cy.py
237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 | |
is_fractionally_calabi_yau ¶
is_fractionally_calabi_yau(A, **kw)
True iff :func:fractional_calabi_yau CERTIFIES a fractional CY dimension
(status == "certified") for the self-injective algebra A (Plan 53). The
degenerate shift-trivial case and the budget cap are NOT reported as certified.
Source code in src/quiverlab/modules/fractional_cy.py
222 223 224 225 226 | |