show/hide this revision's text 4 deleted 403 characters in body

Another point I wanted to make quick mention of is that any algorithm that has a complexity of O(na) is said to have polynomial complexity or is solvable in polynomial time.These algorithms are said to be NP-Complete. This basically means the problem is solvable "quickly". The Traveling Salesman problem is not solvable in polynomial time and is consequently of a class of problems deemed NP-Hard.

show/hide this revision's text 3 fixed typos, minor clarifications

Big-O notation is a relative representation of the complexity of an algorithmin the expected case.

  • representation: Big-O (in its simplest form) reduces the comparison between algorithms to a single variable. That variable is chosen based on observations or assumptions. For example, sorting algorithms are typically compared based on comparison operations (comparing two nodes to determine their relative ordering). This assumes that comparison is expensive. But what if comparison is cheap but swapping is expensive? It changes the comparison; and
  • complexity: if it takes me one second to sort 10,000 elements how long will it take me to sort one million? Complexity in this instance is a relative measure to something else;
  • expected case: if you take the numbers from 1 to 1000 and shuffle them, pick a number between 1 and 1000 and then look for its position in the shuffled list it might be the first one (and should be 1/1000th of the time) but you don't care about that.Typically you'll need to search ~500 items (expected) or 1000 (worst case), both of which are a function of the number of elements (and thus O(n) complexity; but mor eon this in a second).
  • Each of these is an operation or a problem. A method of solving these is called an algorithm.

    If we have 2 100 digit numbers we need to do 10,000 multiplications and 200 adds. For 2 two one million digit numbers we need to do one trillion (1012) multiplications and two million adds.

    As the algorithm scales with n-squared, his this is O(n2) or quadratic complexity. This is a good time to introduce another important concept:

    The next best example I can think of is the telephone book, normally called the White Pages or similar but it'll vary from country to country. But I'm talking about the one that lists people by surname and then initials or first name, possibly address and then telephone numbers.

    A typical example implementation might be to open up to the middle, take the first name 500,000th and compare it to "Smith". If it happens to be "Smith, John", we just got real lucky. Far more likely is that "John Smith" will be before or after that name. If it's after we then divide the last half of the phone book in half and repeat. If it's before then we divide the first half of the phone book in half and repeat. And so on.

    In Big-O terms this is O(log n) or logarithmic complexity. Now what the logarithm in question could be ln (base e), log10, log2 or some other base. It doesn't matter it's still O(log n) just like O(2n2) and O(100n2) are still both O(n2).

    It's worthwhile at this point to explain that Big O can be used to determine three cases with an algorithm:

  • Best Case: In the telephone book search, the best case is that we find the name in one comparison. This is O(1) or constant complexity;
  • Expected Case: As discussed above this is O(log n); and
  • Worst Case: This is also O(log n).
  • Normally we don't care about the best case. We're interested in the expected and worst case. Sometimes one or the other of these will be more important.

    Back to the telephone book.

    What if you have a phone number and want to find a name? The police have a reverse phone book but such lookups are denied to the general public. Or are they? Technically you can reverse lookup a number in an ordinary phone book. How?

    So to find a name for a number in a book of a million names might take you... a million comparisons.

    So a number to namelookup in this case is :

  • Best Case: O(1);
  • Expected Case: O(n) complexity. The police have a book sorted by number so (for them it is O(log n500,000); and
  • Worst Case: O(n) just like us (for names1,000,000).
  • Well actually there's less than that because some of these are equivalent (A -> B -> C and C -> B -> A are requivalentequivalent, for example, because they use the same raodsroads, jus tin just in reverse).

    5! = 5 * 4 * 3 * 2 * 1 - 1206! = 6 * 5 * 4 * 3 * 2 * 1 = 7207! = 7 * 6 * 5 * 4 * 3 * 2 * 1 = 504025! = 25 * 24 * ... * 2 * 1 = 15,511,210,043,330,985,984,000,00050! = 50 * 49 * ... * 2 * 1 = 3.04140932... × 10^64

    So the Big-O of the Travelling Salesman problem is O(n!)O(n!) or factorial or combinatorial complexity.

    Something to think about.

    Polynomial Time

    Another point I wanted to make quick mention of is that any algorithm that has a complexity of O(na) is said to have polynomial complexity or is solvable in polynomial time. These algorithms are said to be NP-Complete. This basically means the problem is solvable "quickly". The Traveling Salesman problem is not solvable in polynomial time and is consequently of a class of problems deemed NP-Hard.

    Traditional computers can solve problems in polynomial time. Certain things are used in the world because of this. Public Key Cryptography is a prime example. It is computationally hard to find two prime factors of a very large number. If it wasn't, we couldn't use the public key systems we use.

    And that's Big O notation in a nutshell.

    show/hide this revision's text 2 added 6291 characters in body

    Big O

    The simplest definition I can give for Big-O notation is this:

    Big-O notation is a relative representation of the complexity of an algorithm given a sufficiently large inputin the expected case.

    There's some important and deliberately chosen words in that sentence:

  • relative: you can only compare apples to apples. You see what 'n' means depends on the can't compare an algorithm to do arithmetic multiplciation to an algorithm that sorts a list of integers. But two algorithms that do arithmetic operations (one multiplication, one addition) will tell you something meaningful;
  • representation:

  • Sorting algoirthms use 'n' Big-O (in its simplest form) reduces the comparison between algorithms to mean a single variable. That variable is chosen based on observations or assumptions. For example, sorting algorithms are typically compared based on comparison operations (comparing two nodes to determine their relative ordering). This assumes that comparison is expensive. But what if comparison is cheap but swapping is expensive? It changes the number of comparison;
  • complexity: if it takes me one second to sort 10,000 elements how long will it take me to sort one million? Complexity in this instance is a relative measure to something else;
  • An arithmetic operation might use
  • expected case: if you take the numbers from 1 to 1000 and shuffle them, pick a number between 1 and 1000 and then look for its position in the shuffled list it might be the first one (and should be 1/1000th of digits as 'n';
  • etc.
  • The point is that 'n' only has meaning when the time) but you compare it to similar algorithmsdon't care about that. Multiplication being O(n2) compared Typically you'll need to search ~500 items (expected) or 1000 (worst case), both of which are a function of the number of elements (and thus O(nlog n) for Quicksort is complexity; but mor eon this in a meaningless comparisonsecond).

    Multiplication is a good

    Come back and reread the above when you've read the rest.

    The best example because we all of Big-O I can think of is doing arithmetic. Take two numbers (hopefully) 123456 and 789012). The basic arithmetic operations we learnt how to multiply by hand in school (well at least I did)were:

  • addition;
  • subtraction;
  • multiplication; and
  • division.

    When you multiply this you have to multiply each combination

  • Each of these is an algorithm.

    Addition is the simplest. You line the numbers up (to the right) and add the digits so in this example you have to do 36 multiplication (followed by some adding up as well as carrying a column writing the last number of that addition in the result. The 'tens' part of that number is carried over some remainders)to the next column.If you

    Let's assume that multiplication the addition of these numbers is the most expensive operation in this algorithmthen you say n = . It stands to reason that to add these two numbers together we have to add together 6 digits (and possibly carry a 7th). If we add two 100 digit numbers together we have to do 100 additions. If we add two 10,000 digit numbers we have to do 10,000 additions.

    See the pattern? The complexity (being the number of operations) is directly proportional to the number of digits.

    To We call this O(n) or linear complexity.

    Subtraction is similar (except you may need to borrow instead of carry).

    Multiplication is different. You line the numbers up, take the first digit in the bottom number and multiply 2 it in turn against each digit in the top number and so on through each digit. So to multiply our two 6 digits digit numbers requires we must do 36 multiplications. We may need to do as many as 10 or 611 column adds to get the end result too.

    If we have 2 100 digit numbers we need to do 10,000 multiplications and 200 adds. So For 2 one million digit numbers we need to do one trillion multiplications and two million adds.

    As the multiplication operation algorithm scales with n-squared, his is O(n2).

    Compare this This is a good time to addition of introduce another important concept:

    We only care about the same numbersmost significant portion of complexity.You

    The astute may have to add realized that we could express the number of operations as: n2 + 2n. But as you saw from our example with two numbers of a million digits apiece, the second term (2n) becomes insignificant (accounting for 0.00002% of the total operations by that stage).

    The Telephone Book

    The next best example I can think of is the telephone book, normally called the White Pages or similar but it'll vary from country. But I'm talking about the one that lists people by surname and carry) 6 then initials or first name, possibly address and then telephone numbers.

    Now if you were instructing a computer to look up the phone number for "John Smith", what would you do? Ignoring the fact that you could guess how far in the S's started (maybe 7 with let's assume you can't), what would you do?

    A typical example might be to open up to the middle, take the first name and compare it to "Smith". If it happens to be "Smith, John", we just got real lucky. Far more likely is that "John Smith" will be before or after that name. If it's after we then divide the last half of the phone book in half and repeat. If it's before then we divide the first half of the phone book in half and repeat. And so on.

    This is called a final remainder)bisection search and is used every day in programming whether you realize it or not.Adding 2 6 digits numbers means 6

    So if you want to find a name in a phone book of a million names you can actually find any name by doing this at most 21 or so times (I might be off by 1). In comparing search algorithms we decide that this comparison is our 'n'.

    For a phone book of 3 names it takes 2 comparisons (at most).
    For 7 adds it takes at most 3.
    For 15 it takes 4.
    ...
    For 1,000,000 it takes 21 or so.

    That is staggeringly good isn't it?

    In Big-O terms this is O(log n) complexity.

    Now what if you have a phone number and want to find a name? The police have a reverse phone book but such lookups are denied to the algorithm general public. Or are they? Technically you can be said reverse lookup a number in an ordinary phone book. How?

    You start at the first name and compare the number. If it's a match, great, if not, you move on to be O(n) the next. You have to do it this way because the phone book is unordered ("linear complexity")by phone number anyway).

    So if to find a name for a number in a book of a million names might take you... a million comparisons.

    So a number to name lookup in this case is O(n) complexity. The police have a book sorted by number so for them it is O(log n) just like us for names.

    The Travelling Salesman

    This is quite a famous problem in computer science and deserves a mention. In this problem you have 2 10,000 digit numbers N towns. Each of those towns is linked to 1 or more other towns by a road of a certain distance. The Travelling Salesman problem is to find the shortest tour that visits every town.

    Sounds simple? Think again.

    If you know have 3 towns A, B and C with roads between all pairs then you could go:

    A -> B -> C
    A -> C -> B
    B -> C -> A
    B -> A -> C
    c -> A -> B
    C -> B -> A

    Well actually there's less than that addition because some of these are equivalent (A -> B -> C and C -> B -> A are requivalent, for example, because they use the same raods, jus tin reverse).

    In actuality there are 3 possibilities.

    Take this to 4 towns and you have (iirc) 12 possibilities.With 5 it's 60.6 becomes 360.

    This is going a function of a mathematical operation called a factorial. Basically:

    6! = 6 * 5 * 4 * 3 * 2 * 1

    So the Big-O of the Travelling Salesman problem is O(n!). By the time you get to be significantly faster than multiplication200 towns there isn't enough time left in the universe to solve the problem with traditional computers.

    Something to think about.

    Anyway, that's it for my (hopefully plain English) explanation of Big O (revised).

    show/hide this revision's text 1