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.

A miniature Sudoku puzzle with a twist Question

+2
−0

Fill all 16 squares with a number so that every row, every column and every 2x2 box contains all the numbers 1, 2, 3 and 4 each exactly once. Also the sum of the numbers in the six squares marked with a dot must be equal to the sum of the numbers in the ten squares that are NOT marked with a dot.

4x4 square grid subdivided into four rows, four columns and four 2x2 boxes.  Also the following six squares are marked with a tiny dot:  the bottom three squares in the first column, the bottom square in the second column and the bottom two squares in the third column.

History

0 comment threads

1 answer

+3
−0

Despite there being no numbers to start with, the extra rule provides a satisfying succession of conclusions that leads to a solution.

Spoilers are hidden in case you want to try this yourself.

Initial insight

The numbers in the finished grid will be the numbers 1 to 4, each repeated 4 times. The numbers 1, 2, 3, 4 sum to 10, so the numbers in the grid will sum to 40. This means that both the set of marked squares and the set of unmarked squares will sum to 20.

Taking the largest possible values for each of the marked squares gives a 4 in the upper left quadrant, 2, 3, 4 (in some order) in the lower left quadrant, and 3, 4 (in some order) in the lower right quadrant. These sum to 20, and changing any of the numbers would result in a smaller sum, so these are the only possible numbers.

Finished solution
1 3 2 4
4 2 1 3
3 1 4 2
2 4 3 1
Solving steps

The initial insight puts a 4 in the only marked square in the upper left quadrant:

# # # #
4 # # #
# # # #
# # # #

This leaves only one marked square where the 4 can go in the lower left quadrant:

# # # #
4 # # #
# # # #
# 4 # #

This in turn leaves only one marked square where the 4 can go in the lower right quadrant:

# # # #
4 # # #
# # 4 #
# 4 # #

With 3 4s placed the final 4 is narrowed down to the top row and right column:

# # # 4
4 # # #
# # 4 #
# 4 # #

The initial insight showed the marked squares in the lower right quadrant are a 3 and a 4. With the 4 placed, the other marked square must be a 3:

# # # 4
4 # # #
# # 4 #
# 4 3 #

The marked squares in the lower left quadrant are 2, 3, 4. The 3 cannot be in the bottom row, leaving only 1 marked square for it, which in turn leaves only 1 marked square for the 2:

# # # 4
4 # # #
3 # 4 #
2 4 3 #

The only remaining square in the lower left quadrant must be a 1 (which was also clear from the initial insight that the other squares are 2, 3, 4). Similarly the only remaining square in the left hand column is a 1, and the only remaining squares in the last 2 rows must be a 2 and 1, in that order, which in turn means the remaining square in the right hand column is a 3:

1 # # 4
4 # # 3
3 1 4 2
2 4 3 1

The second row already has a 3 and a 4, and the second column already has a 1 and a 4, so the intersection of this row and column is a 2 (the only remaining number). This puts the 3 in the second column, and the 1 in the second row, narrowing down the last square to a 2:

1 3 2 4
4 2 1 3
3 1 4 2
2 4 3 1
History

0 comment threads

Sign up to answer this question »