8
$\begingroup$

Normal mazes require you to move a point-like object from the entrance of the maze to the exit.
I am wondering whether a different kind of maze would work as a puzzle:

Imagine a maze printed on a piece of paper, and a pair of compasses, which touches the paper in two points:

compass

The following rules apply:

  • You can move and rotate the compass, but not lift it.
  • The two points may not cross a wall of the maze.
  • You cannot change the distance between the two points. The compass is rigid.

With these rules, can you create a nontrivial maze with two entrances and two exits?
The two points should have to travel along different paths, not simply behind each other on the same path.

I could not find any further information about this type of maze. Is there a name for it, and are there existing examples? Perhaps even an algorithm to create such mazes?

$\endgroup$
1

3 Answers 3

2
$\begingroup$

I think this is a clever and likely original idea. I have not seen a similar idea before (though I haven't seen everyithing). However, I do have an idea to improve it a little bit.

From your description, it sounds like one could simplify the problem by saying that there are two mazes, each solved in the normal way, but when drawing the solution, the two pens/pencils/markers must stay the exact same distance from each other.

In its base form, I think that this would result in a fairly simple puzzle, perhaps even simpler than a standard maze. I say this because you would have a very limited amount of options for available paths - the mazes are necessarily narrow so that the don't interfere with each other.

My proposed solution to this is to make two "layered" mazes - one on top of the other, both of which have multiple correct solutions on its own, but the aforementioned conditions make there only one solution. You could simulate this "layered" system by drawing the two mazes on the same sheet of paper and labeling them with the same coordinate system. Then set the available "radius" to, say, five, so that if you're at (7, 6) in one maze, you need to be on the circle $(x-7)^2 + (y-6)^2 = 25$ in the other maze, and vice-versa.

Good luck in your puzzle creation!

$\endgroup$
1
$\begingroup$

I would suggest making the maze(s) circular, actually (as opposed to rectilinear), since that would theoretically add a layer of difficulty in that the relative radii of paths could change slightly. Otherwise, as Brandon has pointed out, I don’t think it would be as difficult as you might think.

Of course, I might be overlooking something as well. It’s definitely an interesting concept.

$\endgroup$
1
$\begingroup$

One idea you might try is to create a normal maze and 'split' it by creating two copies, and removing some walls from one copy and some from the other, and do the opposite with some gaps. There must only ever be one solution, and all rooms must be accessible.

Like this, for example:

+---+---+---+---+---+     +---+---+---+---+---+ 
| S                 |     | S                 |
+- -+- -+---+- -+- -+     +- -+---+- -+---+- -+
|   |       |       |     |                   |
+- -+- -+---+---+- -+     +- -+---+- -+- -+- -+
|               |   |     |       |           |
+- -+- -+- -+- -+- -+     +- -+- -+- -+- -+- -+
|           |   |   |     |   |               |
+---+---+- -+- -+- -+     +- -+- -+---+- -+- -+
|               |   |     |   |       |       |
+- -+- -+- -+- -+---+     +- -+- -+- -+- -+- -+
|       |         E |     |           |     E |
+---+---+---+---+---+     +---+---+---+---+---+

It is easy to solve because you can simply superimpose the two images, but might prove to be more fun (you have to solve the two mazes simultaneously).

Here is the original maze:

 +---+---+---+---+---+
 | S                 |
 +- -+---+- -+---+- -+
 |   |       |       |
 +- -+---+---+---+- -+
 |       |       |   |
 +- -+- -+- -+- -+- -+
 |   |       |   |   |
 +- -+---+---+- -+- -+
 |   |       |   |   |
 +- -+- -+- -+- -+---+
 |       |   |     E |
 +---+---+---+---+---+ 

$\endgroup$

Not the answer you're looking for? Browse other questions tagged or ask your own question.