Note G

From Wikipedia, the free encyclopedia
Note G, originally published in Sketch of The Analytical Engine Invented by Charles Babbage

Note G[a] is a computer algorithm written by Ada Lovelace that was designed to calculate Bernoulli numbers using the hypothetical analytical engine. Note G is generally agreed to be the first algorithm specifically for a computer,[1][2][3][4] and Lovelace is considered as the first computer programmer as a result.[5][6][7][8] The algorithm was the last note in a series labelled A to G, which she employed as visual aids to accompany her English translation of Luigi Menabrea's 1842 French transcription of Charles Babbage's lecture on the analytical engine at the University of Turin, "Notions sur la machine analytique de Charles Babbage" ("Elements of Charles Babbage’s Analytical Machine").[7][9] Lovelace's Note G was never tested, as the engine was never built. Her notes, along with her translation, were published in 1843.[6][7]

In the modern era, thanks to more readily available computing equipment and programming resources, Lovelace's algorithm has since been tested, after being "translated" into modern programming languages. These tests have independently concluded that there was a bug in the script, due to a minor typographical error, rendering the algorithm in its original state unusable.[10][11]

Origin[edit]

Ada Lovelace
Ada Lovelace

In 1840, Charles Babbage was invited to give a seminar in Turin on his analytical engine,[12] the only public explanation he ever gave on the engine.[13] During Babbage's lecture, mathematician Luigi Menabrea wrote an account of the engine in French.[12] A friend of Babbage's, Charles Wheatstone, suggested that in order to contribute, Lovelace should translate Menabrea's account.[12][14] Babbage suggested that she augment the account with appendices, which she compiled at the end of her translation as a series of seven "notes" labelled A-G. Her translation was published in August 1843,[12] in Taylor's Scientific Memoirs,[14][15] wherein Lovelace's name was signed "A.A.L".[12][b] In these notes, Lovelace described the capabilities of Babbage's analytical engine if it were to be used for computing, laying out a more ambitious plan for the engine than even Babbage himself had.[3][15][16]

Lovelace's notes for the article were three times longer than the article itself.[17] In the first notes, she explores beyond the numerical ambitions that Babbage had for the machine, and suggests the machine could take advantage of computation in order to deal with the realms of music, graphics,[18] and language.[8][19][20]

Again, it might act upon other things besides number, were objects found whose mutual fundamental relations could be expressed by those of the abstract science of operations, and which should be also susceptible of adaptations to the action of the operating notation and mechanism of the engine. Supposing, for instance, that the fundamental relations of pitched sounds in the science of harmony and of musical composition were susceptible of such expression and adaptations, the engine might compose elaborate and scientific pieces of music of any degree of complexity or extent.

— Ada Lovelace, Notes upon the memoir "Sketch of The Analytical Engine Invented by Charles Babbage" by the translator Ada Augusta, Countess of Lovelace, Note A

She explains to readers how the analytical engine was separate from Babbage's earlier difference engine,[21] and likens its function to the Jacquard machine,[22] in that it used binary punch cards to denote machine language. In note C, this point is furthered by the fact that simultaneous and iterated actions can be made by the machine, ensuring that any card or collection of cards can be used several times in the solution of a single problem,[20] essentially anticipating modern methods of control flow and looping.[17][23] These ideas were brought to a head in the final note, G, where Lovelace sought to demonstrate an example of computation.

Note G only made use of only the four arithmetical operations: addition, subtraction, multiplication and division, the implementation of Babbage's vision:

Under the impossibility of my here explaining the process through which this end is attained, we must limit ourselves to admitting that the first four operations of arithmetic, that is addition, subtraction, multiplication and division, can be performed in a direct manner through the intervention of the machine. This granted, the machine is thence capable of performing every species of numerical calculation, for all such calculations ultimately resolve themselves into the four operations we have just named.

— Charles Babbage, "Sketch of The Analytical Engine Invented by Charles Babbage"

It also uses Babbage's idea of storing information in columns of discs, each denoted by (for variable) and a subscript number denoting which column is being referred to.

Function[edit]

Lovelace used a recursive equation to calculate Bernoulli numbers,[12] wherein she used the previous values in an equation to generate the next one. her method ran thus:[24]

where is a binomial coefficient,

.

Bernoulli numbers can be calculated in many ways, but Lovelace deliberately chose an elaborate method in order to demonstrate the power of the engine. In Note G, she states: "We will terminate these Notes by following up in detail the steps through which the engine could compute the Numbers of Bernoulli, this being (in the form in which we shall deduce it) a rather complicated example of its powers."[20] The particular algorithm used by Lovelace in Note G generates the eighth Bernoulli number (labelled as , as she started with .)[24]

Notation[edit]

The table of the algorithm organises each command in order. Each command denotes one operation being made on two terms. The second column states only the operator being used. Variables are notated as "",[c] where the superscript before it represents the amount of different values the variable has been assigned to, and the subscript after it represents the ordinal assignment of the variable, that is which variable it is. (For example, refers to the second assignment of variable number 4. Any variables hitherto undefined have a superscript of 0.) The variables are numbered starting from . The third column tells the computer exactly what command is taking place, (For example, on line 1, the command performed is "" - the first iteration of variable 2 is multiplied by the first iteration of variable 3.) and only incorporates one operation between two terms per line. Column 4 - "Variables receiving results" takes note of where the result of the operation in column 3 should be stored. In this way, any variables in this column have their superscript number incremented by one each time. (e.g. on line 1, the result of is assigned to variables , , and .)

