Renormalization and Computation 4
This is the fourth in a series of posts on Yuri Manin’s pair of papers. In the previous posts, I laid out the background; this time I’ll actually get around to his result.
A homomorphism from the Hopf algebra into a target algebra is called a character. The functor that assigns an action to a path, whether classical or quantum, is a character. In the classical case, it’s into the rig and we take an infimum over paths; in the quantum it’s into the rig
and we take an integral over paths. Moving from the quantum to the classical case is called Maslov dequantization.
Manin mentions that the runtime of a parallel program is a character akin to the classical action, with the runtime of the composition of two programs being the sum of the respective runtimes, while the runtime of two parallel programs is the maximum of the two. A similar result holds for nearly any cost function. He also points out that computably enumerable reals form a rig
He examines Rota-Baxter operators as a way to generalize what “polar part” means and extend the theorems on Hopf algebra renormalization to such rigs.
In the second paper, he looks at my work with Calude as an example of a character. He uses our same argument to show that lots of measures of program behavior have the property that if the measure hasn’t stopped growing after reaching a certain large amount with respect to the program size, then the density of finite values the measure could take decreases like Surprisingly, though he referred to these results as cutoffs, he didn’t actually use them anywhere for doing regularization.
Reading between the lines, he might be suggesting something like approximating the Kolmogorov complexity that he uses later by using a time cutoff, motivated by results from our paper: there’s a constant depending only on the programming language such that if you run the
th program
steps and it hasn’t stopped, then the density of times near
at which it could stop is roughly
Levin suggested using a computable complexity that’s the sum of the program length and the log of the number of time steps; I suppose you could “regularize” the Kolmogorov complexity by adding to the length of the program, renormalize, and then let
go to zero, but that’s not something Manin does.
Instead, he proposed two other constructions suitable for renormalization; here’s the simplest. Given a partial computable function define the computably enumerable
by
if
is defined, and 0 otherwise. Now define
When is undefined,
which has a pole at
When
is defined,
converges everywhere except
Birkhoff decomposition would separate these two cases, though I’m not sure what value
would take or what it would mean.
The other construction involves turning into a permutation
and inventing a function that has poles when the permutation has fixpoints.
So Manin’s idea of renormalizing the halting problem is to do some uncomputable stuff to get an easy-to-renormalize function and then throw the Brikhoff decomposition at it; since we know the halting problem is undecidable, perhaps the fact that he didn’t come up with a new technique for extracting information about the problem is unsurprising, but after putting in so much effort to understand it, I was left rather disappointed: if you’re going to allow yourself to do uncomputable things, why not just solve the halting problem directly?
I must suppose that his intent was not to tackle this hard problem, but simply to play with the analogy he’d noticed; it’s what I’ve done in other papers. And being forced to learn renormalization was exhilarating! I have a bunch of ideas to follow up; I’ll write them up as I get a chance.
Renormalization and Computation 1
Yuri Manin recently put two papers on the arxiv applying the methods of renormalization to computation and the Halting problem. Grigori Mints invited me to speak on Manin’s results at the weekly Stanford logic seminar because in his second paper, he expands on some of my work.
In these next few posts, I’m going to cover the idea of Feynman diagrams (mostly taken from the lecture notes for the spring 2004 session of John Baez’s Quantum Gravity seminar); next I’ll talk about renormalization (mostly taken from Andrew Blechman’s overview and B. Delamotte’s “hint”); third, I’ll look at the Hopf algebra approach to renormalization (mostly taken from this post by Urs Schreiber on the n-Category Café); and finally I’ll explain how Manin applies this to computation by exploiting the fact that Feynman diagrams and lambda calculus are both examples of symmetric monoidal closed categories (which John Baez and I tried to make easy to understand in our Rosetta stone paper), together with some results on the density of halting times from my paper “Most programs stop quickly or never halt” with Cris Calude. I doubt all of this will make it into the talk, but writing it up will make it clearer for me.
Renormalization is a technique for dealing with the divergent integrals that arise in quantum field theory. The quantum harmonic oscillator is quantum field theory in 0+1 dimensions—it describes what quantum field theory would be like if space consisted of a single point. It doesn’t need renormalization, but I’m going to talk about it first because it introduces the notion of a Feynman diagram.
“Harmonic oscillator” is a fancy name for a rock on a spring. The force exerted by a spring is proportional to how far you stretch it:
The potential energy stored in a stretched spring is the integral of that:
and to make things work out nicely, we’re going to choose The total energy
is the sum of the potential and the kinetic energy:
By choosing units so that we get
where is momentum.
Next we quantize, getting a quantum harmonic oscillator, or QHO. We set taking units where
Now
If we define a new observable then
We can think of as
and write the energy eigenvectors as polynomials in
The creation operator adds a photon to the mix; there’s only one way to do that, so
The annihilation operator
destroys one of the photons; in the state
, there are
photons to choose from, so
Schrödinger’s equation says so
This way of representing the state of a QHO is known as the “Fock basis”.
Now suppose that we don’t have the ideal system, that the quadratic potential is only a good local approximation to the real potential
. Then we can write the total as
where
is a function of position and momentum, or equivalently of
and
and
is small.
Now we solve Schrödinger’s equation perturbatively. We know that
and we assume that
so that it makes sense to solve it perturbatively. Define
and
After a little work, we find that
and integrating, we get
We feed this equation back into itself recursively to get
So here we have a sum of a bunch of terms; the th term involves
interactions with the potential interspersed with evolving freely between the interactions, and we integrate over all possible times at which those interactions could occur.
Here’s an example Feynman diagram for this simple system, representing the fourth term in the sum above:
![]()
The lines represent evolving under the free Hamiltonian , while the dots are interactions with the potential
.
As an example, let’s consider and choose
so that
When
acts on a state
we get
So at each interaction, the system either gains a photon or changes phase and loses a photon.
A particle moving in a quadratic potential in -dimensional space gives the tensor product of
QHOs, which is QFT in a space where there are
possible harmonics. Quantum electrodynamics (QED) amounts to considering infinitely many QHOs, one for each possible energy-momentum, which forms a continuum. The diagrams for QED start to look more familiar:

