| Hosted by CoCalc | Download
Kernel: Python 3 (Anaconda 5)

Leibniz notation

This exercise will clarify the meaning of Leibniz notation by exploring the original insights of Leibniz using modern computing tools.

alt

As a beginning, let's summarize Leibniz's understanding of his operators dd and \int. This information is taken from A History of Mathematics: An Introduction by Katz, 3rd ed, from Section 16.2, titled "Gottfried Wilhelm Leibniz".

The basic idea out of which the calculus of Leibniz developed was the observation that if A,B,C,D,EA,B,C,D,E was an increasing sequence of numbers and L,M,N,PL,M,N,P was the sequence of differences, then EA=L+M+N+PE-A = L+M+N+P. This is a crude form of the fundamental theorem of calculus.

To clarify, let's do an example. Suppose we have an increasing sequence x = [1,3,5,7,9]. Then the corresponding sequence of differences is dx = [2,2,2,2]. This is because 31=23-1 = 2, 53=25-3 = 2, 75=27-5=2 and 97=29-7=2. The sequence of differences is formed by taking the difference between each two subsequent entries in the list x. Note that there is one less difference than there are numbers in the original list.

Exercise: Given x=[1,4,7,10,19], compute the associated list of differences dx.

Solution: dx = [3,3,3,9].

The difference operation (which Leibniz denoted eventually as dd\,) occurs as a primitive in many scientific programming libraries. In this assignment the library we will be concerned with is called numpy which is short for Numerical Python.

This is how you compute differences using numpy:

import numpy as np x = [1,3,5,7,9] dx = np.diff(x) print(dx)
x = [1,4,7,10,19] dx = np.diff(x) print(dx)

As we proceed through the exercises please change the values in the cells and run them on your own. Be aware that you can immediately receive help on any command by executing it in a cell, with a '?' character at the end.

For example, the following command will show you the documentation for np.diff:

np.diff? #execute me!

In Leibniz's conception of the calculus the distinction between a variable and a sequence of numbers is somewhat blurry. He eventually considers dx to be a small increment when he presents his ideas on the difference quotient. But his original ideas on differences are motivated by the Harmonic Triangle, from which it is clear that sequences of differences and partial sums were much on his mind. It is often fruitful to think of both dx and ∫ x as sequences rather than numbers. Without this understanding, some of Leibniz's formulations (e.g. d ∫ x = x) are difficult to comprehend. Leibniz's ideas evolved over time and our modern notation is slightly different even from his refined ideas. Here is an accessible summary and links to further resources.

For us every variable will denote a sequence.

For example the letter x will represent some sequence of numbers, such as x=[1,2,3,4]. Similarly dx = [1,1,1] will also be a sequence. If we write y=x2y = x^2 then we mean y to be the sequence of squares of elements of x. Here is an illustration:

x = np.array([1,2,3,4]) y = x**2 y

Vectorization

In the above cell we wrote y=x**2, which is what we might write to express the dependence of a single number y on a single number x. But in reality this line of code stands for a computation on lists. What it says is that each element of the list y comes from squaring the corresponding element of the list x.

We usually call this style of programming vectorized code or sometimes array programming.

We now give a sequence of examples to show how vectorization works in numpy.

#Vectorization example x = np.array([0,1,2,3]) y = np.array([3,4,5,6]) print("x = {}".format(x)) print("y = {}".format(y)) print("x + y = {}".format(x+y)) print("x*y = {}".format(x*y)) print("x/y = {}".format(x/y)) c = 7 print("if c = {} then c*y = {}".format(c,c*y))

Vectorized programming not only makes for cleaner expressions, it is also efficient. This is because backend libraries are highly optimized to use hardware parallelism and other numerical tricks to make vectorized operations execute quickly.

Vectorized notation is also highly compatible with Leibniz notation. In a way you can think of Leibniz's original notation as being itself a kind of vectorized code.


Higher order differences

In the notes above we took the "differences" of a list y which depended on a list x in a functional way.

Can we go one step further and compute the "differences of the differences"?

Yes!

We can also talk about the differences in y just as we did with respect to x. In the above example, we had

y = [1,4,9,16].

It is easy to see that

dy = [3,5,7].

We use the worksheet to automatically compute dy using numpy.

y = [1,4,9,16] dy = np.diff(y) dy

Now we "go to town" and compute differences of differences of differences in the following cell.

#Iterated differences... x = np.array([1,2,3,4,5,6,7,8,9,10]) y = x**3 - 2*x**2 + 1 print("y = {}".format(y)) dy = np.diff(y) print("dy = {}".format(dy)) ddy = np.diff(dy) print("ddy = {}".format(ddy)) dddy = np.diff(ddy) print("dddy = {}".format(dddy))

We will later see that these "differences" are very similar to derivatives. The fact that dddy (or d3yd^3y) is constantly 6 is essentially saying that the 3rd derivative of the cubic polynomial y=x32x2+1y=x^3-2x^2+1 is a line of slope 6.


Abscissae and Ordinates

Leibniz referred to the sequence of inputs x as "abscissae" and the sequence y which functionally depends on x as the "ordinates". Nowdays these terms are rarely used. We might instead say that x is the independent variable, and y is the dependent variable. But for fun I will continue to say abscissae and ordinates here, especially since it means less writing.

arange and linspace

Sometimes we want to have a lot of numbers in our ordinate. There are two functions built into numpy which make this easy to create. They are arange() and linspace().

The arange() command takes three inputs: a starting point aa, and ending point bb, and the step size Δx\Delta x. What is returned is a list of baΔx\frac{b-a}{\Delta x} numbers, which begin at aa and increase in increments of Δx\Delta x. Here is an example:

x = np.arange(1,10,0.5) x

You can see that the abscissa x consists of 1010.5=18\frac{10-1}{0.5} = 18 numbers. The list begins at a=1a=1 and proceeds by steps of size Δx=0.5\Delta x = 0.5.

The linspace operator is similar to arange, but instead of taking a step size Δx\Delta x as an argument, it instead takes the desired number nn of points.

Let's do an example:

x = np.linspace(1,10,18, endpoint=False) x

The output of the above example is the same as the one before: 18 evenly spaced numbers beginning at 1 and increasing by increments of Δx=0.5\Delta x = 0.5. The endpoint=False argument tells the function that I do not want the endpoint 10 to be included in the abscissa list. (Try deleting that part and rerunning the command.)

Whether we use linspace or arange is mostly a matter of preference. In this document I will tend to use arange.

Plotting

You should be familiar with plotting pairs of abscissae and ordinates to make a visual description of an equation (aka a graph). Below you can see how to use the matplotlib library to turn the lists x and y into a familiar graph.

%matplotlib inline import matplotlib.pyplot as plt x = np.arange(0,10,0.1) y = x**3 plt.plot(x,y) plt.title(r"The graph $y=x^3$") plt.show()

Back to Leibniz... The first insight.

Now that we have a little familiarity with numpy and vectorization, let's revisit Leibniz's central insight, which we mentioned in the first cell.

Here it is as expressed in Katz:

Leibniz considered a curve defined over an interval divided into subintervals and erected ordinates yiy_i over each point xix_i in the division. If one forms the sequence {dyi}\{dy_i\} of differences of these ordinates, its sum idyi\sum_i dy_i, is equal to the difference yny0y_n-y_0 of the final and initial ordinates.

That's a bit of a mouthfull. The first sentence just says that we have some list x of abscissae and some set y of ordinates and there is a functional relationship, such as y=x**2. The second sentence says that if we sum the elements of the list dy then we just get the difference between the first and last elements of the list y.

Let's see if that's actually true...

x = np.arange(0,10,0.1) y = x**2 dy = np.diff(y) sum(dy) == y[-1]-y[0], sum(dy)

The above cell describes a case in which we partition the interval [0,10][0,10] into 100=1001/10100 = \frac{10-0}{1/10} subintervals, and let the list x represent the left endpoint of each respective subinterval. We then "erect the ordinates y" where y=x2y=x^2 (understood as a vectorized expression). We then compute the differences for the list y as dy and sum those up.

Using the notation y[-1] to describe the last element of y and y[0] to describe the first, we see from the output (True) that Leibniz's rule holds in this case. We also see that the sum of the differences happens to be 98.01.

If you experiment (which you should) by changing the increment Δx=0.1\Delta x = 0.1 to other values, you will see that the equation continues to hold. In particular it holds as Δx0+\Delta x \rightarrow 0^+, or in other words as the size of the partition goes to infinity.

To see that Δx\Delta x doesn't matter to the truth of the equation, you have to observe that the sum "telescopes", meaning most of the summands cancel out.

We'll walk through that argument now.

First notice that we can express the list x as

x = [0,Δx,2Δx,3Δx,,(n1)Δx][0,\Delta x, 2\Delta x, 3\Delta x,\ldots, (n-1)\Delta x].

Hopefully this way of thinking is familiar from your calculus class. Because y=x2y=x^2, we must have

y = [0,Δx2,(2Δx)2,(3Δx)2,,((n1)Δx)2][0,\Delta x^2, (2\Delta x)^2, (3\Delta x)^2,\ldots, ((n-1)\Delta x)^2].

Finally it must be true that

sum(dy)=Δx20+(2Δx)2Δx2+(3Δx)2(2Δx)2++((n1)Δx)2((n2)Δx)2 = \Delta x^2 - 0 + (2\Delta x)^2 - \Delta x^2 + (3\Delta x)^2 - (2\Delta x)^2 + \cdots + ((n-1)\Delta x)^2 - ((n-2)\Delta x)^2.

Now we will argue that this sum "telescopes", meaning most of the things that are written cancel out.

Note that in the sum each term appears exactly once positively and once negatively except for a=0a=0 and ((n1)Δx)2((n-1)\Delta x)^2, which each appear only once. Therefore everything except these terms cancels out (and a=0a=0 so it can go as well).

sum(dy)=((n1)Δx)2.=((n-1)\Delta x)^2.

Because n=baΔxn = \frac{b-a}{\Delta x}, we have that (n1)Δx(n-1)\Delta x is simply bΔxb-\Delta x.

In the above example, bΔx=100.1=9.9b-\Delta x= 10-0.1 = 9.9 and

sum(dy)=9.92=98.01 = 9.9^2 = 98.01, as indicated.

In general, sum(dy)=(bΔx)2 = (b-\Delta x)^2. And as Δx0+\Delta x \rightarrow 0^+ this becomes b2b^2.

If aa had not happened to be zero then we would have had

sum(dy)=(bΔx)2a2. = (b-\Delta x)^2-a^2.

Because f(x)=x2f(x)=x^2 is continuous, the limit as Δx0+\Delta x \rightarrow 0^+ is b2a2b^2-a^2.

By making Δx0+\Delta x \rightarrow 0^+, we have, in a way, turned dy from a finite list of differences into an infinite list of very tiny differences.

What we just showed, a little bit rigorously, is that Leibniz's sum rule can be true even if the list of differences dy is infinite. The basic idea is very similar to the Fundamental Theorem of Calculus.


The Second Insight

The second of Leibniz's insights about calculus can be described like this (Katz again):

Similarly, if one forms the sequence {dyi}\{d \sum y_i\}, where yi=y0+y1++yi\sum y_i = y_0+y_1 +\cdots+y_i, the difference sequence {dyi}\{d\sum y_i\} is equal to the original sequence of the ordinates.

As usual, thinking of y as a list of numbers, we will use y\int y to denote the new sequence of partial sums of the entries of y. To illustrate, we use the corresponding operator in numpy, which is cumsum (cumulative sum).

x = np.array([1,2,3,4,5]) y = x**3 print("Here is x = {}".format(x)) print("Here is y = {}".format(y)) print("Here is ∫ y = {}".format(np.cumsum(y)))

You can see that ∫ y is a sequence of the same length as y. Each element yi\sum y_i (Katz notation) in ∫ y is the sum of the elements in y of index at most ii.

Leibniz's second insight is the observation that ∫ and d are inverse operators.

That is, d ∫ y = ∫ dy = y.

Let's try it out in numpy, using np.diff for d and np.cumsum for .

x = np.array([1,2,3,4,5]) y = x**3 print("Here is x = {}".format(x)) print("Here is y = {}".format(y)) print("Here is ∫ y = {}".format(np.cumsum(y))) print("Here is d ∫ y = {}".format(np.diff(np.cumsum(y)))) print("Here is ∫ dy = {}".format(np.cumsum(np.diff(y))))

There has been an annoying technical snafu here: Each element in the sequence ∫ dy is off by one.

That is because Leibniz assumes that all ordinate sequences begin with zero.

Let's fix that and try again.

x = np.array([0,1,2,3,4,5]) y = x**3 print("Here is x = {}".format(x)) print("Here is y = {}".format(y)) print("Here is ∫ y = {}".format(np.cumsum(y))) print("Here is d ∫ y = {}".format(np.diff(np.cumsum(y)))) print("Here is ∫ dy = {}".format(np.cumsum(np.diff(y))))

This time we were successful.

Note that something is still a little strange. The sequence for y begins with a 0, but this has been left out of the last two expressions. It was inevitable that something be omitted for the simple reason that the difference operator results in a list which is one shorter than the initial list.

With this one caveat, it is not hard to see why Leibniz's 2nd insight is true. Analyzing d ∫ y we see that that (in Katz's notation) the iith element of the sequence d ∫ y is the iith element of the sequence y:

yiyi1=yi.\sum y_i - \sum y_{i-1} = y_i.

Note, however, that y0y_0 cannot be computed in this way, and so the initial element of the sequence y is forgotten.

Going the other way, we consider the iith element of the sequence ∫ dy = {dyi}\{\sum dy_i\} in Katz's notation. Using Leibniz's first insight, we see that dyi=yiy0\sum dy_i = y_i - y_0. If y0=0y_0=0, as Leibniz always assumes, then we again arrive at yiy_i.

This proves the statement (in Leibniz's terms) d ∫ y = ∫ dy = y. Technically we should make a note to omit the first element of y on the right hand side of these equations.


To make things work out numerically, we will often have to remove the first element of our ordinate sequences in numpy. The syntax for doing this is the following.

y = np.array([1,2,3,4,5,6,7]) print("y[1:] = {}".format(y[1:]))

This kind of array manipulation is called array slicing. More sophisticated slices are possible, even when y is multidimensional, but we will not use them here.

dx = np.diff(x) fig,axes = plt.subplots(1,2) axes[0].plot(x[1:],dy/dx) axes[0].plot(x[1:],dy) axes[1].plot(x,3*x**2) plt.show()
# We see that ∫ dy/dx dx = y f = np.cumsum(dy/dx*dx) fig,axes = plt.subplots(1,2) axes[0].plot(x[1:],f) axes[1].plot(x,y) plt.show()
#Inverse relationship of ∫ and d dx = 0.5 x = np.arange(0,5,dx) y = x**2 # We see that ∫ dy = d∫ y = y print(np.cumsum(np.diff(y))==np.diff(np.cumsum(y))) print(np.cumsum(np.diff(y)) == y[1:])
#Calculus of differentials
#Sum rule dx = 0.1 x = np.arange(0,10,dx) y = np.sin(x) z = x**2 fig,axes = plt.subplots(1,2) axes[0].plot(x,d(y+z)) axes[1].plot(x,d(y)+d(z)) plt.show()
#Leibniz Rule def d(Y): return np.hstack((np.array([0.000001]),np.diff(Y))) fig,axes = plt.subplots(1,2,figsize=(13,5)) axes[0].plot(x,d(y*z),label="d(yz)") axes[0].plot(x,d(y)*z+y*d(z),label="dy*z+y*dz") axes[0].legend() axes[1].plot(x,(d(y*z)/dx),label="d(yz)/dx") axes[1].plot(x,(d(y)/dx)*z+y*(d(z)/dx),label=r"$\frac{dy}{dx}z+y\frac{dz}{dx}$") axes[1].legend() plt.show()