-
-
Notifications
You must be signed in to change notification settings - Fork 482
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Trac #33597: Wrong computation of Hilbert polynomials
{{{ sage: R.<X, Y, Z> = QQ[] sage: I = R.ideal([X^2*Y^3, X*Z]) sage: I.hilbert_polynomial() -t - 5 }}} The Hilbert polynomial, by definition, has to take non-negative integer values at all sufficiently large integers t, so this computation can't possibly be right. The correct answer is {{{ t + 5 }}}, which is what one gets with the {{{ algorithm='singular' }}} option. Inspecting the code, it looks like the denominator of the Hilbert series is getting normalised wrongly in some cases. URL: https://trac.sagemath.org/33597 Reported by: davidloeffler Ticket author(s): Frédéric Chapoton, Kwankyu Lee Reviewer(s): Kwankyu Lee, Frédéric Chapoton
- Loading branch information
Showing
1 changed file
with
24 additions
and
20 deletions.
There are no files selected for viewing
This file contains 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