The vertices are interactions with the electromagnetic field. The straight lines are electrons and the wiggly ones are photons; between interactions, they propagate under the free Hamiltonian.
Functors and monads
In many languages you have type constructors; given a type A and a type constructor Lift, you get a new type Lift<A>. A functor is a type constructor together with a function
lift: (A -> B) -> (Lift<A> -> Lift<B>)
that preserves composition and identities. If h is the composition of two other functions g and f
h (a) = g (f (a)),
then lift (h) is the composition of lift (g) and lift (f)
lift (h) (la) = lift (g) (lift (f) (la)),
where the variable la has the type Lift<A>. Similarly, if h is the identity function on variables of type A
h (a: A) = a,
then lift (h) will be the identity on variables of type Lift<A>
lift (h) (la) = la.
Examples:
- Multiplication
Lift<>adjoins an extra integer to any type:Lift<A> = Pair<A, int>
The function
lift()pairs upfwith the identity function on integers:lift (f) = (f, id)
- Concatenation
Lift<>adjoins an extra string to any type:Lift<A> = Pair<A, string>
The function
lift()pairs upfwith the identity function on strings:lift (f) = (f, id)
- Composition
LetEnvbe a type representing the possible states of the environment andEffect = Env -> Env
Also, we’ll be explicit in the type of the identity function
id<A>: A -> A id<A> (a) = a,
so one possible
Effectisid<Env>, the “trivial side-effect”.Then
Lift<>adjoins an extra side-effect to any type:Lift<A> = Pair<A, Effect>
The function
lift()pairs upfwith the identity on side-effects:lift (f) = (f, id<Effect>)
- Lists
The previous three examples used the Pair type constructor to adjoin an extra value. This functor is slightly different. Here,Lift<>takes any typeAto a list ofA’s:Lift<A> = List<A>
The function
lift()is the function map():lift = map
- Double negation, or the continuation passing transform
In a nice type system, there’s theUnittype, with a single value, and there’s also theEmptytype, with no values (it’s “uninhabited”). The only function of typeX -> Emptyis the identity functionid<Empty>. This means that we can think of types as propositions, where a proposition is true if it’s possible to construct a value of that type. We interpret the arrow as implication, and negation can be defined as “arrowing intoEmpty“: letF = EmptyandT = F -> F. ThenT -> F = F(sinceT -> Fis uninhabited) andTis inhabited since we can construct the identity function of type F -> F. Functions correspond to constructive proofs. “Negation” of a proof is changing it into its contrapositive form:If A then B => If NOT B then NOT A.
Double negation is doing the contrapositive twice:
IF A then B => If NOT NOT A then NOT NOT B.
Here,
Lift<>is double negation:Lift<A> = (A -> F) -> F.
The function lift takes a proof to its double contrapositive:
lift: (A -> B) -> ((A -> F) -> F) -> ((B -> F) -> F) lift (f) (k1) (k2) = k1 (lambda (a) { k2 (f (a)) })
Monads
A monad is a functor together with two functions
m: Lift<Lift<A>> -> Lift<A> e: A -> Lift<A>
satisfying some conditions I’ll get to in a minute.
Examples:
- Multiplication
If you adjoin two integers,m()multiplies them to get a single integer:m: Pair<Pair<A, int>, int> -> Pair<A, int> m (a, i, j) = (a, i * j).
The function
e()adjoins the multiplicative identity, or “unit”:e: A -> Pair<A, int> e (a) = (a, 1)
- Concatenation
If you adjoin two strings,m()concatenates them to get a single string:m: Pair<Pair<A, string>, string> -> Pair<A, string> m (a, s, t) = (a, s + t).
The function
e()adjoins the identity for concatenation, the empty string:e: A -> Pair<A, string> e (a) = (a, "")
- Composition
If you adjoin two side-effects,m()composes them to get a single effect:m: Pair<Pair<A, Effect>, Effect> -> Pair<A, Effect> m (a, s, t) = (a, t o s),
where
(t o s) (x) = t (s (x)).
The function
e()adjoins the identity for composition, the identity function onEnv:e: A -> Pair<A, Effect> e (a) = (a, id<Env>)
- Lists
If you have two layers of lists,m()flattens them to get a single layer:m: List<List<A>> -> List<A> m = flatten
The function
e()makes any element of A into a singleton list:e: A -> List<A> e (a) = [a]
- Double negation, or the continuation passing transform
If you have a quadruple negation,m()reduces it to a double negation:m: ((((A -> F) -> F) -> F) -> F) -> ((A -> F) -> F) m (k1) (k2) = k1 (lambda (k3) { k3 (k2) })The function
e()is just reverse application:e: A -> (A -> F) -> F e (a) (k) = k (a)
The conditions that e and m have to satisfy are that m is associative and e is a left and right unit for m. In other words, assume we have
llla: Lift<Lift<Lift<A>>> la: Lift<A>
Then
m (lift (m) (llla)) = m (m (llla))
and
m (e (la)) = m (lift (e) (la)) = la
Examples:
- Multiplication:
There are two different ways we can use lifting with these two extra functionse()andm(). The first is applyinglift()to them. When we applylifttom(), it acts on three integers instead of two; but becauselift (m) = (m, id),
it ignores the third integer:
lift (m) (a, i, j, k) = (a, i * j, k).
Similarly, lifting
e()will adjoin the multiplicative unit, but will leave the last integer alone:lift (e) = (e, id) lift (e) (a, i) = (a, 1, i)
The other way to use lifting with
m()ande()is to applyto their input types. This specifiesLift<>AasPair<A', int>, so the first integer gets ignored:m (a, i, j, k) = (a, i, j * k) e (a, i) = (a, i, 1)
Now when we apply
m()to all of these, we get the associativity and unit laws. For associativity we getm (lift (m) (a, i, j, k)) = m(a, i * j, k) = (a, i * j * k) m (m (a, i, j, k)) = m(a, i, j * k) = (a, i * j * k)
and for unit, we get
m (lift (e) (a, i)) = m (a, 1, i) = (a, 1 * i) = (a, i) m (e (a, i)) = m (a, i, 1) = (a, i * 1) = (a, i)
- Concatenation
There are two different ways we can use lifting with these two extra functionse()andm(). The first is applyinglift()to them. When we apply lift tom(), it acts on three strings instead of two; but becauselift (m) = (m, id),
it ignores the third string:
lift (m) (a, s, t, u) = (a, s + t, u).
Similarly, lifting
e()will adjoin the empty string, but will leave the last string alone:lift (e) = (e, id) lift (e) (a, s) = (a, "", s)
The other way to use lifting with
m()ande()is to applyLift<>to their input types. This specifiesAasPair<A', string>, so the first string gets ignored:m (a, s, t, u) = (a, s, t + u) e (a, s) = (a, s, 1)
Now when we apply
m()to all of these, we get the associativity and unit laws. For associativity we getm (lift (m) (a, s, t, u)) = m(a, s + t, u) = (a, s + t + u) m (m (a, s, t, u)) = m(a, s, t + u) = (a, s + t + u)
and for unit, you get
m (lift (e) (a, s)) = m (a, "", s) = (a, "" + s) = (a, s) m (e (a, s)) = m (a, s, "") = (a, s + "") = (a, s)
- Composition
There are two different ways we can use lifting with these two extra functionse()andm(). The first is applyinglift()to them. When we apply lift tom(), it acts on three effects instead of two; but becauselift (m) = (m, id<Effect>),
it ignores the third effect:
lift (m) (a, s, t, u) = (a, t o s, u).
Similarly, lifting
e()will adjoin the identity function, but will leave the last string alone:lift (e) = (e, id<Effect>) lift (e) (a, s) = (a, id<Env>, s)
The other way to use lifting with
m()ande()is to applyLift<>to their input types. This specifiesAasPair<A', Effect>, so the first effect gets ignored:m (a, s, t, u) = (a, s, u o t) e (a, s) = (a, s, id<Env>)
Now when we apply
m()to all of these, we get the associativity and unit laws. For associativity we getm (lift (m) (a, s, t, u)) = m(a, t o s, u) = (a, u o t o s) m (m (a, s, t, u)) = m(a, s, u o t) = (a, u o t o s)
and for unit, you get
m (lift (e) (a, s)) = m (a, id<Env>, s) = (a, s o id<Env>) = (a, s) m (e (a, s)) = m (a, s, id<Env>) = (a, id<Env> o s) = (a, s)
- Lists
There are two different ways we can use lifting with these two extra functionse()andm(). The first is applyinglift()to them. When we apply lift tom(), it acts on three layers instead of two; but becauselift (m) = map (m),
it ignores the third (outermost) layer:
lift (m) ([[[a, b, c], [], [d, e]], [[]], [[x], [y, z]]]) = [[a, b, c, d, e], [], [x, y, z]]
Similarly, lifting
e()will make singletons, but will leave the outermost layer alone:lift (e) ([a, b, c]) = [[a], [b], [c]]
The other way to use lifting with
m()ande()is to applyLift<>to their input types. This specifiesAasList<A'>, so the *innermost* layer gets ignored:m ([[[a, b, c], [], [d, e]], [[]], [[x], [y, z]]]) = [[a, b, c], [], [d, e], [], [x], [y, z]] e ([a, b, c]) = [[a, b, c]]
Now when we apply
m()to all of these, we get the associativity and unit laws. For associativity we getm (lift (m) ([[[a, b, c], [], [d, e]], [[]], [[x], [y, z]]])) = m([[a, b, c, d, e], [], [x, y, z]]) = [a, b, c, d, e, x, y, z] m (m ([[[a, b, c], [], [d, e]], [[]], [[x], [y, z]]])) = m([[a, b, c], [], [d, e], [], [x], [y, z]]) = [a, b, c, d, e, x, y, z]and for unit, we get
m (lift (e) ([a, b, c])) = m ([[a], [b], [c]]) = [a, b, c] m (e ([a, b, c])) = m ([[a], [b], [c]]) = [a, b, c]
Monads in Haskell style, or “Kleisli arrows”
Given a monad (Lift, lift, m, e), a Kleisli arrow is a function
f: A -> Lift<B>,
so the e() function in a monad is already a Kleisli arrow. Given
g: B -> Lift<C>
we can form a new Kleisli arrow
(g >>= f): A -> Lift<C> (g >>= f) (a) = m (lift (g) (f (a))).
The operation >>= is called “bind” by the Haskell crowd. You can think of it as composition for Kleisli arrows; it’s associative, and e() is the identity for bind. e() is called “return” in that context. Sometimes code is less complicated with bind and return instead of m and e.
If we have a function f: A -> B, we can turn it into a Kleisli arrow by precomposing with e():
(e o f): A -> Lift<B> (e o f) (a) = e (f (a)) = return (f (a)).
Example:
- Double negation, or the continuation passing style transform
We’re going to (1) show that the CPS transform of a function takes a continuation and applies that to the result of the function. We’ll also (2) show that for two functionsr, s,CPS (s o r) = CPS (s) >>= CPS (r),
(1) To change a function
f: A -> Binto a Kleisli arrow (i.e. continuized function)CPS (f): A -> (B -> X) -> X, we just compose withe—or in the language of Haskell, wereturnthe result:CPS (f) (a) (k) = return (f (a)) (k) = (e o f) (a) (k) = e (f (a)) (k) = k (f (a))
(2) Given two Kleisli arrows
f: A -> (B -> F) -> F
and
g: B -> (C -> F) -> F,
we can bind them:
(g >>= f) (a) (k) = m (lift (g) (f (a))) (k) // defn of bind = lift (g) (f (a)) (lambda (k3) { k3 (k) }) // defn of m = f (a) (lambda (b) { (lambda (k3) { k3 (k) }) (g (b)) }) // defn of lift = f (a) (lambda (b) { g (b) (k) }), // applicationwhich is just what we wanted.
In particular, if
fandgare really just continuized functionsf = (e o r) g = (e o s)
then
(g >>= f) (a) (k) = f (a) (lambda (b) { g (b) (k) }) // by above = (e o r) (a) (lambda (b) { (e o s) (b) (k) }) // defn of f and g = (e o r) (a) (lambda (b) { k (s (b)) }) // defn of e = (e o r) (a) (k o s) // defn of composition = (k o s) (r (a)) // defn of e = k (s (r (a))) // defn of composition = (e o (s o r)) (a) (k) // defn of e = CPS (s o r) (a) (k) // defn of CPSso
CPS (s) >>= CPS (r) = CPS (s o r).
Caja on Yahoo!
Here at Google, I’m working on an open-source project called Caja. The name is Spanish for box or vault, and is pronounced “KA-hah”.
The general idea of Caja could be summed up as “virtual iFrames”. An iFrame is a little webpage stuck inside a bigger one, like a gadget in iGoogle or YAP. Web browsers use a security policy called the “same-domain policy”, which means that only a web page that came from Google’s servers should be allowed to cause changes to your Google-hosted data: you don’t want to allow the “pet turtle” gadget to delete all your email. So the way iGoogle protects your email is by putting the turtle gadget on a different domain, http://gmodules.com.
The same-domain policy does a good job of making it hard for gadgets to work together and a mediocre job of insulating mutually suspicious gadgets from each other; cross-site scripting (XSS) is a constant threat for any web site. Making sure you properly sanitize every use of user-supplied information is like trying to avoid getting a cold while surrounded by forty sniffling kindergarteners.
Also, even if you do manage to prevent XSS entirely, iFrames do nothing to prevent redirecting the page: it’s trivial for a gadget to tell your web browser to go to a page that looks like the Google login page, but really sends your password to the bad guys. All it has to do is include this line of code:
<script>window.top.location = “http://www.evil.com/phishing.html”;</script>
Caja addresses all these issues. On a gadget site like YAP, instead of sending your web browser a page with a bunch of iFrames, each of which causes your web browser to fetch a gadget, Yahoo’s server fetches the gadgets first and rewrites them with Caja, inserting code that looks at every operation the gadget tries to do. It also replaces the objects that code usually has access to, like window above, and replaces them with fake ones. The fake window object doesn’t have a working top.location property, so the gadget can’t redirect the page. The DOM objects sanitize strings passed to innerHTML and remove script blocks, so XSS is impossible. By letting two gadgets see the same variable, they can communicate with each other. Outgoing links are rewritten so that they pass through Yahoo’s proxy server, where the links can be checked in real time for malware.
With the lauch of My Yahoo! and Yahoo! Mail gadgets, we’ve got 275 million users. The best part is that we’re hardly mentioned anywhere: it’s so unobtrusive, that developers don’t even notice the restrictions. (But you can read about Caja on Yahoo’s site.) iGoogle’s sandbox also allows you to play with Caja today; it should go live next month, and we’re hoping to get Caja into several other Google properties as the year progresses.
Blue cell
It’s not immediately obvious how the blue calculus lets you do object references, so here’s a worked example.
I’m going to define a process, called Reference, that takes a new variable and turns it into an object reference. Because it’s easier to type, I’m going to use \ for lambda and v for nu, and when I apply a term to something other than a variable, you’re supposed to do the embedding from lambda calculus into blue calculus in your head. I’m leaving it out because the embedding behaves the same as lambda calculus and things are confusing enough as it is.
Reference = \ref.vc.( c | c = \x.(ref <= Pair c (x | cx)) )
Notice the Pair combinator (Pair = \xyz.zxy); it’s being applied to two processes that function like write and read, respectively, and is waiting for a third; if the third input is K, we get Kxy = x, and if it’s KI, we get KIxy = Iy = y.
You create an object by feeding it a variable for the reference and an initial state:
Reference ref u = vc.(cu | c = \x.(ref <= Pair c (x | cx)))
Now if you have a reference with some state in parallel with a writer process, it updates the state:
(Reference ref u | ref K w)
= ( vc.(cu | c = \x.(ref <= Pair c (x | cx))) | ref K w )
= vc.(cu | c = \x.(ref <= Pair c (x | cx)) | ref K w ) [by scope migration]
= vc.(\x.(ref <= Pair c (x | cx)) u | c = \x.(ref <= Pair c (x | cx)) | ref K w ) [by resource fetching on c]
= vc.(ref <= Pair c (u | cu) | c = \x.(ref <= Pair c (x | cx)) | ref K w ) [by small beta reduction on u]
= vc.(c = \x.(ref <= Pair c (x | cx)) | Pair c (u | cu) K w ) [by resource fetching on ref]
= vc.(c = \x.(ref <= Pair c (x | cx)) | K c (u | cu) w ) [by definition of Pair = \xyz.zxy]
= vc.(c = \x.(ref <= Pair c (x | cx)) | cw ) [by definition of K = \xy.x]
= vc.(cw | c = \x.(ref <= Pair c (x | cx))) [by symmetry of |]
= Reference ref w
Similarly, if you put it in parallel with a reader process,
(Reference ref u | ref KI w x y … z )
= vc.(c = \x.(ref <= Pair c (x | cx)) | K I c (u | cu) w x y … z) [by the same as above]
= vc.(c = \x.(ref <= Pair c (x | cx)) | I (u | cu) w x y … z) [by the definition of K]
= vc.(c = \x.(ref <= Pair c (x | cx)) | (u | cu) w x y … z) [by the definition of I]
= vc.(c = \x.(ref <= Pair c (x | cx)) | uwxy…z | cuwxy…z) [by distributivity]
= vc.(c = \x.(ref <= Pair c (x | cx)) | uwxy…z | \x.(ref <= Pair c (x | cx)) uwxy…z) [by resource fetching on c]
= vc.(c = \x.(ref <= Pair c (x | cx)) | uwxy…z | (ref <= Pair c (u | cu)) wxy…z) [by small beta reduction on u]
= vc.(c = \x.(ref <= Pair c (x | cx)) | uwxy…z | (ref <= Pair c (u | cu))) [by small beta reduction on w, x, y, ..., z]
= vc.(c = \x.(ref <= Pair c (x | cx)) | uwxy…z | \x.(ref <= Pair c (x | cx)) u) [by extensionality]
= vc.(c = \x.(ref <= Pair c (x | cx)) | uwxy…z | cu) [by extensionality]
= vc.(cu | c = \x.(ref <= Pair c (x | cx)) | uwxy…z) [by extensionality]
= (Reference ref u | uwxy…z)
Blue calculus
The lambda calculus is a Turing-complete language, but doesn’t handle concurrency very well; in particular, there’s no concept of a reference as opposed to a value. The lambda calculus has three productions:
The first production, , is a variable; the second is an application of one term to another; and the third is abstraction.
The beta-reduction rule says
if the variables in
are all free in
.
The part in brackets reads “with replacing
.” There are different evaluation strategies that one can use with the lambda calculus; one strategy that always reduces the term to its normal form if it has one is called “lazy evaluation.” With this strategy, you only reduce a term if it’s necessary to do so.
The blue calculus builds this strategy into the language. Here is an application term in the blue calculus:
Blue calculus splits application into four parts, or “processes”:
- a “small” application
in which a term
may only be applied to a variable
;
- a resource assignment
in which a variable
is associated to a one-time use of the term
;
- a new variable declaration
that introduces a new bound variable into scope; and
- a symmetric monoidal product of terms, thought of as “parallel processes”
The monoidal unit here is the “do-nothing” term
.
Blue calculus also splits beta reduction into two parts:
- a “small” beta reduction
if
is free in
;
- and a resource fetching rule that gets the value of a variable only when it’s needed
.
By splitting things up this way, the blue calculus allows patterns like nondeterministic choice. The blue calculus term
has two valid reductions,
or
.
It also allows for resource contention; here, the resource assignment acts as a mutex:
or
.
The application term is a linear term. If the term
uses
more than once, then only the first usage will be able to fetch the resource: a resource assignment is consumed by the small beta rule. However, the blue calculus also supports resource replication:
This allows the blue calculus to subsume both the lambda calculus and the pi calculus in a nice way. Blue terms are formed as follows:
Lambda terms embed like this:
Pi terms embed like this:
There are reduction rules for scope migration, associativity, distributivity, replication, and so forth; see the paper for more details.
The upshot of all this is that blue calculus variables are really references, and so one can build the whole theory of concurrent objects on top of it.
Objects (in the OOP sense) as lambda terms
Consider some javascripty pseudocode:
aPoint = {x:3, y:4};
This is an object that responds to four messages: “x”, “x =”, “y”, “y =”
>> aPoint.x
[ {x:3, y:4}, 3 ]
>> aPoint.y
[ {x:3, y:4}, 4 ]
>> aPoint.x = 15
[ {x:15, y:4}, null ]
>> aPoint.x
[ {x:15, y:4}, 15 ]
An object consists of code and state, and responds to messages; in the process of responding to a message, the object can change its state. In essence, an object is a function
obj:STATE x MESSAGE x INPUTSTATE x OUTPUT
except that objects provide encapsulation: the internal state of the object is never directly accessible; the only way to see or change the state of an object is through the object’s response to messages. So we define an object to be a lambda term of the form
Y ((self, state, message, input)
[
self(new_state(state, message, input)),
result(state, message, input)
]) (initial_state)
where ‘Y’ is the fixpoint combinator, the notation (x is an alternative notation for y)
, brackets [-, -] denote a pair, and the terms ‘new_state’ and ‘result’ evaluate to objects on all terminating inputs.
Let makePoint be the term
Y ((self, state, message, input)
[
self(
if (message == "x =") then [ input, state(1) ] else
if (message == "y =") then [ state(0), input ] else
state),
if (message == "x") then state(0) else
if (message == "y") then state(1) else
null
]).
Then aPoint = makePoint([ 3, 4 ]) =
(message, input)
[
makePoint(
if (message == "x =") then [ input, 4 ] else
if (message == "y =") then [ 3, input ] else
[ 3, 4 ]),
if (message == "x") then 3 else
if (message == "y") then 4 else
null
].
Combinators as addresses
In linear lambda calculus, you must use each bound variable exactly once in a term. A term with a single bound variable is a full binary tree of applications in which one of the leaves is the bound variable, so it makes sense to ask, “which leaf?”
Three combinators are universal for the free linear lambda calculus on a countable set of types. In the description below, means “
applied to
” Note the position of the term
in each case:
- identity
- cut
- braid
A full binary tree of applications is either a leaf or an application of a left subtree to a right subtree. says that this leaf is the variable in question;
says that the variable is in the right subtree; and
says it’s in the left subtree. So, for example, in the linear lambda term
appears in the left subtree, so applying abstraction elimination once gives
Now is on the right; eliminating again in the bracketed term gives
Now is on the left; eliminating again in the bracketed term gives
And finally, we replace with
to get a term with no bound occurrences of The “I-terminated” list of combinators we added, in this case
tells us exactly where in the tree the variable
appeared.
In the (nonlinear) lambda calculus, the variable may appear in either branch or not at all. The and
combinators are a universal basis for this calculus, and can be interpreted as
the variable may appear in either subtree, since
the variable does not appear in this subtree, since
this leaf is a copy of the variable, since
Yoneda embedding as contrapositive and call-cc as double negation
Consider the problem of how to represent negation of a proposition when we only have implication and falsehood:
Since is true and
is false, this does what we want.
The contrapositive says has the same truth value as
Using only implication, the contrapositive of
is
What if we don’t even have falsehood? Well, we can pick any proposition to represent falsehood and form
The Yoneda embedding takes a category and produces a category
:
This embedding is better known among computer scientists as the continuation passing style transformation.
In a symmetric monoidal closed category, like lambda calculus, we can move everything “inside:” every morphism has an internal version
The internal Yoneda embedding of
is
Here is the “unit” type; notice how the target type is isomorphic under the Curry-Howard isomorphism to the contrapositive. This is a term that maps a continuation
and a value
to
To get double negation, first do the Yoneda embedding on the identity to get
then uncurry, braid, and recurry to get
or, internally,
This takes a value to a function value
Call-with-current-continuation expects a term that has been converted to CPS style as above, and then hands it the remainder of the computation in
The category GraphUp
The category GraphUp of graphs and Granovetter update rules has
- directed finite graphs as objects
- morphisms generated by Granovetter rules, i.e. the following five operations:
- add a new node. (creation,
refcount=0) - given a node
add a new node
and an edge
(creation,
refcount=1) - given edges
and
add an edge
(introduction,
++refcount) - remove an edge. (deletion,
--refcount) - remove a node and all its outgoing edges if it has no incoming edges. (garbage collection)
- add a new node. (creation,
It’s a monoidal category where the tensor product is disjoint union. Also, since two disjoint graphs can never become connected, they remain disjoint.
Programs in a capability-secure language get interpreted in GraphUp. A program’s state graph consists of nodes, representing the states of the system, and directed edges, representing the system’s transitions between states upon receiving input. A functor from a program state graph to GraphUp assigns an object reference graph as state to each node and an update generated by Granovetter rules to each edge.
Polyadic asynchronous asymmetric pi calculus
where is either an input channel
or an output channel
and
is taken from a countably infinite set.
Structural congruence:
[with
replacing
] if
does not appear in
(alpha conversion)
(parallel processes)
(association)
(restriction)
(replication)
if
is not free in
Reduction rules:
[with
replacing
]
- If
then
- If
then
- If
and
then
Haskell monads for the category theorist
A monad in Haskell is about composing almost-compatible morphisms. Typically you’ve got some morphism and then you think of a reason that you’d rather have
where
is a functor. In Haskell, though, you don’t define functors right out: you define type constructors, which are like the map of objects in a functor. You have to define the map of morphisms separately.
To define the map of morphisms, we have to define (aka
) and
. We define
to be the category-theorist’s unit
composed with the input. Applying
to
gives
To compose “half-functored” morphisms like we define
like this: given an input
and a morphism like
bind produces
So a “monad” in Haskell is always the monad for categories, except the lists are of bindable half-functored morphisms like rather than lists of composable morphisms.
A side-effect monad has where
is the data type for the environment on which the morphism is to act. The IO monad is a specific instance of a side-effect monad with the environment being the keyboard queue, disk drive, network, etc.
Another piece of the stone
A few days ago, I thought that I had understood pi calculus in terms of category theory, and I did, in a way.
|
|
To make lambda calculus into a category, we mod out by the rewrite rules and consider equivalence classes of terms instead of actual terms. A model of this category (i.e. a functor from the category to Set) picks out a set of values for each datatype and a function for each program. Given a value from the input set, we get a single value from the output set.
Similarly, a model of the pi calculus assigns to each process a set of states and to each reduction rule a function that updates the state. A morphism in this way of thinking is a certain number of reductions to perform. The reductions are deterministic in the sense that we can model “A or B” as Given an object’s state at a certain point, we can tell what set of states it can be in after the system reduces n messages.
However, what we really want is to know the set of states it can be in after all the messages have been processed: what is its normal form? This is far more like the rewrite rules in lambda calculus. It suggests that we should be treating the reduction rules like 2-morphisms instead of 1-morphisms. There’s one important difference from lambda calculus, however: the 2-morphisms of pi calculus are not confluent! It matters very much in which order they are evaluated. Thus processes can’t map to anything but trivial functions.
It looks like a better fit for models of the pi calculus is Rel, the category of sets and relations. A morphism in Rel can relate a single input state to multiple output states. This suggests we have a single object * in the pi calculus that gets mapped to a set of possible states for the system, while each process gets mapped to a relation that encodes all its possible reductions.
I’m rather embarrassed that it took me so long to notice this, since my advisor has been talking about replacing Set by Rel for years.
| category | lambda calculus | pi calculus |
| objects | types | only one type *, a system of processes |
| a morphism | an equivalence class of terms | a structural congruence class of processes |
| dinatural transformation from the constant functor (mapping to the terminal set and its identity) to a functor generated by hom, products, projections, and exponentials (if they’re there) | combinator: template for programs mapping between isomorphic types (usually) | since there’s only one type, this is trivial |
| Model of the category in Rel | (usually taken in Set, a subcategory of Rel) a set of values for each data type and a function for each morphism between them | * maps to a set S of states for the system, and each process gets mapped to a relation that relates each element of S to its possible reductions in S |
Continuation passing as a reflection
We can write any expression like as a full binary tree where the nodes denote evaluation of the left child at the right, and the leaves are values:
Figure 1:
[In the caption of figure 1, the expression is slightly different; when using trees, it's more convenient to curry all the functions---that is, replace every comma "," by back-to-back parens: ")(" .]
The continuation passing transform (Yoneda embedding) first reflects the tree across the vertical axis and then replaces the root and all the left children with their continuized form—a value gets replaced with a function value
Figure 2:
What does this evaluate to? Well,
As we hoped, it’s the continuization (Yoneda embedding) of the original expression. Iterating, we get
Figure 3:
At this point, we get an enormous simplification: we can get rid of overlines whenever the left and right branch both have them. For instance,
Actually working out the whole expression would mean lots of epicycular reductions like this one, but taking the shortcut, we just get rid of all the lines except at the root. That means that we end up with
for our final expression.
However, if this expression is just part of a larger one—if what we’re calling the “root” is really the child of some other node—then the cancellation of lines on siblings applies to our “root” and its sibling, and we really do get back to where we started!
A piece of the Rosetta stone
| category | lambda calculus | pi calculus | Turing machine |
| objects | types | structural congruence classes of processes | |
| a morphism | an equivalence class of terms | a specific reduction from one process state to the next | a specific transition from one state and position of the machine to the next |
| dinatural transformation from the constant functor (mapping to the terminal set and its identity) to a functor generated by hom, products, projections, and exponentials (if they’re there) | combinator | reduction rule (covers all reductions of a particular form) | tape-head update rule (covers all transitions with the current cell and state in common) |
| products | product types | parallel processes | multiple tapes |
| internal hom | exponential types | all types are exponentials? | ? |
| Model of the category in Set | A set of values for each data type and a function for each morphism between them | A set of states for each process and a single evolution function out of each set. | ? |
This won’t be appearing in our Rosetta stone paper, but I wanted to write it down. What flavor of logic corresponds to the pi calculus? To the Turing machine?
The continuation passing transform and the Yoneda embedding
They’re the same thing! Why doesn’t anyone ever say so?
Assume A and B are types; the continuation passing transform takes a function (here I’m using C++ notation)
B f(A a);
and produces a function
<X> CPT_f(<X> (*k)(B), A a) {
return k(f(a));
}
where X is any type. In CPT_f, instead of returning the value f(a) directly, it reads in a continuation function k and “passes” the result to it. Many compilers use this transform to optimize the memory usage of recursive functions; continuations are also used for exception handling, backtracking, coroutines, and even show up in English.
The Yoneda embedding takes a category and produces a category
:
We get the transformation above by uncurrying to get
In Java, a (cartesian closed) category is an interface
C with a bunch of internal interfaces and methods mapping between them. A functor is written
class F implements C.
Then each internal interface C.A gets instantiated as a set F.A of values and each method C.f() becomes instantiated as a function F.f() between the sets.
The continuation passing transform can be seen as a parameterized functor . We’d write
class CPT<X> implements C.
Then each internal interface C.A gets instantiated as a set CPT<X>.A of methods mapping from C.A to X—i.e. continuations that accept an input of type C.A—and each method C.f maps to the continuized function CPT<X>.f described above.
Then the Yoneda lemma says that for every model of —that is, for every
class F implementing the interface C—there’s a natural isomorphism between the set and the set of natural transformations
A natural transformation between
and
is a way to cast the class
F to the class CPT<X> such that for any method of C, you can either
- invoke its implementation directly (as a method of
F) and then continuize the result (using the type cast), or - continuize first (using the type cast) and then invoke the continuized function (as a method of
CPT<X>) on the result
and you’ll get the same answer. Because it’s a natural isomorphism, the cast has an inverse.
The power of the Yoneda lemma is taking a continuized form (which apparently turns up in lots of places) and replacing it with the direct form. The trick to using it is recognizing a continuation when you see one.
Category Theory for the Java Programmer
There are several good introductions to category theory, each written for a different audience. However, I have never seen one aimed at someone trained as a programmer rather than as a computer scientist or as a mathematician. There are programming languages that have been designed with category theory in mind, such as Haskell, OCaml, and others; however, they are not typically taught in undergraduate programming courses. Java, on the other hand, is often used as an introductory language; while it was not designed with category theory in mind, there is a lot of category theory that passes over directly.
I’ll start with a sentence that says exactly what the relation is of category theory to Java programming; however, it’s loaded with category theory jargon, so I’ll need to explain each part.
A collection of Java interfaces is the free3 cartesian4 category2 with equalizers5 on the interface6 objects1 and the built-in7 objects.
1. Objects
Both in Java and in category theory, objects are members of a collection. In Java, it is the collection of values associated to a class. For example, the class Integer may take values from up to
The class
enum Seasons { Spring, Summer, Fall, Winter }
has four possible values.
In category theory, the collection of objects is “half” of a category. The other part of the category is a collection of processes, called “morphisms,” that go between values; morphisms are the possible ways to get from one value to another. The important thing about morphisms is that they can be composed: we can follow a process from an initial value to an intermediate value, and then follow a second process to a final value, and consider the two processes together as a single composite process.
2. Categories
Formally, a category is
- a collection of objects, and
- for each pair of objects
, a set
of morphisms between them
such that
- for each object
the set
contains an identity morphism
- for each triple of objects
and pair of morphisms
and
there is a composite morphism
- for each pair of objects
and morphism
the identitiy morphisms are left and right units for composition:
and
- for each 4-tuple of objects
and triple of morphisms
composition is associative:
If a morphism category theorists write
We can also define a category in Java. A category is any implementation of the following interface:
interface Category {
interface Object {}
interface Morphism {}
class IllegalCompositionError extends Error;
Object source(Morphism);
Object target(Morphism);
Morphism identity(Object);
Morphism compose(Morphism, Morphism)
throws IllegalCompositionError;
};
that passes the following tests on all inputs:
void testComposition(Morphism g, Morphism f) {
if (target(f) != source(g)) {
assertRaises(compose(g, f),
IllegalCompositionError);
} else {
assertEqual(source(compose(g, f)), source(f));
assertEqual(target(compose(g, f)), target(g));
}
}
void testAssociativity(Morphism h,
Morphism g,
Morphism f) {
assertEqual(compose(h, compose(g, f)),
compose(compose(h, g), f));
}
void testIdentity(Object x) {
assertEqual(source(identity(x)), x);
assertEqual(target(identity(x)), x);
}
void testUnits(Morphism f) {
assertEqual(f, compose(identity(target(f)), f));
assertEqual(f, compose(f, identity(source(f))));
}
One kind of category that programmers use every day is a monoid. Monoids are sets equipped with a multiplication table that’s associative and has left- and right units. Monoids include everything that’s typically called addition, multiplication, or concatenation. Adding integers, multiplying matrices, concatenating strings, and composing functions from a set to itself are all examples of monoids.
In the language of category theory, a monoid is a one-object category (monos is Greek for “one”). The set of elements you can “multiply” is the set of morphisms from that object to itself.
In Java, a monoid is any implementation of the Category interface that also passes this test on all inputs:
void testOneObject(Morphism f, Object x) {
assertEqual(source(f), x);
}
The testOneObject test says that given any morphism f and any object x, the source of the morphism has to be that object: given another object y, the test says that source(f) == x and source(f) == y, so x == y. Therefore, if the category passes this test, it has only one object.
For example, consider the monoid of XORing bits together, also known as addition modulo 2. Adding zero is the identity morphism for the unique object; we need a different morphism to add 1:
interface Parity implements Category {
Morphism PlusOne();
}
The existence of the PlusOne method says that there has to be a distinguished morphism, which could potentially be different from the identity morphism. The interface itself can’t say how that morphism should behave, however. We need tests for that. The testPlusOne test says that (1 + 1) % 2 == 0. The testOneIsNotZero test makes sure that we don’t just set 1 == 0: since (0 + 0) % 2 == 0, the first test isn’t enough to catch this case.
void testOnePlusOne(Object x) {
assertEqual(compose(PlusOne(), PlusOne()),
identity(x));
}
void testOneIsNotZero(Object x) {
assertNotEqual(PlusOne(), identity(x));
}
Here’s one implementation of the Parity interface that passes all of the tests for Category, testOneObject, and the two Parity tests:
class ParityImpl implements Parity {
enum ObjectImpl implements Object { N };
enum MorphismImpl implements Morphism {
PlusZero,
PlusOne
};
Object source(Morphism) { return N; }
Object target(Morphism) { return N; }
Morphism identity(Object) { return PlusZero; }
Morphism compose(Morphism f, Morphism g) {
if (f == PlusZero) return g; // 0 + g = g
if (g == PlusZero) return f; // f + 0 = f
return PlusZero; // 1 + 1 = 0
}
Morphism PlusOne() { return PlusOne; }
}
3. Free
Java tests are a kind of “blacklisting” approach to governing implementations. Had we not added testOneIsNotZero, we could have returned PlusZero and the compiler would have been happy. In a free category, relations are “whitelisted:” an implementation must not have relations (constraints) other than the ones that are implied by the definitions.
- “The free category” has no objects and no morphisms, because there aren’t any specified.
- “The free category on one object
” has one object and one morphism, the identity
The morphism has to be there, because the definition of category says that every object has to have an identity morphism, but we can’t put in any other morphisms.
- “The free category on the directed graph
”
A -f-> B | / G = h g | / V L Chas
- three objects
and
- seven morphisms:
,
,
,
,
,
, and
.
The three vertices and the three edges become objects and morphisms, respectively. The three identity morphisms and
are required to be there because of the definition of a category. And because the category is free, we know that
For abritrary directed graphs, the free category on the graph has the vertices of the graph as objects and the paths in the graph as morphisms.
- three objects
- The parity monoid is completely defined by “the free category on one object
, one morphism
and one relation
”
- If we leave out the relation and consider “the free category on one object
and one morphism
” then we get the natural numbers under addition: since we didn’t specify a point at which repeated applications of PlusOne “wrap around” back to zero, the free category has no such constraint. To add the number
we form
- Exercise: what is the common name for “the free category on one object
and two morphisms
?” What should the identity morphism be named?
4. Cartesian
A cartesian category has lists as its objects. It has a way to put objects together into ordered pairs, a way to copy objects, and an object that’s “the empty” object.
It’s time to do the magic! Recall the interface Category:
interface Category {
interface Object {}
interface Morphism {}
class IllegalCompositionError extends Error;
Object source(Morphism);
Object target(Morphism);
Morphism identity(Object);
Morphism compose(Morphism, Morphism)
throws IllegalCompositionError;
};
Now let’s change some names:
interface Interface {
interface InternalInterfaceList {}
interface ComposableMethodList {}
class IllegalCompositionError extends Error;
InternalInterfaceList source(ComposableMethodList);
InternalInterfaceList target(ComposableMethodList);
ComposableMethodList identity(InternalInterfaceList);
ComposableMethodList compose(ComposableMethodList,
ComposableMethodList)
throws IllegalCompositionError;
}
Category theory uses cartesian categories to describe structure; Java uses interfaces. Whenever you see “cartesian category,” you can think “interface.” They’re pretty much the same thing. Practically, that means that a lot of the drudgery of implementing the Category interface is taken care of by the Java compiler.
For example, recall the directed graph above. We can get effectively the same implementation of the graph by using this interface:
interface G {
interface A;
interface B;
interface C;
B f(A);
C g(B);
C h(A);
}
That’s it! We’re considering the free category on so there are no tests. We can compose lists of methods: g(f(a)). The compiler will give us an error if we try to compose methods whose source and target don’t match: h(g(b)) doesn’t work.
Because the objects of the cartesian category Interface are lists, we can define methods in our interfaces that have multiple inputs.
interface Monoid {
interface M;
M x(M, M);
M e();
}
void testX(M a, M b, Mc) {
assertEqual(x(a, x(b, c)),
x(x(a, b), c));
}
void testE(M a) {
assertEqual(a, x(a, e()));
assertEqual(a, x(e(), a));
}
Here, the method x takes a two-element list as input, while e takes an empty list.
Exercise: figure out how this definition of a monoid relates to the one I gave earlier.
Implementation as a functor
Cartesian categories (interfaces) provide the syntax for defining data structures. The meaning, or semantics, of Java syntax comes from implementing an interface.
In category theory, functors give meaning to syntax. Functors go between categories like functions go between sets. A functor
- maps objects of
to objects of
and
- maps morphisms of
to morphisms of
such that
- identities and composition are preserved.
There are several layers of functors involved in implementing a typical Java program. First there’s the implementation of the interface in Java as a class that defines everything in terms of the built-in classes and their methods; next, there’s the implementation of the built-in methods in the Java VM, then implementation of the bytecodes as native code on the machine, and finally, physical implementation of the machine in silicon and electrons. The composite of all these functors is supposed to behave like a single functor into the category whose objects are sets and whose morphisms are functions between sets. We end up approximating many of these sets: instead of integers, we use ints and hope that they don’t overflow. Instead of real numbers, we use doubles and are surprised when we lose precision. In category theory, we ignore this and say that in any practical application, we’ll use datatypes that are “big enough.”
The upshot of all this is that a Java class F implementing an interface X can be thought of as a functor The class definition assigns to each inner interface a set of values and to each method a function mapping between those sets.
Here’s an example of three different classes that implement the Monoid interface from the last subsection. Recall that a monoid is a set of things that we can combine; we can add two integers to get an integer, multiply two doubles to get a double, or concatenate two strings to get a string. The combining operation is associative and there’s a special element that has no effect when you combine it with something else: adding zero, multiplying by 1.0, or concatenating the empty string all do nothing.
So, for example,
class AddBits implements Monoid {
enum Bit implements M { Zero, One }
M x(M f, M g) {
if (f == e()) return g; // 0+g=g
if (g == e()) return f; // f+0=f
return Zero; // 1+1=0
}
M e() { return Zero; }
}
Here, the functor assigned the set
to the object
assigned the function XOR to the morphism
and assigned the constant function returning
to the morphism
class MultiplyBits implements Monoid {
enum Bit implements M { Zero, One }
M x(M f, M g) {
if (f == e()) return g; // 1*g=g
if (g == e()) return f; // f*1=f
return Zero; // 0*0=0
}
M e() { return One; }
}
Here, the functor assigned to
the same set as before,
but assigned the function AND to the morphism
and the constant function returning
to the morphism
class Concatenate implements Monoid {
class ConcatString implements M {
ConcatString(String x) {
this.x = x;
}
String x;
}
M x(M f, M g) {
return new ConcatString(
f.x + g.x);
}
M e() {
return new ConcatString("");
}
}
Here, the functor assigned the set of strings to
assigned the string concatenation function to the morphism
and the constant function returning the empty string to the morphism
5. Equalizers
An equalizer of two functions and
picks out the set
This gets used in the definition of a category: we let
the set of morphisms in our category, and let
be the set of objects. We let
be the source and target maps, repsectively. Then
is the set of composable pairs of morphisms.
In Java, this means that we can throw an exception if the pair isn’t composable.
6, 7. Interface objects and built-in objects
The objects of the free category in question are java interfaces, whether defined by the programmer or built-in. Because it’s cartesian, we can combine interfaces into new interfaces:
interface XYPair { interface X; interface Y; }
The built-in objects have some relations between them–we can cast an integer into a double, for instance, or turn an integer into a string–so these relations exist between combinations of arbitrary interfaces with built-in ones. But there are no automatic cast relationships between user-defined interfaces, so the category is free.
Next time
This post was about how to translate between Java ideas and category-theory ideas. Next time, I’ll show what category theory has to offer to the Java programmer.
Prototypal inheritance
Once again, I got doing inheritance in Javascript wrong. I was deceived, as the language designers intended, into believing that classes and objects were separate entities like in Java or C++. Nope! No such thing as classes.
Douglas Crockford gives this solution (though I added the super atribute) for getting rid of new and using the OOP inherent in Javascript as naturally as possible:
Class={
beget:function(){
var F=function(self){return function(){
this.super=self;
}}(this);
F.prototype=this;
return new F();
}};
Now you create new objects by saying
A=Class.beget();
A.init=function(args){
// put arg-dependent definitions here
// "this" works just fine.
}
What if you want two instances of a class? YOU STOP THINKING THAT WAY! In javascript, what you want to do is get two derived objects from a common ancestor:
B=A.beget(); C=A.beget();
This way, you get inheritance and polymorphism:
A.x=1; A.y=3;
A.f=function(){return this.x};
B.x=2;
alert(B.x); // 2
alert(B.super.x); // 1
alert(C.x); // 1
alert(B.y); // 3
alert(B.f()); // 2
Cellular automaton for land combat
This CA was developed to simulate land combat and presented in a Smithsonian lecture. Really cool pictures.
Universality of nonlinear media
Here’s a neat paper comparing cellular automata and solitons in several different nonlinear media.
Using closures to fake ‘this’ in Javascript
Say you’ve got two instances a, b of a class A in Javascript. You’d like to add a class method f to the object a without changing b. If not for that, you could add the function to the prototype:
A.prototype.f=function(){
return this.g()+1;
}
One way is to use multiple inheritance:
function F(){
this.f=function(){
return this.g()+1;
}
}
F.call(a);
Another is to use a closure to send in a reference to a:
a.f=(function(self){
return function(){
return self.g()+1;
}
})(a);
which is sometimes easier than multiple inheritance.
Javascript OOP
I linked a while ago to an article that I thought was doing OOP right in Javascript. It turns out that it wasn’t quite. Under that system, constructors can’t have parameters and other badness.
After working out the details, here’s what I found. Start with a base class A and derive a class B:
function A(args){
// non-static args-independent code
this.myMethod=function(){return 'A'+this.x;};
this.x='x';
if (arguments.length==0) return;
// args-dependent code
this.myArgsDependent=function(){return args;};
}
A.prototype.myStaticMethod=function(){return 'static A';};
function B(args){
if (arguments.length==0) return;
// args-dependent code
// annoying to have two copies, but otherwise static members get overridden
// (see below)
// if that's not a problem, set this.super = B.prototype
this.super=new A(args);
A.call(this,args);
// while not strictly args-dependent, overriding methods / properties
// has to occur after the args-dependent call to the
// superclass constructor
this.myMethod=function(){return 'B'+this.x;};
this.x='y';
}
// this says "if it's not here, look for it in A"
B.prototype = new A();
B.prototype.myStaticMethod=function(){return 'static B';};
b=new B('argsFromBConstructor');
alert(b.myMethod()); // By
alert(b.myStaticMethod()); // static B
alert(B.prototype.myStaticMethod.call(b)); // static B
alert(b.super.myMethod.call(b)); // Ay
alert(b.super.myMethod()); // Ax
alert(b.super.myStaticMethod.call(b)); // static A
alert(b.myArgsDependent()); // argsFromBConstructor
Javascript doesn’t do multiple inheritance or implement interfaces, but you can run several contructor methods on a single object with the same A.call(this,args) syntax.
function C(){
// initialize this object with properties of both A and B
A.call(this,args);
B.call(this,args);
}
// If it's not in C, you have to tell it a single class to look in
C.prototype=new <which:A or B?>;
Greasemonkey closures
I’m writing up a greasemonkey script that adds onclick behavior to the span. According to the site, you do something like
thisDiv.addEventListener('click',function(){
// function code here
},true);
This works OK, but what if my code needs scope? Say I wanted to search for some divs and have them tell which match they are when clicked. This code won’t work:
for(i=0; i<allDivs.snapshotLength; i++){
var thisDiv=allDivs.getSnapshotItem(i);
thisDiv.addEventListener('click',function(){
alert(i);
},true);
}
If there were 10 matching divs, this will alert “10″ every time. On the other hand, this code will work:
for(i=0; i<allDivs.snapshotLength; i++){
var thisDiv=allDivs.getSnapshotItem(i);
thisDiv.addEventListener('click',(function(i){return function(){
alert(i);
};)(i),true);
}
This is helpful when you want your modifications to retain access to functions like GM_setValue without using unsafeWindow. This way won’t work:
for(i=0; i<allDivs.snapshotLength; i++){
var thisDiv=allDivs.getSnapshotItem(i);
thisDiv.addEventListener('click',function(){
GM_setValue('mydata',i);
},true);
}
This way will:
for(i=0; i<allDivs.snapshotLength; i++){
var thisDiv=allDivs.getSnapshotItem(i);
thisDiv.addEventListener('click',(function(i,GM_setValue){return function(){
GM_setValue('mydata',i);
};)(GM_setValue,i),true);
}
Quantum lambda calculus, symmetric monoidal closed categories, and TQFTs
The last post was all about stuff that’s already known. I’ll be working in my thesis on describing the syntax of what I’ll call simply-typed quantum lambda calculus. Symmetric monoidal closed categories (SMCCs) are a generalization of CCCs; they have tensor products instead of products. One of the immediate effects is the lack of built-in projection morphisms and
for extracting the first and second element of a pair. And without these, there’s no duplication morphism $\Delta: A\to A\otimes A$; morphisms of this type can exist, but there’s no way to express the notion that it should make a copy of the input! The no-cloning theorem is built in.
The typical CCC in which models of a lambda theory are interpreted is Set. The typical SMCC in which models of a quantum lambda theory will be interpreted is Hilb, the category of Hilbert spaces and linear transformations between them. Models of lambda theories correspond to functors from the CCC arising from the theory into Set. Similarly, models of a quantum lambda theory should be functors from a SMCC to Hilb.
Two-dimensional topological quantum field theories (TQFTs) are close to being a model of a quantum lambda theory, but not quite.
There’s a simpler syntax than the simply-typed lambda calculus, called universal algebra, in which one writes algebraic theories. These give rise to categories with finite products (no exponentials) , and functors from these categories to Set pick out sets with the given structure. There’s an algebraic theory of groups, and the functors pick out sets with functions that behave like unit, inverse, and multiplication. So our “programs” consist solely of operations on our data type.
TQFTs are functors from 2Cob, the theory of a commutative Frobenius algebra, to Hilb. We can look at 2Cob as defining a data type and a TQFT as a quantum implementation of the type. When we take the free SMCC over 2Cob, we ought to get a full-fledged quantum programming language with a commutative Frobenius algebra data type. A TQFT would be part of the implementation of the language.
CCCs and lambda calculus
I finally got it through my thick skull what the connection is between lambda theories and cartesian closed categories.
The lambda theory of a set has a single type, with no extra terms or axioms. This gives rise to a CCC where the objects are generated by products and exponentials of a distinguished object, the free CCC on one object. For example, from a type we generate objects
etc. The morphisms are all the programs we can make out of the appropriately-typed S and K combinators. A product-exponential-preserving functor from this CCC to the category Set (which is also a CCC) picks out a set
for
and because it preserves the structure, maps the product
to
and the exponential
to
The functions on the sets have to satisfy beta-eta-equivalence.
The functor itself, however, can be uncomputable: one could, for example, have $S_X$ be the set of halting programs for some universal Turing machine. This set is only computably enumerable, not computable.
When we have types and axioms involved, then we add structure to the set, constraints that the sets and functions on them have to satisfy. For instance, in the lambda theory of groups, we have:
- a type
- terms
- axioms for right- and left-unit laws, right-and left-inverses, and associativity
The CCC arising from this theory has all the morphisms from the free CCC on one object and extra morphisms arising from products and compositions of the terms. A structure-preserving functor to Set assigns to a set and
to functions satisfying the axioms. These functions needn’t be computable, either—they only have to satisfy the group axioms.
So in terminology programmers are more familiar with, the terms and axioms define an abstract data type, an interface. The functor gives a class implementing the interface. But this implementation doesn’t need to be computable! Here’s another example: we start with a lambda theory with a data type along with a term
and the axioms of Peano arithmetic; a functor from this lambda theory to Set will give us an implementation of natural numbers. Now we add a term
to the theory, with no other constraints. One model of this theory is Peano arithmetic with an oracle to
it assigns
to the function that returns the
th bit of the Omega number for a universal prefix-free Turing machine.
I think that in order to get a computable model, we have to use a “computability functor” (my term). If I’m right, this means that instead of taking a functor directly into Set, we have to take a functor into a CCC with no extra terms to get a “computable theory” (again, my term), and then another from there into Set. This way, since all the morphisms in the category arising from the computable theory are built out of S and K combinators, the functor has to pick an explicit program for the implementation, not just an arbitrary function. From there, whether the implementation of the S and K combinators is computable or not really doesn’t matter; we can’t get at anything uncomputable from within the language.
Now, changing gears and looking at the “programs as proofs” aspect of all this: morphisms in the free CCC on one object are proofs in a minimal intuitionistic logic, where now means implication rather than exponentiation. The only two axioms are the ones from S and K. Adding a term of a given type to the theory adds a new axiom to the logic, while adding an axiom to the theory defines an equivalence of proofs in the logic.
A computable theory wouldn’t add any axioms, just assign names to proofs so they can be used as subproofs. And because the programs already satisfy the axioms of the computable theory, asserting the equivalence of two proofs is redundant: they’re already equivalent.
leave a comment