Advertisement
NaZaRa

Exploding Dollar Notation

Aug 9th, 2015
288
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.46 KB | None | 0 0
  1. Exploding Dollar Notation (EDN):
  2.  
  3. Rules:
  4. 1) n$x# = n+1$x-1#
  5. 2) n$#[0]# = n+1$#n#
  6. 3) n$#[#[#]0[#]#] = n+1$#[0][#[#][#]#]#
  7. 4) n$#[#[#]x[#]#]# = n+1$#[n][#[#]x-1[#]#]#
  8. 5) n$#[x+1]# = n+1$#[x][x]...[x][x]# (n [x]'s)
  9. 6) Always solve by the left.
  10.  
  11.  
  12. 3$[2] = 4$[1][1][1] = 5$[0][0][0][1][1][1]
  13. = 6$[0][0][1][1][1] = 7$[0][1][1][1]
  14. = 8$[1][1][1] = 9$[0][0][0][0][0][0][0][0][1][1]
  15. = 17$[1][1] = 18$[0][0][0][0][0][0][0][0][0][0][0][0][0][0][0][0][0][1]
  16. = 35$[1] = 70$[0] = 71$70 = 141
  17.  
  18. 2$[[0]] = 3$[2] = 141
  19.  
  20. 2$[[1]] = 3$[[0][0]] = 4$[3[0]] = 5$[4][2[0]]
  21. = 6$[3][3][3][3][3][2[0]] = ...
  22. = n$[2[0]] = n+2$[n-1][n-1][n-1]...[n-1][n-1][n-1][1[0]]
  23. = x$[1[0]] = x+2$[x-1][x-1][x-1]...[x-1][x-1][x-1][0[0]]
  24. = y$[0[0]] = y+2$[y-1][y-1][y-1]...[y-1][y-1][y-1][[0]]
  25. = ... (it's getting huge!!!)
  26.  
  27. 2$[[[1]]] = 3$[[[0][0]]] = 4[[4[0]]] = 5[[4][3[0]]] = ...
  28.  
  29. F(n) = n$[[[...[[[n]]]...]]] with n nestings is ε0-recursive!
  30.  
  31. Rules (next):
  32. 7) n$#,0# = n+1$##
  33. 8) n$#,x# = n+1$[[[...[[[#,x-1#],#,x-1#],#,x-1#]...],#,x-1#],#,x-1#],#,x-1#
  34. 9) n$x,[0]# = n+1$#,n,n,...,n,n# with n n's
  35. 10) n$#,#[#[#]0[#]#] = n+1$#,#[0],[#[#][#]#]#
  36. 11) n$#,#[#[#]x[#]#]# = n+1$#,#[x],[#[#]x-1[#]#]#
  37. 12) n$#,#[x+1]# = n+1$#,#,[x],[x],...,[x],[x]# (n [x]'s)
  38. 13) n$#,[#],[#],...: start with the first one
  39. 14) n$x,y,z,...,[#],[#],[#],...: start with the numbers (like if there wasn't any [#])
  40.  
  41. 2$1,2 = 3$[[1,1],1],1 = 4$[[[[[[1]]]]],1],1
  42. = n$[x,1],1 = n+1$[[[[...[[[x]]]...]]]],1
  43. = y$z,1 = y+1$[[[[...[[[z]]]...]]]]
  44.  
  45. 2$1,[0] = 2$1,2,2
  46. 2$1,[1] = 3$1,[0],[0]
  47. 2$1,[[1]] = 3$1,[[0][0]]
  48. = 4$1,[3[0]]
  49. = 5$1,[4],[2[0]]
  50. = 6$1,[3],[3],[3],[3],[3],[2[0]]
  51. = 7$1,[2],[2],[2],[2],[2],[2],[3],[3],[3],[3],[2[0]]
  52. = 8$1,[1],[1],[1],[1],[1],[1],[1],[2],[2],[2],[2],[2],[3],[3],[3],[3],[2[0]]
  53. = 9$8,8,8,8,8,8,8,8,[1],[1],[1],[1],[1],[1],[2],[2],[2],[2],[2],[3],[3],[3],[3],[2[0]]
  54. = ...
  55.  
  56. [x]_2 behave exactly like [x], but instead of [0] => n we have [0]_2 = A,A,A,...,A,A,A with A = [[[...[[n]]...]]] with n nestings
  57. and also [x+1]_2 => A,A,A,...,A,A,A with A = [x]_2
  58. Then, [0]_(k+1) => A,A,A,...,A,A,A with A = [[[...[[n]_k]_k..]_k]_k]_k with n nestings
  59. And [x+1]_k => A,A,A,...,A,A,A with A = [x]_k
  60.  
  61. now, [x]_(1,2) = [x]_2. From there, normal comma rules applies, which means that [x]_[y] is possible!
  62.  
  63. Finally,
  64. <0> => [n]_[n]_..._[n]_[n] (n nestings)
  65. <x+1> => [<x>]_[<x>]_..._[<x>]_<x> (n nestings)
  66.  
  67. χ(n) = n$<<<...<<<n>>>...>>> with n nestings!
  68. Veraxorris = χ(χ(χ(...(χ(10^^100))...))) with χ(10^^100) χ's
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement