ELI5: Explain Like I'm 5

Newton polygon

Imagine you are a little kid playing with building blocks. You have different colored blocks and you want to stack them up in a certain way to make a cool tower. But, you can only stack each block on top of another block if it's the same color or a lighter color. You can't put a darker color block on top of a lighter color block - it just won't balance.

The Newton Polygon is kind of like playing with these building blocks. Except instead of different colors, we have different powers of a variable (usually x). And instead of building a tower, we're trying to figure out if a polynomial (an equation with a bunch of different powers of x added together) has any roots (or solutions).

So, let's say we have a polynomial like this: x^3 + 4x^2 + 5x + 2. We can write out all the powers of x, like this:

- x^3
- x^2
- x^1 (which is just x)
- x^0 (which is just 1)

We can also write out the coefficients (the numbers in front of each power of x), like this:

- 1 (the coefficient of x^3)
- 4 (the coefficient of x^2)
- 5 (the coefficient of x)
- 2 (the coefficient of x^0)

Now, we're going to use these building blocks (the powers of x and their coefficients) to build a polygon. We start at the origin (0,0), which is just a dot on a graph.

- The first block we add is x^3. We draw a line from the origin up to the point (3,1) because the coefficient of x^3 is 1 (remember, we started at the origin).
- The second block we add is x^2. We draw a line from the point (3,1) to the point (2,4) because the coefficient of x^2 is 4 (one less than the previous power of x).
- The third block we add is x. We draw a line from the point (2,4) to the point (1,5) because the coefficient of x is 5 (one less than the previous power of x).
- The final block we add is x^0. We draw a line from the point (1,5) to the point (0,2) because the coefficient of x^0 is 2 (one less than the previous power of x).

Now, we have a polygon with four sides! This is the Newton Polygon for our polynomial.

So, what does it tell us? Well, we look at the slope of each side of the polygon. If the slope is positive, it means the coefficient is positive. If the slope is negative, it means the coefficient is negative.

In our polygon, all the slopes are positive. This means that all the roots (or solutions) of our polynomial have negative real parts. In other words, they're all to the left of the y-axis on the graph.

And that's the basics of the Newton Polygon! It's a way to use building blocks (the powers of x and their coefficients) to build a polygon, and then use the slopes of the polygon to figure out information about the roots of a polynomial.
Related topics others have asked about: