Intersection cohomology of singular quiver moduli - #45
Open
pbelmans wants to merge 7 commits into
Open
Conversation
Meinhardt--Reineke [MR4000572] identify the Donaldson--Thomas invariants of a quiver with the intersection cohomology of its moduli space of semistable representations. The Harder--Narasimhan recursion behind motive() already gives the class of the semistable stack for any dimension vector, so only the plethystic logarithm is left to add.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Ports the intersection cohomology computation from HodgeDiamonds.jl into QuiverTools.
When some proper subdimension vector has the slope of
d, there are properly semistable representations, the moduli space is singular, andpoincare_polynomial/hodge_diamondno longer apply. Meinhardt--Reineke (MR4000572) identify the Donaldson--Thomas invariants of the quiver with the intersection cohomology ofM^ss(Q, d), which makes it computable from the motives of the semistable stacks thatmotivealready provides. What is left to add is the plethystic logarithm.New exported methods, all in
src/Hodge.jl:intersection_poincare_polynomial(M)intersection_betti_numbers(M)intersection_hodge_diamond(M)Everything is a rational function in the Lefschetz class, so the half powers appearing in the theorem only need a square root
wof it, withL^{1/2} = -w.The theorem needs the stability parameter to be generic for the slope of
d(the antisymmetrized Euler form vanishes on the dimension vectors of that slope) and stable representations to exist; both are checked and raise anArgumentErrorotherwise. That the result is a polynomial inw^2is checked too, which validates the whole computation.For a dimension vector that is primitive in the monoid of its slope the plethystic logarithm is its own leading term, so these agree with the ordinary invariants on smooth moduli spaces. The tests route several smooth cases through the new code path on purpose, and check the reflection functor identities
M(a, b) = M(b, m*b - a)for the m-Kronecker quiver on singular moduli spaces, Poincaré duality, and the error paths.