When I read about it in Gödel Escher Bach I wasn’t aware yet that unsolvable is a valid answer to a problem. I felt cheated(1) and the whole book lost a lot of its appeal. In retrospect it may have actually undone some damage done by the school system where the solution space is usually very restricted. Edit: (1) From what I remember it’s stated as find the sequence and not does such a sequence exist.
I would continue arguing that "unsolvable" is not a valid solution to this puzzle . If the description asks you to "find the solution" and the solution does not exist, then it is a riddle, not a puzzle.
MU puzzle
21–30 of 46 posts
Re: MU puzzle
#22When I read about it in Gödel Escher Bach I wasn’t aware yet that unsolvable is a valid answer to a problem. I felt cheated(1) and the whole book lost a lot of its appeal. In retrospect it may have actually undone some damage done by the school system where the solution space is usually very restricted. Edit: (1) From what I remember it’s stated as find the sequence and not does such a sequence exist.
I have a similar memory! I read about the problem in the book and worked on it for days, trying to solve it. I was in junior high at the time, and my math teacher spotted what I was doing. The teacher figured out quite quickly that it was impossible to solve. And I felt sort of dumb for not figuring out it was impossible and having a teacher prooving it :)
It should be noted that if the teacher had had the foresight (often a big ask) to simply tell you they suspected there was no solution, which is often the case with such problems presented as they are, and that you should attempt a proof alone, you would likely not feel so bad about not spotting it immediately.
Re: MU puzzle
#23Re: MU puzzle
#24When I read about it in Gödel Escher Bach I wasn’t aware yet that unsolvable is a valid answer to a problem. I felt cheated(1) and the whole book lost a lot of its appeal. In retrospect it may have actually undone some damage done by the school system where the solution space is usually very restricted. Edit: (1) From what I remember it’s stated as find the sequence and not does such a sequence exist.
Re: MU puzzle
#25Is the Gödel Escher Bach worth the reading? I started, but I feel it's fluff. People say he is good, though. Are there some practical insights?
I think most of us who really like it read it as kids which colors it too much. I distinctly remember this proof that you can't solve the MU-puzzle as the first piece of mathematics I ever saw. In one swoop I discovered impossibility proofs, invariants, and the use of divisibility which suffused the whole book with an aura of initiation into great mysteries that it will never attain for the already-initiated.
#!/usr/bin/perl -w
use strict;
my %tried = ();
main();
sub main {
my @rules = (
\&rule_one,
\&rule_two,
\&rule_three,
\&rule_four,
);
my $axiom = 'MI';
my @path;
my @tries;
solve($axiom, \@rules);
}
sub solve {
my @app;
my ($axiom, $rules) = @_;
my $i = 0;
foreach(@$rules){
my $tmp = $_->($axiom);
push(@app, $tmp) if $tmp;
}
foreach(@app){
next if $tried{$_};
next unless (length($_) Re: MU puzzle
#26Is the Gödel Escher Bach worth the reading? I started, but I feel it's fluff. People say he is good, though. Are there some practical insights?
I thoroughly enjoyed it, but I've always had diverse interests and the book sort of caters to that.
Re: MU puzzle
#27Is the Gödel Escher Bach worth the reading? I started, but I feel it's fluff. People say he is good, though. Are there some practical insights?
If you approach it as an object of art, the book is fun because it embeds into itself many of the techniques and principles it describes (but you'll only notice this if you're paying attention). This is kinda cool on a meta-meta level because the central concept of the book is self-referentiality.
Re: MU puzzle
#28Is the Gödel Escher Bach worth the reading? I started, but I feel it's fluff. People say he is good, though. Are there some practical insights?
Re: MU puzzle
#29Earlier quoted context omitted.
I would continue arguing that "unsolvable" is not a valid solution to this puzzle . If the description asks you to "find the solution" and the solution does not exist, then it is a riddle, not a puzzle.
You're simply playing semantics and defining "puzzle" as "something that has a solution". But if you're at work and your boss says "I have a puzzle I need you to solve: Given these constraints, find an answer" You need to be able to say "Here is my solution" or "No solution is possible, and here is why." Or take something simpler: a 500 piece "Puzzle" only there's a manufacturing defect in all copies: one piece is mi…
Re: MU puzzle
#30Earlier quoted context omitted.
On a slight tangent, I recently read a paper on an interesting relationship between Collatz path length and Mersenne primes. "Our main finding to report is the fact that a path length of a Mersenne prime is approximately proportional to its index for large n, namely, D(Mn) ≈ 13.45n." Paper is at https://arxiv.org/pdf/1104.2804.pdf . WARNING: PDF.
I'm curious, why do people on HN warn about PDFs? The worst things I can imagine happening with PDFs are (1) you don't have any software that can read it (probably like .2% of HNers?) and (2) it could potentially have some malware (but the same could be said of a website)