2018-09-30 23:01:58 +01:00
---
id: 5900f5111000cf542c510023
title: 'Problem 420: 2x2 positive integer matrix'
2020-11-27 19:02:05 +01:00
challengeType: 5
2019-08-05 09:17:33 -07:00
forumTopicId: 302090
2021-01-13 03:31:00 +01:00
dashedName: problem-420-2x2-positive-integer-matrix
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
2020-11-27 19:02:05 +01:00
A positive integer matrix is a matrix whose elements are all positive integers.
2018-09-30 23:01:58 +01:00
2020-11-27 19:02:05 +01:00
Some positive integer matrices can be expressed as a square of a positive integer matrix in two different ways. Here is an example:
2018-09-30 23:01:58 +01:00
2021-07-29 19:48:24 +02:00
$$\begin{pmatrix}
40 & 12 \\\\
48 & 40
\end{pmatrix} =
{\begin{pmatrix}
2 & 3 \\\\
12 & 2
\end{pmatrix}}^2 =
{\begin{pmatrix}
6 & 1 \\\\
4 & 6
\end{pmatrix}}^2$$
2018-09-30 23:01:58 +01:00
2021-07-29 19:48:24 +02:00
We define $F(N)$ as the number of the 2x2 positive integer matrices which have a trace less than N and which can be expressed as a square of a positive integer matrix in two different ways.
We can verify that $F(50) = 7$ and $F(1000) = 1019$.
Find $F({10}^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 19:48:24 +02:00
`positiveIntegerMatrix()` should return `145159332` .
2018-09-30 23:01:58 +01:00
2020-11-27 19:02:05 +01:00
```js
2021-07-29 19:48:24 +02:00
assert.strictEqual(positiveIntegerMatrix(), 145159332);
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 19:48:24 +02:00
function positiveIntegerMatrix() {
2020-09-15 09:57:40 -07:00
2018-09-30 23:01:58 +01:00
return true;
}
2021-07-29 19:48:24 +02:00
positiveIntegerMatrix();
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
```