Advertisement
Guest User

post 2 - rules

a guest
Sep 29th, 2018
344
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. ==Rules==
  2. Each cell of the grid (e,n) has infinite elements or ZERO elements.
  3. Each cell with one value has infinite elements, since every element can make a new one.
  4. By induction, a cell only needs one value to make infinite values, that's part of the power of this and is why it is a virtual quantum computer as a whole.
  5. The t variable is what will allow you to walk across these infinite elements.
  6. If a grid cell has elements, all elements are constructable from a finite set of root elements.
  7. Thus, only three variables are required to identify an element: e, n and t.
  8. All products of odd numbers and all products of pairs of even numbers are the difference of two squares.
  9.  
  10. '''(1, 1) - the key'''
  11. The values of a and b at 1,1 are related to the length of the longest side in right angled triangles.
  12. The values here can be used to create the entire grid.
  13. The values here determine the values of the rows to the left and right, which determine the values of the whole column.
  14.  
  15. '''Columns'''
  16. Each cell at n=1 contains the roots of products in the column.
  17. If c is a prime number, it will appear in one column exactly once.
  18. If c is the product of two prime numbers that do not equal eachother, c will appear in two cells of one column.
  19. All products (integers) c that are the sum of two squares appear (only) in columns where e=0,1,4,9,16,25...
  20. All factors in a column are factors of the elements of the first cell in their column.
  21. All Fermat primes (except) 3 appear in column one.
  22.  
  23. '''(e, 1)'''
  24. If a number at position t has a factor s, then s is a factor at (t+s), (t+2s) and so on for a at (e,1).
  25. Also, if a number at position t has a factor s at (e+1), then s is a factor at (s+1-t), (2s+1-t), etc for a at (e,1).
  26. n*a and n*b for any c can be found n places apart in the cell at (e,1).
  27.  
  28. '''(1, n)'''
  29. The cells in row one where n=1 have a relationship with the cells 2n to the right and 2n to the left.
  30. Each "a" from the first row equals na because xx+e = 2na and na is half of that. That's BIG part of the KEY
  31. Each element in a cell can be generated by moving up (t-1 = x-2) or down (t+1 = x+2). Other variables can be generated from x.
  32.  
  33. For more of these rules, see the grid patterns thread.
  34.  
  35. ==Useful Equations and Notation==
  36. ab = c
  37. dd + e = c
  38. (d + n)(d + n)-(x + n)(x + n) = c
  39. a + 2x + 2n = b
  40. a = d - x
  41. d = a + x
  42. d = floor_sqrt(c)
  43. e = c - (dd)
  44. b = c / a
  45. n = ((a + b) / 2) - d
  46. d + n = i
  47. x = d - a
  48. x = (floor_sqrt(( (d+n)*(d+n) - c))) - n
  49. x + n = j
  50. j^2 = 8*T(u) + 1
  51. f = e - 2d + 1
  52. u = (x+n) / 2
  53.  
  54. if (e is even) t = (x + 2) / 2
  55. if (e is odd) t = (x + 1) / 2
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement