This is my take and notes on the course offered by Professor Tim Roughgarden of Standford on the Coursera platform. You can find the course here.
These are my notes and takes on the “I. Introduction (week1)“.
Introduction
Since I have a background in algorithms, I will give you my personal take on algorithms. Algorithms are basically like recipes. It is how you can turn the raw ingredients into a great edible meal. The ingredients are the input of the algorithm and the meal is the output. Just as we may have little or no ingredients at all, at the same time we can have limited inputs or nothing. Also do again notice that no matter how much ingredient we have, the meal (output) may or may not be tasty or satisfactory and what you intended in the first place.
One thing that you must know is that computers are STUPID! In fact very very stupid. If you were to ask a robot to bring you a glass of water, they would just sit and watch you. They cannot relate in any way, shape or form. You have to break it down for them. Break it down to the level they understand. Firstly you break down to:
- Walk to the kitchen
- Get water
- Come back
Let’s break it down for them, since the above is still vague to machines:
- Walk to the kitchen
- Walk out of the room
- Walk into the kitchen
- Walk to the sink
- Get water
- Get a clean glass
- Turn on the tap
- Fill the glass with water
- Turn off the tap
- Come back
- Walk out of the kitchen
- Walk into the room
- Hand it over to me
Now you think that this is enough for a machine to comprehend your intentions? If you answered yes, you are sadly mistaken. Given the above instructions (aka recipe, aka algorithm), the machine would say such things as:
- What is water?
- What is room?
- What is kitchen?
- What is tap?
- What does turn on mean?
- Where is the kitchen?
- What is a glass?
- Where is the glass?
You may ask what this machine knows then. Aha! It knows some terms, and you need to speak in those terms in order to be able to instruct the machine.
Firstly different machines have different capabilities. Some machines “know” things beforehand.
Then what do machines/computers understand? What are their capabilities? They are good at math and logic. The entire machines are based upon Boolean algebra. They are very very fast at very tiny small stuff, which ultimately makes them ideal for humanistic uses.
Let’s say our machine in the example above understands location x and y, understand to go from location A (at x0, y0) to go to B (at x1, y1), can raise its hand, lower its hand (yea, it’s a robot), twists its wrists clockwise or counter-clockwise. Now all you need to do is to define the kitchen sink at x, y and the room (you) at the x, y the location the clean glass at x, y and such. Also you need to define turning on the tap as:
- Raise your hand
- Twist the knob to turn on the tap
Or something in those lines. Both of the above instructions are comprehendible by the machine. It understands them.
In order to program we have to go from a natural language that is understandable by all humans, to the machine level; simple logic and mathematics.
I need to redefine the above sentence; machines are just as smart as their instructors. They are just as smart as their programmers. (Yes, programmers are, in fact, instructors.)
Now after this long personal introduction, let’s go the course that has been offered.
“Perhaps the most important principle for the good algorithm designer is to refuse to be content.” (Aho, Hopcro‘, and Ullman, The Design and Analysis of Computer Algorithms, 1974)
There are more than one solution to any problem. There are different algorithms that solve a particular problem. We must understand which is the best. and defining best is also important. What do we mean when we say that a particular algorithm is the best? is it the fastest? does it use the least amount of space? Does it only return one answer? is that one answer the most optimum? does it return all the possible answers?
For different situations, different algorithms are useful. There might not be any “best” algorithms, but suitable ones for suitable conditions.
Merge Sort
The idea of divide and conquer is introduced. Meaning that a problem is divided to many small sized problems. Solving (conquering) all the smaller problems will result in solving the entire problem.
through an example of of merge sort, the algorithm is analysed.
Also a good definition of fast algorithm is given:
A fast algorithm: worst-case running time grows slowly with input size
stay tuned for future chapters.

