Ask Your Question

Atropos7's profile - activity

2024-10-01 22:21:32 +0100 received badge  Student (source)
2024-09-23 18:51:05 +0100 commented answer How to compute top-degree homogenization of ideal

Thank you! It had totally slipped my mind that the top-degree components of a groebner basis for $I$ would be a groebner

2024-09-23 18:49:06 +0100 marked best answer How to compute top-degree homogenization of ideal

I am interested in computing the "top-degree homogenization of an ideal", the ideal generated by the top-degree homogeneous components of every element in a polynomial ideal $I$.

I had previously been (mistakenly) doing:

ideal([f(list(R.gens()) + [0]) for f in I.homogenize().gens()])

which gives the ideal generated by the top-degree homogeneous components of the given generators of $I$.

This is not the same: consider $I = (x^2 + x, x^2 + y)$. The above code would produce $(x^2)$, but the top-degree homogenization should contain $x-y$ (as the top-degree component of $(x^2+x) - (x^2 + y)$).

Are there known techniques for doing this?

2024-09-23 18:49:06 +0100 received badge  Scholar (source)
2024-09-23 02:07:15 +0100 asked a question How to compute top-degree homogenization of ideal

How to compute top-degree homogenization of ideal I am interested in computing the "top-degree homogenization of an idea