Interactive Structure and Interpretation of Classical Mechanics: Chapter 9

Fork me on GitHub

9

Appendix: Our Notation

An adequate notation should be understood by at least two people, one of whom may be the author.

Abdus Salam (1950).

We adopt a functional mathematical notation that is close to that used by Spivak in his Calculus on Manifolds [40]. The use of functional notation avoids many of the ambiguities of traditional mathematical notation; the ambiguities of traditional notation that can impede clear reasoning in classical mechanics. Functional notation carefully distinguishes the function from the value of the function when applied to particular arguments. In functional notation mathematical expressions are unambiguous and self-contained.

We adopt a generic arithmetic in which the basic arithmetic operations, such as addition and multiplication, are extended to a wide variety of mathematical types. Thus, for example, the addition operator + can be applied to numbers, tuples of numbers, matrices, functions, etc. Generic arithmetic formalizes the common informal practice used to manipulate mathematical objects.

We often want to manipulate aggregate quantities, such as the collection of all of the rectangular coordinates of a collection of particles, without explicitly manipulating the component parts. Tensor arithmetic provides a traditional way of manipulating aggregate objects: Indices label the parts; conventions, such as the summation convention, are introduced to manipulate the indices. We introduce a tuple arithmetic as an alternative way of manipulating aggregate quantities that usually lets us avoid labeling the parts with indices. Tuple arithmetic is inspired by tensor arithmetic but it is more general: not all of the components of a tuple need to be of the same size or type.

The mathematical notation is in one-to-one correspondence with expressions of the computer language Scheme [24]. Scheme is based on the λ-calculus [13] and directly supports the manipulation of functions. We augment Scheme with symbolic, numerical, and generic features to support our applications. For a simple introduction to Scheme, see the Scheme appendix. The correspondence between the mathematical notation and Scheme requires that mathematical expressions be unambiguous and self-contained. Scheme provides immediate feedback in verification of mathematical deductions and facilitates the exploration of the behavior of systems.

Functions

The value of the function f, given the argument x, is written f(x). The expression f(x) denotes the value of the function at the given argument; when we wish to denote the function we write just f. Functions may take several arguments. For example, we may have the function that gives the Euclidean distance between two points in the plane given by their rectangular coordinates:

d(x1,y1,x2,y2)=(x2x1)2+(y2y1)2.(9.1)

In Scheme we can write this as:

(define (d x1 y1 x2 y2) (sqrt (+ (square (- x2 x1)) (square (- y2 y1))))) (print-expression (d 'x1 'y1 'x2 'y2))

Functions may be composed if the range of one overlaps the domain of the other. The composition of functions is constructed by passing the output of one to the input of the other. We write the composition of two functions using the ∘ operation:

(fg):x(fg)(x)=f(g(x)).(9.2)

A procedure h that computes the cube of the sine of its argument may be defined by composing the procedures cube and sin:

(define h (compose cube sin)) (h 2)

which is the same as

(cube (sin 2))

Arithmetic is extended to the manipulation of functions: the usual mathematical operations may be applied to functions. Examples are addition and multiplication; we may add or multiply two functions if they take the same kinds of arguments and if their values can be added or multiplied:

(f+g)(x)=f(x)+g(x)(fg)(x)=f(x)g(x).(9.3)

A procedure g that multiplies the cube of its argument by the sine of its argument is

(define g (* cube sin)) (g 2) (* (cube 2) (sin 2))

Symbolic values

As in usual mathematical notation, arithmetic is extended to allow the use of symbols that represent unknown or incompletely specified mathematical objects. These symbols are manipulated as if they had values of a known type. By default, a Scheme symbol is assumed to represent a real number. So the expression ’a is a literal Scheme symbol that represents an unspecified real number:

