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.

Fill the 4x4 grid with numbers to make eight arithmetic progressions Question

+2
−0

In the 4x4 grid below, fill each empty square with a number such that the numbers in each row form an arithmetic progression when read from left to right. Similarly, the numbers in each column should form an arithmetic progression when read from top to bottom.

(An arithmetic progression is a sequence in which each term after the first is obtained from the previous term by adding the same constant which might be negative, zero or positive.
For example, 3, 5, 7, 9 is a four term arithmetic progression.)

4x4 grid whose rows are 27,x,x,x; x,x,x,55; x,x,45,x; x,25,x,x where x represents an empty square in the grid

Inspiration: 2016 Gauss Contest

History

0 comment threads

2 answers

You are accessing this answer with a direct link, so it's being shown above all other answers regardless of its score. You can return to the normal view.

+3
−0
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
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.

History

0 comment threads

+2
−0

In some Mathematical puzzles, there are several unknown values. In this particular puzzle, there are 12 unknown numbers that are to be placed in the 12 empty squares.

We could attempt to solve this puzzle by using 12 variables, one for each unknown number, plus a number of equations relating these 12 variables. But this would be a tedious way to determine the numbers for the empty squares.

With a bit of ingenuity, we can solve this puzzle using only 1 variable.

Solution

Step 1:

Let the common difference between consecutive numbers in the top row be d.

So the grid is:

27     27+d   27+2d  27+3d
                     55
              45
       25

Step 2:

In the rightmost column the common difference between consecutive numbers is:

55-(27+3d) = 28-3d.

So the number below the 55 is:

55+(28-3d) = 83-3d.

So now the grid is:

27     27+d   27+2d  27+3d
                     55
              45     83-3d
       25

Step 3:

In the third row the common difference between consecutive numbers is:

(83-3d)-45 = 38-3d.

So the number to the left of the 45 is:

45-(38-3d) = 7+3d.

So now the grid is:

27     27+d   27+2d  27+3d
                     55
        7+3d  45     83-3d
       25

Step 4:

In the second column, the first and third numbers are:

27+d and 7+3d.

Twice the common difference between consecutive numbers in the second column is:

(7+3d) - (27+d) = -20+2d.

So the common difference between consecutive numbers in the second column is:

(-20+2d)/2 = -10+d.

So the second number in the second column is:

(27+d) + (-10+d) = 17+2d.

So now the grid is:

27     27+d   27+2d  27+3d
       17+2d         55
        7+3d  45     83-3d
       25

Step 5:

Now all our hard work is about to yield a great result.

Using the common difference between consecutive numbers in the second column, the number at the bottom of the second column (25) is also equal to:

(7+3d) + (-10+d) = -3+4d.

Therefore, 25 = -3+4d.

Solving we get d = 7.

Using this value of d, we can calculate some of the grid numbers.

So now the grid is:

27     34     41     48
       31            55
       28     45     62
       25

Step 6:

Finally, we can now fill in the rightmost column and then the rows to get:

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

0 comment threads

Sign up to answer this question »