Roots of equation

Algebra Level 3

Let z 1 , z 2 , z 3 , z 4 z_1, z_2, z_3, z_4 be the roots of the equation z 4 + z 3 + z 2 + z + 1 = 0 z^4 + z^3 + z^2 + z + 1 = 0 . Find the least possible value of z 1 + z 2 + 1 \big \lfloor | z_1 + z_2 | \big \rfloor + 1 .

Notations:


The answer is 1.

This section requires Javascript.
You are seeing this because something didn't load right. We suggest you, (a) try refreshing the page, (b) enabling javascript if it is disabled on your browser and, finally, (c) loading the non-javascript version of this page . We're sorry about the hassle.

1 solution

Fletcher Mattox
Jun 17, 2020

While this quartic is easy to solve:

( z 1 ) ( z 4 + z 3 + z 2 + z + 1 = z 5 1 = 0 (z - 1)(z^4 + z^3 + z^2 + z + 1 = z^5 -1 = 0

z 5 = 1 z 1 z^5 = 1 \quad z \neq 1

I prefer to write code:

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
from sympy import *
from sympy.abc import x, y
from itertools import combinations

roots = solve(x**4 + x**3 + x**2 + x + 1)
kmin = 100
for i,j in combinations(roots, 2):
    k = abs(i+j)
    if k < kmin:
        kmin = k

print("minimum:", kmin) 
print("solution:", (floor(kmin)+1))

# minimum: -1/2 + sqrt(5)/2
# solution: 1

0 pending reports

×

Problem Loading...

Note Loading...

Set Loading...