Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Polonomial division #840

Open
wants to merge 4 commits into
base: master
Choose a base branch
from

Conversation

nolanderc
Copy link
Contributor

This is a fix to #839.

Division is implemented using euclidean division (aka. long division) and generalized to polynomials with multiple variables using a Gröbner-basis. The choice of basis was made by a loose recommendation in this article.

nolanderc and others added 4 commits March 2, 2022 15:33
resolves outstanding TODO.

It turns out to be quite hard to actually define division of polynomials
containing more than one variable in a satisfying manner. It is possible
to defining a basis to use (for example, by sorting monomials in a
lexicographic order) but this will require further work.
expands on functionality to polynomial/polynomial TODO.

Test that assert ValueError for multiple variable divisor polynomials have only been commented out and might need an update instead.
Uses a Gröbner-basis in order to generalize euclidean
division to polynomials with multiple variables.

Co-authored-by: Mark <mantaur@users.noreply.github.com>
…l-division-expanded

feat: expand polynomial division
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

None yet

2 participants