What is an Algorithm?
Learn to define an algorithm as a precise sequence of steps designed to solve specific problems. Understand its historical origins from al-Khwarizmi's work to modern computation, and see practical examples that clarify algorithm implementation and design principles.
We'll cover the following...
Introduction to algorithm
An algorithm is an explicit, precise, unambiguous, mechanically executable sequence of elementary instructions, usually intended to accomplish a specific purpose. For example, here is an algorithm for singing that annoying song “99 Bottles of Beer on the Wall” for arbitrary values of the starting number of beer bottles:
Algorithm
Implementation
Explanation
-
Line 1: We define a function called
bottles_of_beerthat takes a single argumentn. -
Lines 2–12: We print out the lyrics of the “99 Bottles of Beer” song, using a loop to iterate over a range of numbers from
ndown to1. -
Line 15: We call the
bottles_of_beer()function with an argument of99to start the song with 99 bottles.
Etymology of the word algorithm
The word algorithm does not derive, as algorithmophobic classicists might guess, from the Greek roots arithmos (), meaning number, and algos (), meaning pain. Rather, it is a corruption of the name of the 9th-century Persian scholar Muhammad ibn Musa al-Khwarizmi. Al-Khwarizmi is perhaps best known as the writer of the treatise al-Kitab al-mukhtasar fıhısab al-ğabr wa’l-muqabala, from which the modern word algebra derives. In a different treatise, al-Khwarizmi described the modern decimal system for writing and manipulating numbers—in particular, the use of a small circle or to represent a missing quantity, which had been developed in India several centuries earlier. The methods described in this latter treatise, using either written figures or counting stones, became known in English as algorism or augrym, and its figures became known in English as ciphers.
Although both place-value notation and al-Khwarizmi’s works were already known by some European scholars, the “Hindu-Arabic” numeric system was popularized in Europe by the medieval Italian mathematician and tradesman Leonardo of Pisa, better known as Fibonacci. Thanks in part to his 1202 book Liber Abaci, written figures began to replace the counting table (then known as an abacus) and finger arithmetic as the preferred platform for calculation in Europe in the 13th century—not because written decimal figures were easier to learn or use but because they provided an audit trail. Ciphers became common in Western Europe only with the advent of movable type and truly ubiquitous only after cheap paper became plentiful in the early 19th century.
Eventually, the word algorism evolved into the modern algorithm via folk etymology from the Greek arithmos (and perhaps the previously mentioned algos). Thus, until very recently, the word algorithm referred exclusively to mechanical techniques for place value arithmetic using Arabic numerals. People trained in the fast and reliable execution of these procedures were called algorists or computators, or, more simply, computers.