Slashdot Mirror


Multidimensional Crosswords?

Aaron asks: "I write the crossword for the student newspaper at my university (McGill, in Montreal). For the last issue of the year I like to go all-out and do something special. Usually I just make a super-big one, but I had a brainstorm - a crossword is essentially a 2-dimensional matrix where set intersections are judged as valid if they test positive as real words out of a dictionary. Of course, the decision to limit the matrix to 2 dimensions is just pragmatic so if you wanted you could make crosswords of 3 or more dimensions (though a 4-dimension crossword might have to be done in pencil first). Any ideas on how to actually do this?" This would be interesting on a computer, but would be fairly hard to do in print. If you were of a mind to make a 3D crossword puzzle on paper, how would you do it?

8 of 53 comments (clear)

  1. Popups by Micro$will · · Score: 4, Funny

    If you were of a mind to make a 3D crossword puzzle on paper, how would you do it?

    Popup pictures or fold-ins, and until XP SP2 comes out, IE users will have no choice but to solve them.

  2. Forget 3d by UberGeeb · · Score: 5, Interesting

    Forget 3d, it would be too difficult to make and most people wouldn't be able to wrap their tiny little brains around how it works. Make a hexagon-based crossword instead. This gives you 3 directions (vertical, down/left, and up/left), gives you the added complication of 3 possible clues per intersection, and will easily fit on a single page of paper. You'll have to come up with a hexagonal grid, but that's not too difficult. There should be plenty of vector-based hex grids on the web.

  3. Don't by jcenters · · Score: 4, Insightful

    I'm a journalism student with some layout experience, so I'm fairly sure I know what I'm talking about here.

    It's a neat concept, but kind of silly when you think about it. Print is, by nature, a two-dimensional medium. I've seen two solutions already mentioned here, making the crossword much smaller or spreading it across multiple pages.

    The way I envision it, a three-dimensional crossword would have to be shrunk down a lot to be able to fit in the usual space a 2d crossword occupies, which just makes it inefficient. Besides, a 3d crossword isn't going to be much different from a 2d crossword after being flattened for print.

    If you were to try and span it out over several pages, you would probably piss your editors off, who likely don't want what is usually a small diversion occupying precious ad space.

    --

    vi ~/.emacs

  4. I had a similar idea by SimianOverlord · · Score: 4, Interesting

    I was goofing around for a school published magazine. I made a 4D crossword by making a 3D crossword with clues for "Morning", "Afternoon" and "Evening". I solved the display problem by making it very simple, I think about 30 clues for each time point. Then I exploded the crossword 3D model, printing 1 vertical row stretching back in 3D, with pull out text boxes with the clue number. The horizontal clues extruded from the surface, and I worked it out so they didn't occlude clue boxes too much behind, and the "other side" was printed just below.

    It's hard to explain, a diagram would make it pretty obvious. There were 3 verticals printed across the page. I couldn't create a 4D crossword you could actually write clues in, so they had to list the answers in a boring list below.

    I'm a pretty neat writer so it came out fine, but the photocopies were not perfect. The generation of the clues was an arduous task as I had to do it three times for the different time periods.

    Advice for creating the 3d grid initially- lego blocks are your friend. The whole thing took several nights effort, but got quite a laugh, most people thought I was taking the piss. Not sure if anyone actually completed it, but as an intellectual exercise, I enjoyed it.

    --
    Meine Schwester ist sehr, sehr reizvoll - Nietzsche
  5. it depends by conJunk · · Score: 4, Insightful

    implementation on paper depends on the rules of the game

    do you require only simple linear three-d words (e.g. just words on x & y, OR y & z, OR x & z) or are words that function in all three dimensions permitted (i.e. diagonal through the cube)?

    if you DISALLOW diagonals, then you could do it (simply) with five (or whatever) crossword grids on a single page, and color code the various dimensions (like 6 down green, 8 across red, etc...)

    the obvious difficulty would be that the instructions on how to work it would take up far too much space on the page!

    perhaps the short answer is the sad one: since paper is a 2d medium, a 3d crossword puzzle ON PAPER is far more difficult than one would hope, once you take into account the end user

    however, there's no reasons you couldn't do it in a medium that alows 3-d modeling, and rotation, and all that good stuff we've come to expect from our little glowing boxes... a web implementation would certainly be fun, and would require FAR less instruction, becuase the 3D nature of the thing would be clearly modeled in the display

    it would certainly be fun to see how those solid black boxes work out in the 3d version

  6. Alternatives by baruz · · Score: 3, Interesting

    Creating a traditional crossword in a cube, there are a huge number of constraints to be put on each cube, but also a large number of crosswords themselves: The 10^3 crossword requires a stack of ten crosswords of 10x10 each, top to bottom, forward to back, and left to right. That's 30 crossword puzzles you're devising, each one constrained by all the planes not paralleling it.

    Perhaps a cube with only the faces showing, so that only the beginnings and ends of words (at the edges and corners) interconnect? That's only six crossword puzzles, and much fewer constraints. The layout could be an unfolded cube, say six puzzles laid out in a latin cross, with perhaps the disconnected edges connected by dashes or another color if your press has it.

    Another idea would be to make a much sparser matrix, say twenty words, and drawing only the cubes that contained the letters, like an abstract spatial sculpture or scaffolding. I would put it in a slightly skewed orthogonal perspective, select one face (say, the top), and draw its edges in a heavier or darker line than the other edges. In creating it, I would concentrate on making words intersect like a tree, rather than making sheets of densely packed words.

    --
    He was a verray parfit gentil knight.
  7. Obey Your Father by dont_think_twice · · Score: 4, Interesting

    In case you are not aware, Claude Shannon adressed the issue of 3-D crossword puzzles in "The Mathematical Theory of Communication". I quote:

    The redundancy of a language is related to the existence of crossword puzzles. If the redundancy is zero any sequence of letters is a reasonable text in the language and any two-dimensional array of letters forms a crossword puzzle. If the redundancy is too high the language imposes too many constraints for large crossword puzzles to be possible. A more detailed analysis shows that if we assume the constraints imposed by the language are of a rather chaotic and random nature, large crossword puzzles are just possible when the redundancy is 50%. If the redundancy is 33%, three-dimensional crossword puzzles should be possible, etc.

    Since he also claims that the redundancy of English is 50% (in other places, he claims it is even higher), it appears that the father of information theory has decided that you will not be able to pull off a 3-D crossword puzzle. To me, that sounds like a great reason to try and do it. Not many people sucessfully prove Claude Shannon wrong, even indirectly.

    Of course, if you do create a 3-D crossword puzzle, you should call it a 11-D puzzle, and claim that all the other dimensions are curled up very small. If some of the smartest people in the world can get away with that, you should be able to also.

  8. Use Coplanar Vectors by Michael.Forman · · Score: 4, Interesting


    In crosswords, the "dimensions" don't necessarily have to be orthogonal. It is permissible to create several coplanar vectors (called "directions" instead of "dimensions") that intersect at various angles. For instance you could use squares (two directions), hexagons (three directions), octagons (four directions), and so on. The closest to what you were asking for would be hexagonal shapes with words moving "down", "up-across", and "down-across".

    If your three word vectors must be orthogonal, I have seen sparse 3D crosswords drawn in 2D in perspective. They were sparse to allow the reader to solve words that would otherwise be occluded by a dense crossword. A dense orthogonal 3D crossword could be represented in many slices of a traditional 2D crossword.

    Michael.

    --
    Linux : Mac :: VW : Mercedes