(print-expression ((compose cube sin) 'a) )

The default printer simplifies the expression and displays it in a readable form.1 We can use the simplifier to verify a trigonometric identity:

(print-expression ((- (+ (square sin) (square cos)) 1) 'a) )

Just as it is useful to be able to manipulate symbolic numbers, it is useful to be able to manipulate symbolic functions. The procedure literal-function makes a procedure that acts as a function having no properties other than its name. By default, a literal function is defined to take one real argument and produce one real value. For example, we may want to work with a function f : RR:

(print-expression ((literal-function 'f) 'x) ) (print-expression ((compose (literal-function 'f) (literal-function 'g)) 'x) )

We can also make literal functions of multiple, possibly structured arguments that return structured values. For example, to denote a literal function named g that takes two real arguments and returns a real value (g : R × RR) we may write:

(define g (literal-function 'g (-> (X Real Real) Real)))
(print-expression (g 'x 'y) )

We may use such a literal function anywhere that an explicit function of the same type may be used.

There is a whole language for describing the type of a literal function in terms of the number of arguments, the types of the arguments, and the types of the values. Here we describe a function that maps pairs of real numbers to real numbers with the expression (-> (X Real Real) Real). Later we will introduce structured arguments and values and show extensions of literal functions to handle these.

Tuples

There are two kinds of tuples: up tuples and down tuples. We write tuples as ordered lists of their components; a tuple is delimited by parentheses if it is an up tuple and by square brackets if it is a down tuple. For example, the up tuple v of velocity components v0, v1, and v2 is

v=(v0,v1,v2).(9.4)

The down tuple p of momentum components p0, p1, and p2 is

p=[p0,p1,p2].(9.5)

A component of an up tuple is usually identified by a superscript. A component of a down tuple is usually identified by a subscript. We use zero-based indexing when referring to tuple elements. This notation follows the usual convention in tensor arithmetic.

We make tuples with the constructors up and down:

(define v (up 'v^0 'v^1 'v^2)) (define p (down 'p_0 'p_1 'p_2))
(print-expression v) (print-expression p)

Tuple arithmetic is different from the usual tensor arithmetic in that the components of a tuple may also be tuples and different components need not have the same structure. For example, a tuple structure s of phase-space states is

s=(t,(x,y),[px,py]).(9.6)

It is an up tuple of the time, the coordinates, and the momenta. The time t has no substructure. The coordinates are an up tuple of the coordinate components x and y. The momentum is a down tuple of the momentum components px and py. This is written:

(define s (up 't (up 'x 'y) (down 'p_x 'p_y)))

In order to reference components of tuple structures there are selector functions, for example:

I(s)=sI0(s)=tI1(s)=(x,y)I2(s)=[px,py]I1,0(s)=xI2,1(s)=py.(9.7)

The sequence of integer subscripts on the selector describes the access chain to the desired component.

The procedure component is the general selector procedure that implements the selector functions. For example, I0,1 is implemented by (component 0 1):

((component 0 1) (up (up 'a 'b) (up 'c 'd)))

To access a component of a tuple we may also use the selector procedure ref, which takes a tuple and an index and returns the indicated element of the tuple:

(ref (up 'a 'b 'c) 1)

We use zero-based indexing everywhere. The procedure ref can be used to access any substructure of a tree of tuples:

(ref (up (up 'a 'b) (up 'c 'd)) 0 1)

Two up tuples of the same length may be added or subtracted, elementwise, to produce an up tuple, if the components are compatible for addition. Similarly, two down tuples of the same length may be added or subtracted, elementwise, to produce a down tuple, if the components are compatible for addition.

Any tuple may be multiplied by a number by multiplying each component by the number. Numbers may, of course, be multiplied. Tuples that are compatible for addition form a vector space.

For convenience we define the square of a tuple to be the sum of the squares of the components of the tuple. Tuples can be multiplied, as described below, but the square of a tuple is not the product of the tuple with itself.

The meaning of multiplication of tuples depends on the structure of the tuples. Two tuples are compatible for contraction if they are of opposite types, they are of the same length, and corresponding elements have the following property: either they are both tuples and are compatible for contraction, or one of them is not a tuple. If two tuples are compatible for contraction then generic multiplication is interpreted as contraction: the result is the sum of the products of corresponding components of the tuples. For example, p and v introduced in equations (9.4) and (9.5) above are compatible for contraction; the product is

pv=p0v0+p1v1+p2v2.(9.8)

So the product of tuples that are compatible for contraction is an inner product. Using the tuples p and v defined above gives us

(print-expression (* p v))

Contraction of tuples is commutative: pv = vp. Caution: Multiplication of tuples that are compatible for contraction is, in general, not associative. For example, let u = (5, 2), v = (11, 13), and g = [[3, 5], [7, 9]]. Then u(gv) = 964, but (ug)v = 878. The expression ugv is ambiguous. An expression that has this ambiguity does not occur in this book.

The rule for multiplying two structures that are not compatible for contraction is simple. If A and B are not compatible for contraction, the product AB is a tuple of type B whose components are the products of A and the components of B. The same rule is applied recursively in multiplying the components. So if B = (B0, B1, B2), the product of A and B is

AB=(AB0,AB1,AB2).(9.9)

If A and C are not compatible for contraction and C = [C0, C1, C2], the product is

AC=[AC0,AC1,AC2].(9.10)

Tuple structures can be made to represent linear transformations. For example, the rotation commonly represented by the matrix

[cosθsinθsinθcosθ](9.11)

can be represented as a tuple structure:2

[(cosθsinθ)(sinθcosθ)].(9.12)

Such a tuple is compatible for contraction with an up tuple that represents a vector. So, for example:

[(cosθsinθ)(sinθcosθ)](xy)=(xcosθysinθxsinθ+ycosθ).(9.13)

Two tuples that represent linear transformations, though not compatible for contraction, may also be combined by multiplication. In this case the product represents the composition of the linear transformations. For example, the product of the tuples representing two rotations is

[(cosθsinθ)(sinθcosθ)][(cosφsinφ)(sinφcosφ)]=[(cos(θ+φ)sin(θ+φ))(sin(θ+φ)cos(θ+φ))].(9.14)

Multiplication of tuples that represent linear transformations is associative but generally not commutative, just as the composition of the transformations is associative but not generally commutative.

Derivatives

The derivative of a function f is a function, denoted by Df. Our notational convention is that D is a high-precedence operator. Thus D operates on the adjacent function before any other application occurs: Df(x) is the same as (Df)(x). Higher-order derivatives are described by exponentiating the derivative operator. Thus the nth derivative of a function f is notated as Dnf.

The procedure for producing the derivative of a function is named D. The derivative of the sin procedure is a procedure that computes cos:

(define derivative-of-sine (D sin)) (print-expression (derivative-of-sine 'x) )

The derivative of a function f is the function Df whose value for a particular argument is something that can be multiplied by an increment Δx in the argument to get a linear approximation to the increment in the value of f:

f(x+Δx)f(x)+Df(x)Δx.(9.15)

For example, let f be the function that cubes its argument (f(x) = x3); then Df is the function that yields three times the square of its argument (Df(y) = 3y2). So f(5) = 125 and Df(5) = 75. The value of f with argument x + Δx is

f(x+Δx)=(x+Δx)3=x3+3x2Δx+3xΔx2+Δx3(9.16)

and

Df(x)Δx=3x2Δx.(9.17)

So Df(x) multiplied by Δx gives us the term in f(x + Δx) that is linear in Δx, providing a good approximation to f(x + Δx) − f(x) when Δx is small.

Derivatives of compositions obey the chain rule:

D(fg)=((Df)g)·Dg.(9.18)

So at x,

(D(fg))(x)=Df(g(x))·Dg(x).(9.19)

D is an example of an operator. An operator is like a function except that multiplication of operators is interpreted as composition, whereas multiplication of functions is multiplication of the values (see equation 9.3). If D were an ordinary function, then the rule for multiplication would imply that D2f would just be the product of Df with itself, which is not what is intended. A product of a number and an operator scales the operator. So, for example

(print-expression (((* 5 D) cos) 'x) )

Arithmetic is extended to allow manipulation of operators. A typical operator is (D+I)(DI) = D2I, where I is the identity operator, which subtracts a function from its second derivative. Such an operator can be constructed and used as follows:

(print-expression (((* (+ D I) (- D I)) (literal-function 'f)) 'x) )

Derivatives of functions of multiple arguments

The derivative generalizes to functions that take multiple arguments. The derivative of a real-valued function of multiple arguments is an object whose contraction with the tuple of increments in the arguments gives a linear approximation to the increment in the function’s value.

A function of multiple arguments can be thought of as a function of an up tuple of those arguments. Thus an incremental argument tuple is an up tuple of components, one for each argument position. The derivative of such a function is a down tuple of the partial derivatives of the function with respect to each argument position.

Suppose we have a real-valued function g of two real-valued arguments, and we want to approximate the increment in the value of g from its value at x, y. If the arguments are incremented by the tuple (Δx, Δy) we compute:

Dg(x,y)·(Δx,Δy)=[0g(x,y),1g(x,y)]·(Δx,Δy)=0g(x,y)Δx+1g(x,y)Δy.(9.20)

Using the two-argument literal function g defined on page 512, we have:

(print-expression ((D g) 'x 'y) )

In general, partial derivatives are just the components of the derivative of a function that takes multiple arguments (or structured arguments or both; see below). So a partial derivative of a function is a composition of a component selector and the derivative of that function.3 Indeed:

0g=I0Dg(9.21)

1g=I1Dg.(9.22)

Concretely, if

g(x,y)=x3y5(9.23)

then

Dg(x,y)=[3x2y5,5x3y4](9.24)

and the first-order approximation of the increment for changing the arguments by Δx and Δy is

g(x+Δx,y+Δy)g(x,y)[3x2y5,5x3y4]·(Δx,Δy)=3x2y5Δx+5x3y4Δy.(9.25)

Partial derivatives of compositions also obey a chain rule:

i(fg)=((Df)g)·ig.(9.26)

So if x is a tuple of arguments, then

(i(fg))(x)=Df(g(x))·ig(x).(9.27)

Mathematical notation usually does not distinguish functions of multiple arguments and functions of the tuple of arguments. Let h((x, y)) = g(x, y). The function h, which takes a tuple of arguments x and y, is not distinguished from the function g that takes arguments x and y. We use both ways of defining functions of multiple arguments. The derivatives of both kinds of functions are compatible for contraction with a tuple of increments to the arguments. Scheme comes in handy here:

(define (h s) (g (ref s 0) (ref s 1))) (print-expression (h (up 'x 'y)) ) (print-expression ((D g) 'x 'y) ) (print-expression ((D h) (up 'x 'y)) )

A phase-space state function is a function of time, coordinates, and momenta. Let H be such a function. The value of H is H(t, (x, y), [px, py]) for time t, coordinates (x, y), and momenta [px, py]. Let s be the phase-space state tuple as in (9.6):

s=(t,(x,y),[px,py]).(9.28)

The value of H for argument tuple s is H(s). We use both ways of writing the value of H.

We often show a function of multiple arguments that include tuples by indicating the boundaries of the argument tuples with semicolons and separating their components with commas. If H is a function of phase-space states with arguments t, (x, y), and [px, py], we may write H(t; x, y; px, py). This notation loses the up/down distinction, but our semicolon-and-comma notation is convenient and reasonably unambiguous.

The derivative of H is a function that produces an object that can be contracted with an increment in the argument structure to produce an increment in the function’s value. The derivative is a down tuple of three partial derivatives. The first partial derivative is the partial derivative with respect to the numerical argument. The second partial derivative is a down tuple of partial derivatives with respect to each component of the up-tuple argument. The third partial derivative is an up tuple of partial derivatives with respect to each component of the down-tuple argument:

DH(s)=[0H(s),1H(s),2H(s)]=[0H(s),[1,0H(s),1,1H(s)],(2,0H(s),2,1H(s))],(9.29)

where ∂1,0 indicates the partial derivative with respect to the first component (index 0) of the second argument (index 1) of the function, and so on. Indeed, ∂zF = IzDF for any function F and access chain z. So, if we let Δs be an incremental phase-space state tuple,

Δs=(Δt,(Δx,Δy),[Δpx,Δpy]),(9.30)

then

DH(s)Δs=0H(s)Δt+1,0H(s)Δx+1,1H(s)Δy+2,0H(s)Δpx+2,1H(s)Δpy.(9.31)

Caution: Partial derivative operators with respect to different structured arguments generally do not commute.

In Scheme we must make explicit choices. We usually assume that phase-space state functions are functions of the tuple. For example,

(define H (literal-function 'H (-> (UP Real (UP Real Real) (DOWN Real Real)) Real))) (print-expression (H s) ) (print-expression ((D H) s) )

Structured results

Some functions produce structured outputs. A function whose output is a tuple is equivalent to a tuple of component functions each of which produces one component of the output tuple.

For example, a function that takes one numerical argument and produces a structure of outputs may be used to describe a curve through space. The following function describes a helical path around the z-axis in three-dimensional space:

h(t)=(cost,sint,t)=(cos,sin,I)(t).(9.32)

The derivative is just the up tuple of the derivatives of each component of the function:

Dh(t)=(sint,cost,1).(9.33)

We can write

(define (helix t) (up (cos t) (sin t) t))

or just

(define helix (up cos sin identity))

Its derivative is just the up tuple of the derivatives of each component of the function:

(print-expression ((D helix) 't) )

In general, a function that produces structured outputs is just treated as a structure of functions, one for each of the components. The derivative of a function of structured inputs that produces structured outputs is an object that when contracted with an incremental input structure produces a linear approximation to the incremental output. Thus, if we define function g by

g(x,y)=((x+y)2,(yx)3,ex+y),(9.34)

then the derivative of g is

Dg(x,y)=[(2(x+y)3(yx)2ex+y),(2(x+y)3(yx)2ex+y)].(9.35)

In Scheme:

(define (g x y) (up (square (+ x y)) (cube (- y x)) (exp (+ x y)))) (print-expression ((D g) 'x 'y) )

Caution must be exercised when taking the derivative of the product of functions that each produce structured results. The problem is that the usual product rule does not hold. Let f and g be functions of x whose results are compatible for contraction to a number. The increment of f for an increment Δx of x is Df(xx, and similarly for g. The increment of the product fg is D(fg)(xx, but expanded in terms of the derivative of f and g the increment is (Df(xx)g(x) + f(x)(Dg(xx). It is not ((Df)(x)g(x) + f(x)(Dg(x)))Δx. The reason is that the shape of the derivative of f is such that Df(x) should be multiplied by Δx rather than g(x).

Exercise 9.1: Chain rule

Let F (x, y) = x2y3, G(x, y) = (F (x, y), y), and H(x, y) = F (F (x, y), y), so that H = FG.

a. Compute ∂0F (x, y) and ∂1F (x, y).

b. Compute ∂0F (F (x, y), y) and ∂1F (F (x, y), y).

c. Compute ∂0G(x, y) and ∂1G(x, y).

d. Compute DF (a, b), DG(3, 5) and DH(3a2, 5b3).

Exercise 9.2: Computing derivatives

We can represent functions of multiple arguments as procedures in several ways, depending upon how we wish to use them. The simplest idea is to identify the procedure arguments with the function’s arguments.

For example, we could write implementations of the functions that occur in exercise 9.1 as follows:

(define (f x y) (* (square x) (cube y))) (define (g x y) (up (f x y) y)) (define (h x y) (f (f x y) y))

With this choice it is awkward to compose a function that takes multiple arguments, such as f, with a function that produces a tuple of those arguments, such as g. Alternatively, we can represent the function arguments as slots of a tuple data structure, and then composition with a function that produces such a data structure is easy. However, this choice requires the procedures to build and take apart structures.

For example, we may define procedures that implement the functions above as follows:

(define (f v) (let ((x (ref v 0)) (y (ref v 1))) (* (square x) (cube y)))) (define (g v) (let ((x (ref v 0)) (y (ref v 1))) (up (f v) y))) (define h (compose f g))

Repeat exercise 9.1 using the computer. Explore both implementations of multiple-argument functions.

1The procedure print-expression can be used in a program to print a simplified version of an expression. The default printer in the user interface incorporates the simplifier.

2To emphasize the relationship of simple tuple structures to matrix notation we often format up tuples as vertical arrangements of components and down tuples as horizontal arrangements of components. However, we could just as well have written this tuple as [(cos θ, sin θ), (− sin θ, cos θ)].

3Partial derivative operators such as (partial 2) are operators, so (expt (partial 1) 2) is a second partial derivative.