2018-09-30 23:01:58 +01:00
---
id: 5900f5231000cf542c510034
2018-10-20 21:02:47 +03:00
title: 'Problem 438: Integer part of polynomial equation''s solutions'
2020-11-27 19:02:05 +01:00
challengeType: 5
2019-08-05 09:17:33 -07:00
forumTopicId: 302109
2021-01-13 03:31:00 +01:00
dashedName: problem-438-integer-part-of-polynomial-equations-solutions
2018-09-30 23:01:58 +01:00
---
2020-11-27 19:02:05 +01:00
# --description--
2018-09-30 23:01:58 +01:00
2021-07-29 20:14:09 +02:00
For an $n$-tuple of integers $t = (a_1, \ldots, a_n)$, let $(x_1, \ldots, x_n)$ be the solutions of the polynomial equation $x^n + a_1x^{n - 1} + a_2x^{n - 2} + \ldots + a_{n - 1}x + a_n = 0$.
2018-09-30 23:01:58 +01:00
2021-07-29 20:14:09 +02:00
Consider the following two conditions:
2018-09-30 23:01:58 +01:00
2021-07-29 20:14:09 +02:00
- $x_1, \ldots, x_n$ are all real.
- If $x_1, ..., x_n$ are sorted, $⌊x_i⌋ = i$ for $1 ≤ i ≤ n$. ($⌊·⌋:$ floor function.)
2018-09-30 23:01:58 +01:00
2021-07-29 20:14:09 +02:00
In the case of $n = 4$, there are 12 $n$-tuples of integers which satisfy both conditions.
We define $S(t)$ as the sum of the absolute values of the integers in $t$.
2022-03-19 00:56:57 -07:00
For $n = 4$ we can verify that $\sum S(t) = 2087$ for all $n$-tuples $t$ which satisfy both conditions.
2021-07-29 20:14:09 +02:00
Find $\sum S(t)$ for $n = 7$.
2018-09-30 23:01:58 +01:00
2020-11-27 19:02:05 +01:00
# --hints--
2018-09-30 23:01:58 +01:00
2021-07-29 20:14:09 +02:00
`polynomialIntegerPart()` should return `2046409616809` .
2018-09-30 23:01:58 +01:00
2020-11-27 19:02:05 +01:00
```js
2021-07-29 20:14:09 +02:00
assert.strictEqual(polynomialIntegerPart(), 2046409616809);
2018-09-30 23:01:58 +01:00
```
2020-11-27 19:02:05 +01:00
# --seed--
2018-09-30 23:01:58 +01:00
2020-11-27 19:02:05 +01:00
## --seed-contents--
2018-09-30 23:01:58 +01:00
```js
2021-07-29 20:14:09 +02:00
function polynomialIntegerPart() {
2020-09-15 09:57:40 -07:00
2018-09-30 23:01:58 +01:00
return true;
}
2021-07-29 20:14:09 +02:00
polynomialIntegerPart();
2018-09-30 23:01:58 +01:00
```
2020-11-27 19:02:05 +01:00
# --solutions--
2018-09-30 23:01:58 +01:00
```js
// solution required
```