Linear-Inequality Affine Transformation Automata

From BusyBeaverWiki
Revision as of 04:59, 1 October 2025 by Sligocki (talk | contribs) (Formal Definition: Move Turing complete stuff to a new section and some general format cleanup.)
Jump to navigation Jump to search

Linear-Inequality Affine Transformation Automata (LIATA) are a model for computation based upon applying affine transformations to vectors based on cases defined by linear inequalities. They are a generalization of the rules for BMO1 and were proven to be Turing complete.

Example

An example of a LIATA are the rules for BMO1:f(a,b)={(ab,4b+2)if a>b(2a+1,ba)if a<bwhere f(n,n) is undefined. BMO1 halts iff there exists k such that fk(1,2) is undefined (in other words fk1(1,2)=(n,n) for some n).

This is a 2-dimension, 2-case LIATA. The 2 dimensions are the parameters a,b and the two cases are the a<b and a>b rows. For each case the parameters are transformed via an affine transformation.

Formal Definition

A n-dimension, k-case LIATA is a piecewise defined partial function f:nn:f(x)={f0(x)if C0(x)f1(x)if C1(x)fk1(x)if Ck1(x)Where each fi:nn is an affine function and each Ci:n{T,F} is a "linear inequality condition" (defined below) such that for all x at most one condition Ci(x) applies. If none of the conditions apply to x, we say that it halts on that configuration.

Let a linear inequality term be any equation of the form g(x)c where g:n is a linear function and ~ is replaced by any (in)equality relation (=,<,≤,>,≥). Then let a linear inequality condition be any combination of linear inequality terms using logical AND, OR and NOT operations.

So, for example, the following are all linear inequality conditions:

  • a<b represented formally as ab<0
  • 3ab<4a represented formally as (b3a0)(4ab>0)
  • a=2 (note that we allow equalities as well)

Given a LIATA f, we say that it halts in k steps starting from configuration x iff fk(x) is undefined.

Turing Complete

LIATA are Turing complete. This has been proven by implementing Minsky machines as LIATA:

  • @Bard's proved that 3-dim LIATA are Turing complete: Discord link
  • @star's proved that 2-dim LIATA are Turing complete: Discord link
  • In progress: Shawn Ligocki is working on a proof that 2-case LIATA are Turing complete: Discord link