V.2   (Not a final version)

Uniformly Reflexive Structures

and URSA-minor

Uniformly reflexive structures (URS) are an axiomatic approach to computability.  They were introduced in my 1963 doctoral dissertation at Columbia University.  These pages provide an introduction to URS in general but the main thing we do here is introduce a simple functional language, URSA-minor, based on the URS concept, together with a calculator for writing and evaluating URSA-minor programs.   The calculator is implemented in JavaScript and thus it provides a way to handle higher level functions within JavaScript.
 
 

The URS Concept

The original motivation was to axiomatize the idea of a Gödelization, such as those used in the theory of computability, but in a very general setting.   In the theory of computability  a Gödelization is essentially an enumeration of the (one argument) computable functions  by natural numbers which is "effective" in the sense that there is a computable function, T,  such that given any Gödel number, ef, for a  computable function, f, and any natural number,p, we have T(nf , p) = f(p).  This idea is captured, and generalized,  in a URS as follows:

We are given

  1. U, a set
  2. o: UxU --> U,  a total function (which we will call the "dot function")
  3. alpha  U
  4. phi  U
  5. U
Let V = U-{*}, then the above data is required to satisfy the following axioms:
  1. o(*,u) = * = o(u, *)   for all u  U
  2. o(o(alpha, x), y)  V and  o(o(o(alpha, x), y), z) = o(o(x,z), o(y,z))  for all x,y,z V
  3. o(o(o(phi, a), b), c)  V and
  4. o(o(o(o(phi, a), b), c), d)      =  c     if a=d

  5.                                           b     if ad.
    for all a,b,c,d V
The intuition here is that every element of uU can also be viewed as a partial mapping from U to U , namely the mapping  taking  each wU  to  o(u, w)  where the special element,  *, is interpreted as "undefined" .    Indeed we can do more, for every nN we can also interpret each  uU as a partial mapping from   Un to U ,  namely the mapping  taking (w1,...,wn)Un  to  o(...o(o(u, w1), w2),...), wn).

The URSA-minor Language

The URSA-minor language is a URS with  the number and string data types built-in.   The underlying set consists of the integers, the strings and special objects, including the alpha and phi, corresponding to certain built-in functions.   More precisely, this is a URS where
the set V is given as follows
  The ``dot-function'', dot, is defined as follows:

    Let  n1, n2 N,  s1,s2S, and v1, v2, v3, v4V,  then
 

Exercises:
  1. Try the following examples of the built-in operations on the calculator (copy the expression and paste it onto the INPUT of the calculator and then click on the PERFORM button on the calculator)
    1. dot( [suc], 17)
    2. dot( [prd], 17)
    3. dot(dot( [add], 21), 33)
    4. dot(dot([add], 3.7), 1.25)
    5. dot(dot([mult], 21), 33)
    6. dot(dot([mult], 3.7), 1.25)
    7. dot(dot([concat], "fish"),"fry")
    8. dot(dot( [idx], "fish"),"is")
    9. dot(dot( [chat], "fish"), 1)
    10. dot(dot(dot([subst], "The beginning of it all"),4),9)
    11. dot([len], "The beginning of it all")
  2. Try editing some of the examples by changing the numerical and string arguments and then performing them again.
  3. Try some of these expressions involving alpha and phi.
    1. dot(dot(dot(dot( [phi], 11), 12), 13), 14)
    2. dot(dot(dot(dot( [phi], 14), 12), 13), 14)
    3. dot(dot(dot(dot(dot(dot([phi], 13),[mult]), [add]), 14), 5), 7)
    4. dot(dot(dot(dot(dot(dot( [phi], 14),[mult]), [add]), 14), 5), 7)
    5. dot(dot(dot([alpha], [add]), [suc]), 12)
  4. Try editing some of the examples by changing the numerical  arguments and then performing them again.
 What makes it possible to use the language URSA-minor, is that we can use it to define "mappings" which we can name (i.e., assign to a variable) and then use to define still other "mappings".    Here is a sequence of such definitions -- all these examples have been "built-into" the system so you do not have to copy them.
 

Given any vV we can define a "mapping" k_v such that for every xV, dot( k_v, x) = v.
    Take  k_v = dot(dot(dot( [phi], v), v), v).

Note:  From a mathematical point of view it is important to realize that neither the identifier  k_v nor the expression dot(dot(dot( [phi], v), v), v) are in V.   However,  the expression evaluates to an element of V which has been assigned to the identifier k_v.   Furthermore,  should you wish to define a mapping of your own invention and give it a name you can do so in just this fashion (be advised, however,  that your definitions will not survive from session to session, indeed they will not even survive a reloading of the frame).

There exists an identity " mapping",  that is a "mapping" id such that for every xV  we have dot(id, x) = x
    Take id = dot([alpha], dot(dot([phi], 0),0), k_0)

There is a uniform way to compute k_v,  that is, we can define a "mapping"  beta such that for every vV, dot(beta,v) = k_v.
    Take beta = dot(dot([alpha], dot(dot([alpha], [phi]), id)), id)

There is a uniform way to compose "mappings", that is, there exists a mapping gamma such that for all f,g,xV, dot(dot(dot(gamma, f),  g),  x)  =  dot(f, dot(f, x)).
    Take  gamma =  dot(dot([alpha], dot(beta,  [alpha])), beta)

gamma_2 =  dot(dot(gamma, gamma), gamma)

alpha_2 =  dot(dot(gamma, alpha), dot(gamma, alpha))

beta2 = dot(dot(gamma, beta),id)

u_2_1 = beta

u_2_2 =  dot(beta, id)
 

References

  1. Eric G. Wagner, Uniformly Reflexive Structures: Towards an Abstract Theory of Computability,  Doctoral Dissertation submitted in partial fulfillment of the requirements for the degree of Doctor of Philosophy, in the Faculty of Pure Science, Columbia University, (1963)
  2. Eric G. Wagner,  Gödelizations and Relative Computability, Trans. AMS,  144, (1969) pp 1--41.

  3.  
 top