Encyclopedia > The Answer to Life, the Universe, and Everything

  Article Content

The Answer to Life, the Universe, and Everything

Warning: Wikipedia contains spoilers.

42 is the answer to the Question of Life, the Universe and Everything, as given by the supercomputer Deep Thought to a group of mice in Douglas Adams's The Hitchhikers Guide to the Galaxy. According to the Guide, mice are 3-dimensional profiles of a pan-dimensional, super-intelligent race of beings. They built Deep Thought, the second greatest computer of all time and space, to tell them the answer to the question of life, the universe and everything. After seven and a half million years the computer divulges the answer: 42.

"Forty-two!" yelled Loonquawl. "Is that all you've got to show for seven and a half million years' work?"
"I checked it very thoroughly," said the computer, "and that quite definitely is the answer. I think the problem, to be quite honest with you, is that you've never actually known what the question is."

The computer informs the researchers that it will build them a second and greater computer, incorporating living beings as part of its computational matrix, to tell them what the question is. That computer was called Earth and was so big that it was often mistaken for a planet. The question was lost minutes before it was to be outputted, by the Vogons' demolition of the Earth, supposedly to build a hyperspace bypass. (Later in the series, it is revealed that the Vogons had been hired to destroy the Earth by a consortium of philosophers and psychiatrists who feared for their jobs should the meaning of life become common knowledge.)

Lacking a real answer, the mice proposed to use "How many roads must a man walk down?" as the question for talk-shows (having rejected the question, "What's yellow and dangerous?" - actually a riddle whose answer, not given by Adams, is "Shark-infested custard").

At the end of the book The Restaurant at the End of the Universe (volume 2 of the Hitchhiker's trilogy), Arthur Dent (as the last human to have left the Earth before its destruction, and therefore the portion of the computer matrix most likely to hold the question) attempts to discover the Question by extracting it from his unconscious mind, through pulling Scrabble letters at random out of a sack. The result is the sentence "WHAT DO YOU GET IF YOU MULTIPLY SIX BY NINE".

"Six by nine. Forty-two."
"That's it. That's all there is."

Since 6 x 9 = 54, this being the question would imply that the universe is bizarre and irrational; on the other hand, there is no proof that this was the actual question. After all, Arthur Dent comprised only a minuscule fragment of the vast and complex computer matrix that was the Earth, and besides, it was stated that the computer's run had not finished when it was destroyed. In addition, Arthur and Ford realized that the original ape-like inhabitants of Earth were displaced by the Golgafrinchans, which could account for the irrational nature of the question in Arthur's mind (as he himself is a descendant of the Golgafrinchans).

However, it was later pointed out that 6 x 9 = 42 if the calculations are performed in base 13, not base 10. Douglas Adams was not aware of this at the time, and has denied that base 13 has anything to do with it.

On the BBC Radio show of the book, the caveman spells in scrabble stones, "What is 6 times 9?" The man answers, "Forty-two. I always knew there was something fundamentally wrong about the Universe!" (And a faint voice can be heard shouting, "Base 13!") - Actually this last statement is untrue. Having carefully listened to the CD release of the radio series, no such shout is present, though there are sound effects at that point which while quite innocuous might be misheard if one really wanted to hear it that way (a bit like interpretations of the end of Sgt Pepper's Lonely Hearts Club Band).

There is a joke amongst computer programmers that Deep Thought may have had some order of operations issues. The following code in the programming language C defines the variable SIX as "1 + 5" and NINE as "8 + 1", and then performs the computation "SIX * NINE". It returns the answer "42", because "SIX * NINE" is expanded by the computer to "1 + 5 * 8 + 1", and the multiplication takes precedence[?] over the additions.

  #include <stdio.h>

  #define SIX    1 + 5
  #define NINE   8 + 1

  int main()
  {
      printf( "The meaning of life: %d\n", SIX * NINE );
      return( 0 );
  }

See also: Meaning of life

External link

  • Douglas Adams himself had also something to say on this subject; see this post (http://groups.google.com/groups?selm=adamsd.1102700746A%40news.cerf.net).



All Wikipedia text is available under the terms of the GNU Free Documentation License

 
  Search Encyclopedia

Search over one million articles, find something about almost anything!
 
 
  
  Featured Article
Urethra

... is a tube that connects the urinary bladder to the outside of the body. The urethra has an excretory function in both sexes, to pass urine to the outside, and also a ...

 
 
 
This page was created in 37.8 ms