python (12.9k questions)
javascript (9.2k questions)
reactjs (4.7k questions)
java (4.2k questions)
java (4.2k questions)
c# (3.5k questions)
c# (3.5k questions)
html (3.3k questions)
Search and prove if some polynomials belong to an ideal
I have the following pb :
Let consider ideal with the basis ${x, y, z}$. Check if next polynomials belong to it or not: $x^5yz^4 + y^3z^7 + z^9$ ;
$2x + 3y + z + 1$. Let consider ideal with the basis ...
Alexia
Votes: 0
Answers: 1
How to create Polynomial Ring which has Float coefficients Julia
I want to create a polynomial ring which has float Coefficients like this. I can create with integers but, Floats does not work.
using Oscar
S, (a,b,c,d) = PolynomialRing(QQ,["a","b&qu...
Ahmet Yusuf
Votes: 0
Answers: 1
Compute only most significant half of GF(2)[X] polynomial (or integer) product efficiently?
I know about Karatuba's algorithm and other even more efficient ways to multiply two large polynomials or integers.
I also know that there is a "middle product" version of Karatsuba which co...

Oskar Enoksson
Votes: 0
Answers: 0
Program to integrate a user-input polynomial in C
So, I have a program that allows the user to choose different methods of integration, and it integrates the function defined at the top of the program. (Please ignore the midpoint rule for mow)
#inclu...
MRD
Votes: 0
Answers: 1