Communities

Writing
Writing
Codidact Meta
Codidact Meta
The Great Outdoors
The Great Outdoors
Photography & Video
Photography & Video
Scientific Speculation
Scientific Speculation
Cooking
Cooking
Electrical Engineering
Electrical Engineering
Judaism
Judaism
Languages & Linguistics
Languages & Linguistics
Software Development
Software Development
Mathematics
Mathematics
Christianity
Christianity
Code Golf
Code Golf
Music
Music
Physics
Physics
Linux Systems
Linux Systems
Power Users
Power Users
Tabletop RPGs
Tabletop RPGs
Community Proposals
Community Proposals
tag:snake search within a tag
answers:0 unanswered questions
user:xxxx search by author id
score:0.5 posts with 0.5+ score
"snake oil" exact phrase
votes:4 posts with 4+ votes
created:<1w created < 1 week ago
post_type:xxxx type of post
Search help
Notifications
Mark all as read See all your notifications »
Incubator Q&A

Welcome to the staging ground for new communities! Each proposal has a description in the "Descriptions" category and a body of questions and answers in "Incubator Q&A". You can ask questions (and get answers, we hope!) right away, and start new proposals.

Are you here to participate in a specific proposal? Click on the proposal tag (with the dark outline) to see only posts about that proposal and not all of the others that are in progress. Tags are at the bottom of each post.

Post History

71%
+3 −0
Incubator Q&A Fill the 4x4 grid with numbers to make eight arithmetic progressions

Solution 27 34 41 48 19 31 43 55 11 28 45 62 3 25 47 69 Reasoning Filling in the first column as an arithmetic progression and then the rows as arithmetic progressions we get...

posted 2mo ago by Peter Taylor‭

Answer
#1: Initial revision by user avatar Peter Taylor‭ · 2026-08-03T08:08:46Z (about 2 months ago)
<details><summary>Solution</summary>

```txt
27  34  41  48
19  31  43  55
11  28  45  62
 3  25  47  69
```

</details>

<details><summary>Reasoning</summary>
Filling in the first column as an arithmetic progression and then the rows as arithmetic progressions we get

```txt
27     27+b     27+2b     27+3b
27+a   27+a+c   27+a+2c   27+a+3c
27+2a  27+2a+d  27+2a+2d  27+2a+3d
27+3a  27+3a+e  27+3a+2e  27+3a+3e
```

We have five unknowns. Taking any of the other columns as an arithmetic progression we get $c-2d+e = 0$ and $b-2c+d = 0$; together with the three other given values we have five linear equations in five unknowns and we can apply Gaussian elimination.

The stated inspiration is a hint that this was the intended solution process. It could also have been done with twelve variables, one for each empty square, but it would have been less straightforward to identify the redundant equations, and they would also have been more fiddly to manipulate.
</details>