Jump to content

Answer to Life, the Universe, and Everything

From Wikipedia, the free encyclopedia

This is an old revision of this page, as edited by IainP (talk | contribs) at 11:01, 18 January 2006 (rv edits by 24.117.10.18). The present address (URL) is a permanent link to this revision, which may differ significantly from the current revision.

The Answer to The Ultimate Question Of Life, the Universe and Everything is a concept taken from Douglas Adams' science fiction series The Hitchhiker's Guide to the Galaxy. In the story, the Ultimate Answer to Life, the Universe, and Everything is sought using the supercomputer Deep Thought. The answer given by Deep Thought leads the protagonists on a quest to discover the question which provides this answer. Template:Spoiler

Story lines

The Ultimate Answer

According to the Hitchhiker's Guide, researchers from a pan-dimensional, hyper-intelligent race of beings, construct Deep Thought, the second greatest computer of all time and space, to calculate the Ultimate Answer. After seven and a half million years of pondering the question, Deep Thought provides the answer: "forty-two."

"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 search for the Ultimate Question

The Ultimate Answer

Deep Thought informs the researchers that it will design 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 researchers themselves take the form of mice, to run the program. The question was lost five minutes before it was due to be produced, due to 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 the loss of their jobs when the meaning of life became common knowledge.

Lacking a real question, the mice proposed to use "How many roads must a man walk down?" (the first line of Bob Dylan's famous civil rights song Blowin' In The Wind) as the question for talk shows, after considering and rejecting the question, "What's yellow and dangerous?"—actually a riddle whose answer, not given by Adams, is "shark-infested custard."

At the end of Mostly Harmless, which is the last of the series of novels, there is a final reference to the number 42. As Arthur and Ford are dropped off at club Beta (owned by Stavro Müller), Ford shouts at the cabby to stop "just there, number forty-two … Right here!" The entire Earth (in all dimensions, not just those in which it was demolished by the Vogons), is destroyed immediately after this final reference.

Arthur's Scrabble tiles

File:Scrabble 6x9.jpg
The Ultimate Question?

At the end of the first radio series, the television series, and the book The Restaurant at the End of the Universe, the second of the five-book 'trilogy,' Arthur Dent — as the last human to have left the Earth before its destruction, 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."

Of course, 6 × 9 is 54, not 42. There are several possible interpretations of this. One would be that Arthur indeed discovered the Ultimate Question, which doesn't match the Answer simply because the universe is bizarre and irrational. Arthur Dent accepts this as being the reason in the radio series, when he remarks, "I always said there was something fundamentally wrong with the universe." However, this explanation is contradicted by the book, particularly by the fact that the Earth's computation of the Question had not finished when it was destroyed.

Another explanation is that the program (Earth) would have run correctly if not for the interference of events such as the crash landing of the Golgafrinchans. These important modifications introduced error into the program and caused it to discover the wrong question. This accounts for the irrational nature of the question in Arthur's mind, as he himself is a descendant of the Golgafrinchans. It could in fact be that the question in Arthur's mind is a warped version of the true question.

It is also possible, given Adams' often bleak view of technology (in the late 1970s), that the 6 × 9 = 42 answer is meant to indicate that the Earth project was a flawed design to begin with, one that was always going to produce the wrong question even if the program had been run successfully.

It was later pointed out by readers that 6 × 9 = 42 if the calculations are performed in base 13, not base 10. Douglas Adams was not aware of this at the time, and since dismissed this idea repeatedly, saying that "nobody writes jokes in base 13 [...] I may be a pretty sad person, but I don't make jokes in base 13."

Marvin's Question

Another possibility as to the Ultimate Question is presented in the third book, Life, the Universe and Everything. Often complaining about having a "brain the size of a planet", (this would presumably be necessary to work out the Question, as the Earth was created for this purpose according to the series, and is also, quite appropriately, the size of a planet) and once stating that he can see the Question on Arthur's brainwaves, it is possible the "paranoid android" Marvin may know the Question. If this is true, it is possible that it may be given in the following paragraph, taken from Life, the Universe and Everything where Marvin is speaking to the mattress, Zem:

"...I am at a rough estimate, thirty billion times more intelligent than you. Let me give you an example. Think of a number, any number." [said Marvin]

"Er, five" said the mattress.

"Wrong," said Marvin. "You see?"

Given the situation, and other small clues which an enthusiast should read the book to discover, it is quite possible that "Think of a number, any number." is the Ultimate Question, with the correct answer being "Forty Two". This would be quite ironic given that this is in fact, not a question.

Impossibility of discovering the Ultimate Question

At the end of Life, the Universe and Everything, the third book in the series, Arthur encounters a man named Prak, who through a significant overdose of a remarkably effective truth serum has gained the knowledge of all truth. Prak confirms that 42 is indeed the answer to the ultimate question of life, the universe and everything, but reveals that it is impossible for both the ultimate answer and the ultimate question to be known about the same universe (a sort of way to keep the key from the lock). He states that if such a thing should come to pass, the universe would disappear and be replaced by something even more bizarrely inexplicable. He then speculates that this may have already happened.

Douglas Adams's view

Douglas Adams was asked many times during his career why he chose the number forty-two. Many theories were proposed, but he rejected them all. On November 2, 1993, he gave an answer on alt.fan.douglas-adams:

The answer to this is very simple. It was a joke. It had to be a number, an ordinary, smallish number, and I chose that one. Binary representations, base thirteen, Tibetan monks are all complete nonsense. I sat at my desk, stared into the garden and thought '42 will do' I typed it out. End of story.

Computer programmers' joke

There is a joke amongst computer programmers that Deep Thought may have had some order of operations issues. The following code in the C programming language defines the macros 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. This occurs because the macro expansion is textual, not logical — knowledgeable C programmers always surround the content of every macro and each instance of a macro argument with parentheses to avoid problems such as this one.

#include <stdio.h>

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

int main(void)
{
    printf( "What do you get if you multiply %d by %d? %d\n", SIX, NINE, SIX * NINE );
    return 0;
}

Falsely assuming that the answer is indeed correct, that means that the answer to the ultimate question of life, the universe and everything would be 42.

See also