I think the natural quantum-mechanical extension of this is:
there are 2(N := tape size) basis states: |00⋯00⟩ through |11⋯11⟩
its time-evolution is given, of course, by a unitary operator U, which, expressed in that basis, is:
⟨y|U|x⟩=∏kf(x(k−1),x(k),x(k+1),y(k))
...where f:{0,1}4→C.
You can take any elementary cellular automaton and quantum-ize it: just choose fquantum(a,b,c,z)=( if fclassical(a,b,c)=z then 1 else 0 ); then that product is 1 exactly when y is the classical evolution of x. (Not every fclassical gives rise to a unitaryU, though; only the reversible ones.)
But... are there other unitary operators of this form, which aren't basically equivalent to reversible classical CAs? I think not, disappointingly, but I'm not sure, and I don't understand why not.
Bounty: $100 if you make me feel like I have a significantly deeper understanding of why all quantum elementary CAs are basically equivalent to classical elementary CAs (or show me I'm wrong and there actually is interesting behavior here). Partial payouts for partial successes.
My current understanding (the thing you have to enhance or beat) is:
Any choice of f is equivalent to a choice of eight complex two-vectors →λ000,⋯,→λ111, each describing roughly "how (0/1)ish the next state of a cell should be given its current neighborhood."
For unitarity, we want ⟨Ux|Uy⟩=⟨x|y⟩ for all x,y. If you bang through some math, I think this inner product turns out to equal the product of all 64 possible inner products of the →λabc s, raised to various powers:
...where N000,111 is the number of locations where the neighborhood on tape x is 000 and the neighborhood on tape y is 111. For x=y, we want this product to be 1; for x≠y, we want this product to be 0, meaning at least one of the inner products with a nonzero N must be zero.
(Sanity check: if x=y, then Nabc,abc=1 and all the other Ns are 0. The inner products raised to power 0 disappear; the remaining ones are →λabc⋅→λabc, which is 1 as long as the →λs are normalized, so we get ⟨Ux|Ux⟩=1 practically for free. Great.)
(Note that not all the Ns can be chosen independently: for example, if N001,000>0, then evidently tape x has some stretch of 0s ending in a 1; I'm imagining that the tape wraps around, so there must be a 1 on the left side of the stretch of 0s too; so some N100,abc must be positive too.)
It feels like there must be some clever geometrical insight, here, but I can't find it. Instead, I just enumerated all possible x,y for a small (4-cell) automaton, computed which Ns were nonzero, and asked Z3 to find →λs satisfying the huge pile of constraints (the AND of a bunch of ORs of clauses like "A dot B is zero") and "some →λ is not parallel to →λ000 or →λ111". (I think that if there are just two mutually-perpendicular families of →λ, that's basically equivalent to a classical CA.)
It... well, it didn't print "unsat," but it did hang, whereas, if I left out the interestingness constraint, it promptly spit out a satisfactory output. Shrug. This is my first time with Z3, so it might be a newbie mistake.
I think you're looking for the irreducible representations of ~Iso(n,1). I'll come back and explain this later, but it's going to take awhile to write up.
You know elementary cellular automata, where each of the boolean-valued cells evolves according to
x(k)t+1=f(x(k−1)t,x(k)t,x(k+1)t)where f:{0,1}3→{0,1}.
I think the natural quantum-mechanical extension of this is:
- there are 2(N := tape size) basis states: |00⋯00⟩ through |11⋯11⟩
- its time-evolution is given, of course, by a unitary operator U, which, expressed in that basis, is:
⟨y|U|x⟩=∏kf(x(k−1),x(k),x(k+1),y(k))You can take any elementary cellular automaton and quantum-ize it: just choose fquantum(a,b,c,z)=( if fclassical(a,b,c)=z then 1 else 0 ); then that product is 1 exactly when y is the classical evolution of x. (Not every fclassical gives rise to a unitary U, though; only the reversible ones.)
But... are there other unitary operators of this form, which aren't basically equivalent to reversible classical CAs? I think not, disappointingly, but I'm not sure, and I don't understand why not.
Bounty: $100 if you make me feel like I have a significantly deeper understanding of why all quantum elementary CAs are basically equivalent to classical elementary CAs (or show me I'm wrong and there actually is interesting behavior here). Partial payouts for partial successes.
My current understanding (the thing you have to enhance or beat) is:
- Any choice of f is equivalent to a choice of eight complex two-vectors →λ000,⋯,→λ111, each describing roughly "how (0/1)ish the next state of a cell should be given its current neighborhood."
- For unitarity, we want ⟨Ux|Uy⟩=⟨x|y⟩ for all x,y. If you bang through some math, I think this inner product turns out to equal the product of all 64 possible inner products of the →λabc s, raised to various powers:
⟨Ux|Uy⟩=(→λ000⋅→λ111)N000,111⋯(→λ000⋅→λ111)N000,111...where N000,111 is the number of locations where the neighborhood on tape x is 000 and the neighborhood on tape y is 111. For x=y, we want this product to be 1; for x≠y, we want this product to be 0, meaning at least one of the inner products with a nonzero N must be zero.
(Sanity check: if x=y, then Nabc,abc=1 and all the other Ns are 0. The inner products raised to power 0 disappear; the remaining ones are →λabc⋅→λabc, which is 1 as long as the →λs are normalized, so we get ⟨Ux|Ux⟩=1 practically for free. Great.)