Guest User

VQC thread bake

a guest
Nov 7th, 2020
127
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 3.66 KB | None | 0 0
  1. The virtual quantum computer (VQC) is a grid made of constructably infinite elements that follow a known pattern. It is indexed using e, n, and t, where e is the column, n is the row, and t is the specific element in the cell.
  2.  
  3. The grid in its entirety serves as the superposition. The required input parameters to collapse the superposition are d and e, which are trivial to calculate for all c that is the difference of two squares. When the integers that are the difference of two squares are arranged into the grid and their corresponding properties are shown, a pattern emerges that shows a path to calculate the factors of c instead of searching for them. It can be understood using only the basic operations of arithmetic and sqrt. All currently-known patterns can be found within one thread here >>6506
  4.  
  5. C# VQC generator - ''pastebin.''com/XFtcAcrz
  6. Java VQC generator - ''pastebin.''com/2MPYrJVe
  7. Python VQC generator - ''pastebin.''com/NZkjtnZL
  8.  
  9.  
  10. ==Glossary==
  11. ''Look-up''
  12. A pattern used to calculate the factors of c, like a value look-up table.
  13.  
  14. ''Column''
  15. All cells for a given e
  16.  
  17. ''Row''
  18. All cells for a given n
  19.  
  20. ''Cell''
  21. All entries for a given e,n (not to be confused with an entry itself.)
  22.  
  23. ''Entry; record; element''
  24. A set of variables corresponding to a factorization for a given c. The legend to read entries is {e:n:d:x:a:b} (e, n, t) = c
  25. Example: {1:5:12:7:5:29} (1, 5, 4) = 145
  26.  
  27. ''ab record; nontrivial factorization''
  28. The element that contains the factorization of c that is not 1*c, hence, nontrivial.
  29.  
  30. ''1c record; trivial factorization''
  31. The element generated from setting a=1 and b=c
  32.  
  33. ''Mirror element''
  34. The element in -f corresponding to an element in e, in the context of a given c.
  35.  
  36.  
  37. '''Variables'''
  38. a and b are, to reiterate, the factors of c. a is the smaller factor of c, and b is the larger one.
  39. d is the integer square root of c.
  40. e is the remainder of taking the integer square root of c. Unless c is a perfect square, a remainder will be left over.
  41. i is the root of the large square. It is equal to (d+n).
  42. j is the root of the small square. it is equal to (x+n).
  43. n is what you add to d to be exactly halfway between a and b, and it is the root of the large square, so it takes you from d to the large square.
  44. x is what you add to a to make d. When added to n it makes the root of the small square.
  45. f is what you add to c to make a square. (e is what you subtract from c to make the square below it, f adds to make the square above c.)
  46. t is the third coordinate in the VQC, it is a function of x.
  47. q is a product created by multiplying successive primes until the product is above d.
  48. u is the triangle base of (x+n)^2. 8 times the triangle number of u plus one is (x+n)^2 for c with odd x+n.
  49.  
  50. ab = c
  51. dd + e = c
  52. (d + n)(d + n)-(x + n)(x + n) = c
  53. a + 2x + 2n = b
  54. a = d - x
  55. d = a + x
  56. d = floor_sqrt(c)
  57. e = c - (dd)
  58. b = c / a
  59. n = ((a + b) / 2) - d
  60. d + n = i
  61. x = d - a
  62. x = (floor_sqrt(( (d+n)*(d+n) - c))) - n
  63. x + n = j
  64. j^2 = 8*T(u) + 1
  65. f = e - 2d + 1
  66. u = (x+n) / 2
  67. if (e is even) t = (x + 2) / 2
  68. if (e is odd) t = (x + 1) / 2
  69.  
  70.  
  71. '''Past threads'''
  72.  
  73. RSA #0 - ''archive.''fo/XmD7P
  74. RSA #1 - ''archive.''fo/RgVko
  75. RSA #2 - ''archive.''fo/fyzAu
  76. RSA #3 - ''archive.''fo/uEgOb
  77. RSA #4 - ''archive.''fo/eihrQ
  78. RSA #5 - ''archive.''fo/Lr9fP
  79. RSA #6 - ''archive.''fo/ykKYN
  80. RSA #7 - ''archive.''fo/v3aKD
  81. RSA #8 - ''archive.''fo/geYFp
  82. RSA #9 - ''archive.''fo/jog81
  83. RSA #10 - ''archive.''fo/xYpoQ
  84. RSA #11 - ''archive.''fo/ccZXU
  85. RSA #12 - ''archive.''fo/VqFge
  86. RSA #13 - ''archive.''fo/Fblcs
  87. RSA #14 - ''archive.''fo/HfxnM
  88. RSA #15 - ''archive.''vn/59GwR
  89. RSA #16 - ''archive.''vn/F49fw
  90. RSA #17 - ''archive.''vn/u2Tu6
  91. RSA #18 - ''archive.''is/FDVP9
Advertisement
Add Comment
Please, Sign In to add comment