vote up 34 vote down star
39

We have Amdahl's law that basically states that if your program is 10% sequential you can get a maximum 10x performance boost by parallelizing your application.

Another one is Wadler's law which states that

    In any language design, the total time spent discussing
    a feature in this list is proportional to two raised to
    the power of its position.

        0. Semantics
        1. Syntax
        2. Lexical syntax
        3. Lexical syntax of comments

My question is this: What are the most important (or at least significant / funny but true / sad but true) laws of Computer Science and programming?

I want named laws, and not random theorems, So an answer should look something like

Surname's (law|theorem|conjecture|corollary...)

Please state the law in your answer, and not only a link.

Edit: The name of the law does not need to contain it's inventors surname. But I do want to know who stated (and perhaps proved) the law

flag
3  
And the obvious answer is haacked.com/archive/2007/… . – mmyers May 19 at 15:30
show 6 more comments

44 Answers

prev 1 2
vote up 2 vote down

Edward V. Berard Law

Walking on water and developing software to specification are easy as long as both are frozen.

link|flag
show 1 more comment
vote up 10 vote down

I do a lot of distributed programming, so one of my favorites is Segal's Law:

A man with a watch knows what time it is. A man with two watches is never sure

The application to distributed programming is that you have to either arrange things so that your whole distributed system only has one clock driving things, or you have to accept that processes/events using different clocks are going to be running asynchronous. Two clocks will drift from each other. You can't expect two separate clocks (typcially on two seperate machines) to act in lock-step.

link|flag
vote up 0 vote down

Judge Dredd's Law

"I am the Law"

link|flag
show 1 more comment
vote up 2 vote down

Any sufficiently advanced technology is indistinguishable from magic.

Arthur C. Clarke, Profiles of The Future, 1961 (Clarke's third law)

The only way to discover the limits of the possible is to go beyond them into the impossible.

Arthur C. Clarke, Technology and the Future (Clarke's second law)

When a distinguished but elderly scientist states that something is possible, he is almost certainly right. When he states that something is impossible, he is very probably wrong.

Arthur C. Clarke, (Clarke's first law)

link|flag
1  
Any sufficiently advanced bug is indistinguishable from a feature. -- Rich Kulawiec – Bill the Lizard May 20 at 19:14
vote up 0 vote down

There is "Heisenberg uncertainty principle", which in general states:

In quantum physics, the Heisenberg uncertainty principle states that certain pairs of physical properties, like position and momentum, cannot both be known to arbitrary precision.

With translation to software engineering, the application of this principle is a following: You cannot test and debug you own code, since in order to achieve it you must add additional code, therefore you test not the original system.

link|flag
vote up 2 vote down

Software can only ever be two of the following:

  • fast
  • cheap
  • delivered on time
link|flag
show 4 more comments
vote up 0 vote down

Zimmerman's maxum:

Anything written down in more than one place, is wrong in more than one place.

You will never have two copies of data stay the same, especially if you depend on a human to keep them the same.

link|flag
show 1 more comment
vote up 3 vote down

One of my Favourites is

"One in a million is next tuesday"

Larry Osterman.

Basically it states that when dealing with computers, things happen so fast, that even something that happens very rarely, is going to happen within the next few days.

link|flag
vote up 1 vote down

I like Proebstings Law:

Compiler Advances Double Computing Power Every 18 Years

research.microsoft.com/en-us/um/people/toddpro/papers/law.htm

link|flag
vote up 4 vote down

The Steve Rule:

In a random sample of programmers, there will be more named Steve then there will be females.

This can be refined to a more correct and culture-agnostic version:

In a random sample of programmers, the likelihood of there being a male name with more programmers bearing that name than there are female programmers approaches 1 as the sample size increases.

link|flag
vote up 1 vote down

Atwood's Law:

Any application that can be written in JavaScript, will eventually be written in JavaScript.

link|flag
vote up 1 vote down

Some less well known ones:

Wheeler's law: "All problems in computer science can be solved by another level of indirection"

Berry’s law. "The best way to go infinitely fast is to produce no code at all" - i.e. If something can be computed once, then do it at compile time.

link|flag
show 2 more comments
vote up 0 vote down

Not really coined as a law, but I think this quote from Eric Evans Domain-driven design is an important aspect of Brooks "no silver bullets" law:

"One way or another, creating distinctive software comes back to a stable team accumulating specialized knowledge and crunching it into a rich model. No shortcuts. No magic bullets."

link|flag
vote up 0 vote down

Postel's Law, or the robustness principle:

Be liberal in what you accept, and conservative in what you send.

Not as humorous as many other ones mentioned, but quite insightful. It was, aptly, quoted in the computer networking textbook we used at uni. Apprarently this was originally mentioned in RFC-791, "Internet Protocol," by Joe Postel, September 1981.

Differently worded variants abound (see e.g. RFC-793 and RFC-1122); a common one is: "Be conservative in what you do; be liberal in what you accept from others."

link|flag
show 1 more comment
prev 1 2

Your Answer

Get an OpenID
or

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