Skip to main content

Questions tagged [polynomials]

0 votes
0 answers
20 views

Reference: arXiv:2504.04233 Example 2.12: 4-vertex cycle graph Structure: Square graph with 4 vertices Flooding cascade sets: 7 total (2 of size 2, 4 of size 3, 1 of size 4) Key insight: Opposite ...
138 Aspen's user avatar
  • 469
0 votes
0 answers
28 views

I'd like to use Mathematica to demonstrate the expansion of the Rasala polynomials for symmetric group character degrees accroding to arXiv 2509.13190 The code is as follows. You may try it online! <...
138 Aspen's user avatar
  • 469
4 votes
1 answer
100 views

I've made a code in Python 3 which converts a polynomial with integer coefficients (in simplified integer form) from string form to a list of tuples of the form (coefficient, exponent, variable). It ...
Sam's user avatar
  • 147
4 votes
2 answers
159 views

Intro This post is a supplement to Polynomial.java - a Java class for dealing with polynomials with BigDecimal coefficients. It presents the three polynomial multiplication algorithms. Given two ...
coderodde's user avatar
  • 32.3k
7 votes
3 answers
767 views

(You can find multiplication algorithms in Polynomial.java - multiplication algorithms: naïve, Karatsuba, FFT.) Intro This post presents the main class (Polynomial) ...
coderodde's user avatar
  • 32.3k
5 votes
2 answers
774 views

Intro This time, I have produced Polynomial.java. It is a simple polynomial class that stores its coefficients as double values in an array. Code ...
coderodde's user avatar
  • 32.3k
0 votes
1 answer
74 views

Please keep in mind that I am very new to programming. I was given a the following question as my assignment in C++: Write a program that computes the value of an nth degree polynomial $$A(x)=a_0+...
user284187's user avatar
3 votes
1 answer
129 views

I have some scanning tunneling microscopy (STM) topography images that I need to flatten. I have found that for some data I need a 4th order polynomial, but in other cases a lower order works better. ...
uhoh's user avatar
  • 605