GSoC 2026 – Groebner bases project direction and related areas

38 views
Skip to first unread message

Tanishka Wagh

unread,
Feb 23, 2026, 4:49:01 AM (5 days ago) Feb 23
to sympy

Hi everyone,

I’m Tanishka Wagh, a third-year student studying Computational Mathematics (ECSOE) and Data Science & Programming (IIT Madras). I’ve worked on a course project involving Groebner bases and solving systems of polynomial equations, and I’m comfortable with Python, though still gaining experience with larger long-term codebases.

I’ve been reading through the `sympy/polys` module and looking at the GSoC idea on efficient Groebner bases and their applications. From what I understand, the current implementation includes Buchberger, F5B and FGLM, while several directions (e.g. F4, sugar strategies, Groebner walk, etc.) are still open.

I had two main questions:

  1. The idea page mentions previous related work, could someone point me to which past project(s) this refers to?

  2. I noticed that a lot of current work in `polys` seems focused on type annotations and infrastructure improvements. How does Groebner-basis work fit into current priorities, and are there particular entry points that would be helpful to start with?

I’m mainly interested in the Groebner/polys direction, but while exploring I also noticed the computational group theory roadmap in the combinatorics module. If one of these areas currently has clearer contribution opportunities or more active development, I’d really appreciate guidance.

Thanks,
Tanishka

Oscar Benjamin

unread,
Feb 23, 2026, 5:45:32 AM (5 days ago) Feb 23
to sy...@googlegroups.com
On Mon, 23 Feb 2026 at 09:48, Tanishka Wagh <tkwa...@gmail.com> wrote:
>
> Hi everyone,

Hi Tanishka,

> I had two main questions:
>
> The idea page mentions previous related work, could someone point me to which past project(s) this refers to?

I'm not sure which projects it refers to. Probably looking at git
blame will lead you to the past pull requests and issues.

> I noticed that a lot of current work in `polys` seems focused on type annotations and infrastructure improvements. How does Groebner-basis work fit into current priorities, and are there particular entry points that would be helpful to start with?

Improving Groebner basis is definitely a worthwhile project. In
particular I think implementing the F4 algorithm would be good. There
is already some code for sparse RREF (with division and also
fraction-free) with DomainMatrix that could be used as a starting
point.

Another thing that would be very useful is having interfaces that can
efficiently store a Groebner basis and compute a new basis for the
initial basis plus one extra polynomial sort of like this:

In [6]: gb = groebner([x**2 - 2, y**2 - x], [x, y])

In [7]: gb2 = groebner(list(gb) + [z*x - y], [z, x, y])

Computing gb2 from gb is what is needed to implement exact division in
a polynomial ring modulo a system of polynomial equations which is a
primitive operation for fraction-free algebra over such rings. It can
be done much more efficiently than computing a Groebner basis fully
from scratch each time but an interface/implementation for that is
needed.

--
Oscar
Reply all
Reply to author
Forward
0 new messages