Column 5 states whether either of the variables used in the operation of the command has been changed. Enclosed in curly braces, two rows per command put the original variable on the left side of an equals sign, and the new variable on the other side - that is, if the variable has been changed, its superscript is incremented by one, and if not, it remains the same. (e.g. line three assigns the result of to the second iteration of the variable , and the fifth column reflects this by noting;

has changed, but hasn't.

In column 6, "Statement of Results", the result assigned to the variable in column 4 is shown in its exact value based on the values of the two terms previously assigned. (e.g. on line 1 - - was set at the beginning to be , and was set to be the variable . Therefore, , in mathematical notation.) This column is ostensibly not computed by the engine, and appears to be more to aid clarity and the reader's ability to follow the steps of the program. (For example, line 5 has a fraction being divided by two, which is notated as it being multiplied by a half, probably for coherence and the typographical complexity of a nested fraction.) It also makes use of separate variable notation outside of the program, the and variables, which are multiplied successively to find the final value, , thus:[10]

Beyond this, each successive column shows the values of a given variable over time. Each time a variable either changes, or has its value become relevant by token of its presence as one of the terms in the current command, its value is stated or restated in its respective column. Otherwise, it is marked with an ellipsis to denote its irrelevancy. This presumably mimics the computer's need for only relevant information, thereby tracking the value of a variable as the program parses.[10]

Method[edit]

The program sought to calculate what is known by modern convention as the eighth Bernoulli number, listed as , as Lovelace begins counting from .[24]

Error[edit]

In operation 4, the division supposedly taking place is "", to be stored in variable . However, the "Statement of results" says that the division should be:

As a matter of fact, the division is the wrong way round; is the second iteration of , as can be seen in operation 2. Likewise, is the second iteration of , as can be seen in operation 3. Thus, operation 4 should not be , but rather . This bug means that if the engine were ever to run this algorithm in this state, it would fail to generate Bernoulli numbers correctly, and would find its final goal value (the eighth Bernoulli number, ) to be .

Modern implementations[edit]

Lovelace's program can be implemented in a modern programming language, though due to the above stated error, if transcribed exactly it would return an incorrect final value for . The original program generalised in pseudocode follows as thus:

V[1] = 1
V[2] = 2
V[3] = n (n = 4 in Lovelace's program.)

V[4] = V[4] - V[1]
V[5] = V[5] + V[1]
V[11] = V[5] / V[4]
V[11] = V[11] / V[2]
V[13] = V[13] - V[11]
V[10] = V[3] - V[1]
V[7] = V[2] + V[7]
V[11] = V[6] / V[7]
V[12] = V[21] * V[11]
V[13] = V[12] + V[13]
V[10] = V[10] - V[1]
V[6] = V[6] - V[1]
V[7]= V[1] + V[7]
//Finish Later

The implementation in pseudocode highlights the fact that computer languages define variables on a stack, which obviates the need for tracking and specifying the current iteration of a variable. In addition, Lovelace's program only allowed for variables to be defined by performing addition, subtraction, multiplication or division on two terms that were previously defined variables. Modern syntax would be capable of performing each calculation more concisely. This restriction becomes apparent in a few places, for example on command 6 (). Here Lovelace defines a hitherto undefined variable () by itself, thereby assuming that all undefined variables are automatically equal to 0, where most modern programming languages would return an error or list the variable as null. What she intended was "", but had constrained herself to only using variables as terms. Likewise, in command 8 (), the strict notation of two-term arithmetic becomes cumbersome, as in order to define as 2, Lovelace assigns its value (0) to itself plus (2). It is due to this restrictive notation that is defined thus.

Notes[edit]

  1. ^ Fully titled "Diagram for the computation by the Engine of the Numbers of Bernoulli", but is synecdochally known by "Note G"
  2. ^ In the memoir, her initials were misprinted as "A. L. L."[14]
  3. ^ These variables technically refer to columns of discs, at Babbage's suggestion that that is how they ought to be notated.[20]

References[edit]

  1. ^ Demming, Anna. "Ada Lovelace". New Scientist. Retrieved 2022-06-01.
  2. ^ Krysa, Joasia. Ada Lovelace - There Never was a Note G.
  3. ^ a b "Ada Lovelace, the First Tech Visionary". The New Yorker. 2013-10-15. Retrieved 2022-06-02.
  4. ^ Hertz 2009, p. 59.
  5. ^ "Celebrating Ada Lovelace: the 'world's first programmer' - Short Sharp Science - New Scientist". 2009-03-27. Archived from the original on 2009-03-27. Retrieved 2022-06-01.
  6. ^ a b "Ada Lovelace | Babbage Engine | Computer History Museum". www.computerhistory.org. Retrieved 2022-06-01.
  7. ^ a b c "Ada Lovelace | Biography, Computer, & Facts". Encyclopedia Britannica. Retrieved 2022-06-01.
  8. ^ a b "Ada Lovelace: The First Computer Programmer". Mental Floss. 2015-10-13. Retrieved 2022-06-02.
  9. ^ Stein 1984, p. 44.
  10. ^ a b c "What Did Ada Lovelace's Program Actually Do?". twobithistory.org. Retrieved 2022-06-01.
  11. ^ "Ada Lovelace and the Story of Note G". NYC Media Lab. Retrieved 2022-06-01.
  12. ^ a b c d e f "How Ada Lovelace's notes on the Analytical Engine created the first computer program". BBC Science Focus Magazine. Retrieved 2022-06-01.
  13. ^ "Charles Babbage left a computer program in Turin in 1840. Here it is". Wired. ISSN 1059-1028. Retrieved 2022-06-01.
  14. ^ a b c "Mathematical Treasure: Ada Lovelace's Notes on the Analytic Engine | Mathematical Association of America". www.maa.org. Retrieved 2022-06-02.
  15. ^ a b Lovelace & Babbage and the Creation of the 1843 ‘Notes’
  16. ^ Stein 1984, p. 46.
  17. ^ a b "Ada Lovelace". Biography. April 2, 2014. Retrieved 2022-06-02.
  18. ^ Toole, Betty Alexandra (2004-09-23). "Byron, (Augusta) Ada [married name (Augusta) Ada King, countess of Lovelace] (1815–1852), mathematician and computer pioneer". Oxford Dictionary of National Biography. Vol. 1 (online ed.). Oxford University Press. doi:10.1093/ref:odnb/37253. ISBN 978-0-19-861412-8. (Subscription or UK public library membership required.)
  19. ^ "Ada Lovelace - Biography, Facts and Pictures". Retrieved 2022-06-02.
  20. ^ a b c d "Sketch of The Analytical Engine". www.fourmilab.ch. Retrieved 2022-06-02.
  21. ^ Woolley 1999.
  22. ^ "Celebrating Ada Lovelace". MIT Press. 2016-10-11. Retrieved 2022-06-02.
  23. ^ "Ada Lovelace". History. 2021-02-26. Retrieved 2022-06-02.
  24. ^ a b c "Ada Lovelace's Note G | Project Lovelace". projectlovelace.net. Retrieved 2022-06-01.

Sources[edit]