[ / / / / / / / / / / / / / ] [ dir / random / 93 / biohzrd / hkacade / hkpnd / tct / utd / uy / yebalnia ]

/vqc/ - Virtual Quantum Computer

Name
Email
Subject
REC
STOP
Comment *
File
Password (Randomized for file and post deletion; you may also set your own.)
Archive
* = required field[▶Show post options & limits]
Confused? See the FAQ.
Embed
(replaces files and can be used instead)
Oekaki
Show oekaki applet
(replaces files and can be used instead)
Options

Allowed file types:jpg, jpeg, gif, png, webp,webm, mp4, mov, swf, pdf
Max filesize is16 MB.
Max image dimensions are15000 x15000.
You may upload5 per post.


File: 817cf4fd1dbf39b⋯.jpg (710.18 KB,2016x1512,4:3,calculating-F.jpg)

File: 8d8c74794f264a9⋯.jpg (717.32 KB,2016x1512,4:3,swapping-n-and-a.jpg)

File: 093fe5bc9cd55b6⋯.jpg (693.82 KB,2016x1512,4:3,(((Teach))).jpg)

File: d3d1955cc021824⋯.png (124.6 KB,1641x1646,1641:1646,quick-rundown.png)

a2017c No.848 [Last50 Posts]

Our task is simple. We are going to completely break the entire RSA cryptosystem!

And how are we going to do that?! With the VQC! Quick rundown to follow.

The main mathematical task that must be achieved to break RSA is to be able to factorize any integer instantly. The VQC is a promising way to do that.

What is the VQC?

The virtual quantum computer (VQC) is a grid made of infinite yet constructable sets that follow a known pattern. Like a quantum spreadsheet.

The grid is the superposition. The collapse of that superposition will be two input parameters, d and e which can be calculated easily for all integers, c, where c 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 calculation instead of searching is possible.

Legend

The map's legend is {e:n:d:x:a:b}, where d is the result of removing the largest square from c AKA the square root,

e is the remainder,

n is what you add to d to be exactly halfway between a and b,

and x is what you add to a to make d.

c is any number that is the difference of two squares, so odd numbers are included.

n*a and n*b for any c can be found n places apart in the cell at (e,1).

Rules of the grid: global rules

Each cell of the grid (e,n) has infinite elements or ZERO elements.

Each cell with one value has infinite elements, since every element can make a new one.

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.

The t variable is what will allow you to walk across these infinite elements.

If a grid cell has elements, all elements are constructable from a finite set of root elements.

The grid is indexed using e, n, and t, where e is the rows, n is the columns, and t is the specific element in the cell-group.

Thus, only three variables are required to identify an element: e, n and t.

All products of odd numbers and all products of pairs of even numbers are the difference of two squares.

The x-intercept of the line that goes through the point containing the factors of c is (a + 1).

(1, 1) - the key

The values of a and b at 1,1 are related to the length of the longest side in right angled triangles.

The values here can be used to create the entire grid.

The values here determine the values of the rows to the left and right, which determine the values of the whole column.

Columns

Each cell at n=1 contains the roots of products in the column.

If c is a prime number, it will appear in one column exactly once.

If c is the product of two prime numbers that do not equal eachother, c will appear in two cells of one column.

All products (integers) c that are the sum of two squares appear (only) in columns where e=0,1,4,9,16,25…

All factors in a column are factors of the elements of the first cell in their column.

All Fermat primes (except) 3 appear in column one.

(e, 1)

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).

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).

Rows

(1, n)

The cells in row one where n=1 have a relationship with the cells 2n to the right and 2n to the left.

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

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.

Every single factor of any value of a in the first row will be referred to as s.

Want an even better quick rundown? Read VQC's introduction.

>>19

Useful Equations and Notation

ab = c

dd + e = c

(d + n)(d + n)-(x + n)(x + n) = c

a + 2x + 2n = b

a = d - x

d = a + x

d = floor_sqrt(c)

e = c - (dd)

b = c / a

n = the difference between the square root d and the larger of the two squares

n = ((a + b) / 2) - d

d + n = number that is exactly halfway between a and b

d + n = i

x = d - a

x = (floor_sqrt(( (d+n)*(d+n) - c))) - n

x + n = j

f = e - 2d + 1

t = the variable that lets you traverse the infinite elements in for a given (e, n) that has values.

if (e is even) t = (x + 2) / 2

if (e is odd) t = (x + 1) / 2

____________________________
Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

a2017c No.849

CodePost Guide

Because of the tendency for post links to disappear I will now be using Pastebin.

C#

BigInteger Square Root: pastebin.com/rz1SdACZ

Create Bitmap in: pastebin.com/hMTtJF6E

Generate Bitmap within original code: pastebin.com/JUdtehb4

Generate the large square for e and t: pastebin.com/nbjs2kz4

Original VQC code: pastebin.com/XFtcAcrz

Unity Script: pastebin.com/QgAXLQj3

Unity Script 2: pastebin.com/Y38nVWgT

Java

Create a Bitmap using the VQC Generator: pastebin.com/Dgu9aP1h

VQCGenerator: pastebin.com/VMRnkXFP

Traverse the VQC cells in real-time: anonfile.com/W44cofd6b6/VQCGUI.7z

NodeJS

BigInteger Library and Sqrt: pastebin.com/y8AXtFFr

Python

Create the VQC: pastebin.com/NZkjtnZL

3D VQC: pastebin.com/vdf8SpYt

3D VQC (v2): pastebin.com/wZM5Thzu

Generate genesis cell: pastebin.com/GKzcCpMF

''Generate positive AND negative genesis cells: pastebin.com/9ixjRyxt

Get A and B from C and N example: pastebin.com/s0SZ9BNF

VQC + t: pastebin.com/Lgufk0db

Rust

Check if a number is prime: huonw.github.io/primal/primal/fn.is_prime.html

Create Bitmap using the VQC Generator: play.rust-lang.org/?gist=c2446efeec452fe14e1ddd0d237f4173&version=stable

Create Bitmap using the VQC Generator [V2]: pastebin.com/zGSusyz5

Additional VQC code: play.rust-lang.org/?gist=50def916ad48400bc5d638fbf119ae85&version=stable

Generate the VQC: play.rust-lang.org/?gist=6b6beb372b6b931f1abd30642a35a80c&version=stable

Previous Threads

RSA #0, or the VQC thread: archive.fo/XmD7P

RSA #1: archive.fo/RgVko

RSA #2: archive.fo/fyzAu

RSA #3: archive.fo/uEgOb

RSA #4 (not finished, but inactive): >>>/cbts/94250

RSA General (#5): >>7

Videos and Links

I've added some videos to show the exact details and equations that we would use to hack RSA once we find the solution (and some introductions to ECC), but we have to finish this before we can get to any of that.

Integer Factorization of any arbitrary integer — Part One

youtube.com/watch?v=9FeROMe0KBU

The RSA Encryption Algorithm (1 of 2: Computing an Example) (Very Simple)

youtube.com/watch?v=4zahvcJ9glg

Encryption and HUGE numbers - Numberphile

youtube.com/watch?v=M7kEpw1tn50

Public Key Cryptography: RSA Encryption Algorithm

youtube.com/watch?v=wXB-V_Keiu8

RSA-129 - Numberphile

youtube.com/watch?v=YQw124CtvO0

Elliptic Curve Cryptography Overview

youtube.com/watch?v=dCvB-mhkT0w

A (relatively easy to understand) primer on elliptic curve cryptography

arstechnica.com/information-technology/2013/10/a-relatively-easy-to-understand-primer-on-elliptic-curve-cryptography/2/

Elliptic Curve Cryptography: a gentle introduction

andrea.corbellini.name/2015/05/17/elliptic-curve-cryptography-a-gentle-introduction/

Elliptic Curve Point Addition

youtube.com/watch?v=XmygBPb7DPM

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

99edb0 No.852

I stickied the thread. I thought it would be easier to navigate the board if the main objective was stickied. That might be a problem if we start focusing on multiple things, so if it seems like a bad idea anyone can feel free to whinge to me about it.

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

3f145c No.868

File: f2d75ed39af8e56⋯.png (143.92 KB,518x735,74:105,IMG_1611.PNG)

Thanks Baker! This bread is delicious. Here's the customary blessing for our new loaf.

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

945313 No.879

>>877

Continuing discussion from yesterday.

I've tried a number of combinations to link the various (0,n) records.

Following is the closest I've come to a workable path which seems to arrive at the desired a prime value.

((1xcc).x - (aaxbb).x) / ((1xcc).x - (axcb).x)) - 1 == (axb).a

The theory being, we can figure out how to walk backwards from the (1xcc) record, or really figure out the relationship between the various x values.

—————————

15=3x5

1 x c *=> (6,5,2) = {6:5:3:2:1:15} = 15;

a x b **=> (6,1,1) = {6:1:3:0:3:5} = 15;

c x c => (0,0,1) = {0:0:15:0:15:15} = 225;

aa x bb *=> (0,2,4) = {0:2:15:6:9:25} = 225;

b x ca => (0,10,6) = {0:10:15:10:5:45} = 225;

a x cb => (0,24,7) = {0:24:15:12:3:75} = 225;

1 x cc *=> (0,98,8) = {0:98:15:14:1:225} = 225;

((1xcc).x - (aaxbb).x) / ((1xcc).x - (axcb).x)) - 1 == (axb).a

((14-6)/(14-12)) - 1 == 3 = 3; (a matches)

—————————

65=5x13

1 x c *=> (1,25,4) = {1:25:8:7:1:65} = 65;

a x b **=> (1,1,2) = {1:1:8:3:5:13} = 65;

c x c => (0,0,1) = {0:0:65:0:65:65} = 4225;

aa x bb *=> (0,32,21) = {0:32:65:40:25:169} = 4225;

b x ca => (0,104,27) = {0:104:65:52:13:325} = 4225;

a x cb => (0,360,31) = {0:360:65:60:5:845} = 4225;

1 x cc *=> (0,2048,33) = {0:2048:65:64:1:4225} = 4225;

((1xcc).x - (aaxbb).x) / ((1xcc).x - (axcb).x)) - 1 == (axb).a

((64-40)/(64-60)) - 1 == 5 = 5; (a matches)

—————————

145=5x29

1 x c *=> (1,61,6) = {1:61:12:11:1:145} = 145;

a x b **=> (1,5,4) = {1:5:12:7:5:29} = 145;

c x c => (0,0,1) = {0:0:145:0:145:145} = 21025;

aa x bb *=> (0,288,61) = {0:288:145:120:25:841} = 21025;

b x ca => (0,232,59) = {0:232:145:116:29:725} = 21025;

a x cb => (0,1960,71) = {0:1960:145:140:5:4205} = 21025;

1 x cc *=> (0,10368,73) = {0:10368:145:144:1:21025} = 21025;

((1xcc).x - (aaxbb).x) / ((1xcc).x - (axcb).x)) - 1 == (axb).a

((144-120)/(144-140)) - 1 == 5 = 5; (a matches)

—————————

785=5x157

1 x c *=> (1,365,14) = {1:365:28:27:1:785} = 785;

a x b **=> (1,53,12) = {1:53:28:23:5:157} = 785;

c x c => (0,0,1) = {0:0:785:0:785:785} = 616225;

aa x bb *=> (0,11552,381) = {0:11552:785:760:25:24649} = 616225;

b x ca => (0,1256,315) = {0:1256:785:628:157:3925} = 616225;

a x cb => (0,60840,391) = {0:60840:785:780:5:123245} = 616225;

1 x cc *=> (0,307328,393) = {0:307328:785:784:1:616225} = 616225;

((1xcc).x - (aaxbb).x) / ((1xcc).x - (axcb).x)) - 1 == (axb).a

((784-760)/(784-780)) - 1 == 5 = 5; (a matches)

—————————

901=17x53

1 x c *=> (1,421,15) = {1:421:30:29:1:901} = 901;

a x b **=> (1,5,7) = {1:5:30:13:17:53} = 901;

c x c => (0,0,1) = {0:0:901:0:901:901} = 811801;

aa x bb *=> (0,648,307) = {0:648:901:612:289:2809} = 811801;

b x ca => (0,6784,425) = {0:6784:901:848:53:15317} = 811801;

a x cb => (0,22984,443) = {0:22984:901:884:17:47753} = 811801;

1 x cc *=> (0,405000,451) = {0:405000:901:900:1:811801} = 811801;

((1xcc).x - (aaxbb).x) / ((1xcc).x - (axcb).x)) - 1 == (axb).a

((900-612)/(900-884)) - 1 == 17 = 17; (a matches)

—————————

6107=31x197

1 x c *=> (23,2976,39) = {23:2976:78:77:1:6107} = 6107;

a x b **=> (23,36,24) = {23:36:78:47:31:197} = 6107;

c x c => (0,0,1) = {0:0:6107:0:6107:6107} = 37295449;

aa x bb *=> (0,13778,2574) = {0:13778:6107:5146:961:38809} = 37295449;

b x ca => (0,88650,2956) = {0:88650:6107:5910:197:189317} = 37295449;

a x cb => (0,595448,3039) = {0:595448:6107:6076:31:1203079} = 37295449;

1 x cc *=> (0,18641618,3054) = {0:18641618:6107:6106:1:37295449} = 37295449;

((1xcc).x - (aaxbb).x) / ((1xcc).x - (axcb).x)) - 1 == (axb).a

((6106-5146)/(6106-6076)) - 1 == 31 = 31; (a matches)

—————————

20413=137x149

1 x c *=> (249,10065,71) = {249:10065:142:141:1:20413} = 20413;

a x b **=> (249,1,3) = {249:1:142:5:137:149} = 20413;

c x c => (0,0,1) = {0:0:20413:0:20413:20413} = 416690569;

aa x bb *=> (0,72,823) = {0:72:20413:1644:18769:22201} = 416690569;

b x ca => (0,1377952,10133) = {0:1377952:20413:20264:149:2796581} = 416690569;

a x cb => (0,1500424,10139) = {0:1500424:20413:20276:137:3041537} = 416690569;

1 x cc *=> (0,208324872,10207) = {0:208324872:20413:20412:1:416690569} = 416690569;

((1xcc).x - (aaxbb).x) / ((1xcc).x - (axcb).x)) - 1 == (axb).a

((20412-1644)/(20412-20276)) - 1 == 137 = 137; (a matches)

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

945313 No.882

>>879

It gets even simpler.

The solution is here.

(1xcc).x - (aaxbb).x + 1 == (aaxbb).a

Difference in x between the c^2 record and the a^2, b^2 record + 1 == the prime solution a^2.

Who wants to figure out x ?!?!?!?

===

785=5x157

1 x c *=> (1,365,14) = {1:365:28:27:1:785} = 785;

a x b **=> (1,53,12) = {1:53:28:23:5:157} = 785;

c x c => (0,0,1) = {0:0:785:0:785:785} = 616225;

aa x bb *=> (0,11552,381) = {0:11552:785:760:25:24649} = 616225;

b x ca => (0,1256,315) = {0:1256:785:628:157:3925} = 616225;

a x cb => (0,60840,391) = {0:60840:785:780:5:123245} = 616225;

1 x cc *=> (0,307328,393) = {0:307328:785:784:1:616225} = 616225;

(1xcc).x - (aaxbb).x + 1 == (aaxbb).a

784 - 760 + 1 = 25.

(1xcc).x - (axcb).x + 1 == (axcb).a

784 - 780 + 1 = 5.

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

945313 No.883

>>882

ok. appologies. this is exciting.

Simplified formula, and removed unnecessary calculations:

sqrt( (1xcc).x - (aaxbb).x + 1 ) == (axb).a

We just need the formula for the x value in (aa x bb).

—————————

65=5x13

1 x c *=> (1,25,4) = {1:25:8:7:1:65} = 65;

a x b **=> (1,1,2) = {1:1:8:3:5:13} = 65;

aa x bb *=> (0,32,21) = {0:32:65:40:25:169} = 4225;

1 x cc *=> (0,2048,33) = {0:2048:65:64:1:4225} = 4225;

sqrt( (1xcc).x - (aaxbb).x + 1 ) == (axb).a

sqrt( 64 - 40 + 1 ) = 5. (a matches!!!!)

—————————

145=5x29

1 x c *=> (1,61,6) = {1:61:12:11:1:145} = 145;

a x b **=> (1,5,4) = {1:5:12:7:5:29} = 145;

aa x bb *=> (0,288,61) = {0:288:145:120:25:841} = 21025;

1 x cc *=> (0,10368,73) = {0:10368:145:144:1:21025} = 21025;

sqrt( (1xcc).x - (aaxbb).x + 1 ) == (axb).a

sqrt( 144 - 120 + 1 ) = 5. (a matches!!!!)

—————————

785=5x157

1 x c *=> (1,365,14) = {1:365:28:27:1:785} = 785;

a x b **=> (1,53,12) = {1:53:28:23:5:157} = 785;

aa x bb *=> (0,11552,381) = {0:11552:785:760:25:24649} = 616225;

1 x cc *=> (0,307328,393) = {0:307328:785:784:1:616225} = 616225;

sqrt( (1xcc).x - (aaxbb).x + 1 ) == (axb).a

sqrt( 784 - 760 + 1 ) = 5. (a matches!!!!)

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

01b9f7 No.884

>>883

Doesn't d=c=ab=a^2-x for the record {0,n,c,x,a^2,b^2}

So x=a^2-ab

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

945313 No.885

>>884

d=c yes.

solution can be simplified yet again to

sqrt( c - (aaxbb).x )

not following you on the formula for x.

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

01b9f7 No.886

Sorry

ab=a^2+x

So x=ab-a^2

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

945313 No.887

>>886

if we knew a and b, I think the formula would be x = sqrt(ab - a^2).

We don't have the ab starting position.

The solution depends on figuring out the correct x value for (aa x bb) from only (1xcc).

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

a92e07 No.888

>>887

I'm trying to understand now. Whats the latest equation to test?

sqrt( c - (aaxbb).x ) == (axb).a?

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

a92e07 No.889

>>888

I fear you may be proving d-x=a?

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

01b9f7 No.890

>>885

For record {0,N,D=c=a*b,X,a^2,b^2}

ab=a^2+x so X=ab-a^2

a and b being from record

{e,n,d,x,a,b}

Where capital represent C^2 record and small letters represent the a*b=c record

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

945313 No.891

>>889

anything is possible. but I'm using d, x, and a from completely different records.

>>890

sorry. I'm not seeing it.

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

01b9f7 No.892

>>891

For a and b primes

and a*b=c

there is a record for C =c^2

where A=a^2 and B=b^2

Using cap for C^2 record

{0,N,D=c=ab,X,A=a^2,B=b^2}

So D=c=a*b=A+X

a*b=a^2+X

X=a*b-a^2

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

945313 No.893

>>892

don't we want to figure out x going the other way?

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

01b9f7 No.894

For a and b primes

a*b=c

There is a special record

a^2*b^2=c^2

where you can solve for X of c^2 record in terms of a and b

D=c=ab

D=A+X

D=c=ab=a^2 +X

X=ab-a^2

a and b being from the a*b=c record

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

01b9f7 No.895

>>893

the goal is to figure out a and b

We got rid of a veriable

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

01b9f7 No.896

You can do N in terms of a and b also.

X=ab-a^2=a(b-a)

X^2=2AN=a^2*2N=a^2*(b-a)^2

N=((b-a)^2)/2

just for the a^2*b^2=c^2 record

we got rid of X and N

so now

{0,N=((b-a)^2)/2,D=c,X=a*b-a^2,a^2,b^2}

So c^2 is fully described by a and b eliminating e,n,d,x variables

seems like progress

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

a2017c No.900

>>894

Interesting! So you can find the c^2 record and put that in some equations from the factorization we want?

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

d1329c No.901

File: 0a73ed6d7634785⋯.png (263.08 KB,510x255,2:1,Ponies United.png)

Somebody's gotta do it! Why not me? The ratio of ponies to math is very low at the moment ;)

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

01b9f7 No.902

It gets real hairy but you can factor the c^2 record entirely in a and b

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

a2017c No.903

>>902

Which a and b? I suggest using _ to denote which one it is. Such as a_1 and b_2

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

01b9f7 No.904

The a and b we are trying to solve.So I use caps for c^2 record. A of the c^2 record is a^2. B of c^2 record is b^2. a and b is the goal doesn't make sense to change that.

>>903

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

a2017c No.905

File: fa964e875cf4201⋯.png (141.9 KB,404x385,404:385,image.png)

>>904

A and B of c^2 record are a^2 and b^2?! That's crazy! Does it always apply?! I need to check this out.

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

01b9f7 No.906

There are 5 factorizations of c^2 if a and b are prime. One is a^2*b^2

>>905

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

d1329c No.907

Good evening Anons! Re-reading VQC's crumbs and looking for patterns over here. Nothing to report yet, working on the factors of a in row one.

>>905

Baker, nice to see ya.

>>883

PMA, great work as always.

>>888

Checked!! Teach got the trip 7's last thread too. Hello Teach, nice digits!

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

01b9f7 No.910

Wow you guys seem to think I'm off my rocker! I just tested my formula for A and N for {0,2,35,10,25,49} based on 5*7=35 squared and for {0,8,21,12,9,49} based on 3*7=21 squared and for {0,98,51,42,9,289} based on 3*17=51 squared and it worked every time

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

a2017c No.911

>>910

Elaborate?

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

01b9f7 No.912

X = a*b-a^2

N = ((b-a)^2)/2

where a*b=c for record a^2*b^2=c^2

so for {0,8,21,12,9,49} based on 3*7=21 squared.

X=3*7-3*3=12

N=(7-3)*(7-3)/2=8

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

a2017c No.913

>>912

What's the next step?

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

01b9f7 No.914

>>913

By substitution for a^2*b^2=c^2

e is 0

d=c

N=((b-a)^2)/2

X= b*a - a^2

So you can describe C^2 using only the original a and b. It may be possible to substitute and solve for a or b but it kind of hairy. I'm still working with the equations. I'm just a GO player with little math training. I'd love some new eyes. This has been a blast watching and learning.

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

a2017c No.915

>>914

Is it easier to find a factor of c^2 than c, given c is semi-prime?

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

01b9f7 No.916

>>915

There are more factors of c^2 than c

but the a^2*b^2=c^2 factoring is obviously special

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

00d24c No.917

>>916

I wouldn't say special, it's to be expected. The problem is going from the A=1, B=C cell, to the factor cells. Dealing with the C^2 cell, this problem is ^2 as hard. We know the D=C, A=C,B=C cell, or the D=C, A=1, B=C^2 cell, but finding the factors is again, ^2 as hard.

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

01b9f7 No.918

>>917

It may be dead end. But eliminating 4 variables seems like progress and maybe there is more that can be done. Potentially even solving for a in terms of b

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

a2017c No.919

>>917

I disagree, given that a c^2 cell has many more factors.

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

00d24c No.920

>>919

It has more factors, but they're ^2 apart, with no way to find them.

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

a2017c No.921

>>920

Good point.

>>916

Have you looked into settings d^2 as c?

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

00d24c No.922

We can step through factors by X–, A++, but again this is useless when C is the size of an RSA number. We need a magic way to predict N, or predict X.

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

01b9f7 No.923

>>921

>>920

>>919

It was VCQ who suggested the a^2*b^2=c^2

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

ac6203 No.924

>>888

>>907

Bit of an update here.

You can switch from an (e,n) record to (e,1) by setting n = 1 and a = na.

There is a shortcut to get to the (1xcc) a=na record for any c.

e = 0

n = 1

t = (c+1)/2.

Example below shows shortcut to (1 x cc(na)) for c =145.

The (0,1) space has known patterns.

Trying to figure out a jump to (aa x bb).

—————————

145=5x29

1 x c *=> (1,61,6) = {1:61:12:11:1:145} = 145;

a x b **=> (1,5,4) = {1:5:12:7:5:29} = 145;

aa x bb *=> (0,288,61) = {0:288:145:120:25:841} = 21025;

1 x cc *=> (0,10368,73) = {0:10368:145:144:1:21025} = 21025;

1 x cc(na) development where a=na at (0,1)

1 x cc(na) confirmed at (e,n,t) from t=(c+1)/2: (0,1,73)

1 x cc(na) *=> (0,1,73) = {0:1:10512:144:10368:10658} = 110502144;

a root = sqrt(a/2) = 72

d root = 2*(t-1)*(t) = 2*72*73

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

01b9f7 No.925

>>924

Creating an e,1 from e,n is huge.

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

ac6203 No.926

>>925

not (e,1). (0,1).

From that, you can switch a=na again and get to the (1xcc) record. I think these are like pointers.

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

00d24c No.927

>>926

This means the reverse is true? You can create an E,N from E,1? THAT'S huge.

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

a2017c No.928

>>926

I found your notation hard to understand initially. * should always be used for multiplication.

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

01b9f7 No.929

>>924

You said

"You can switch from an (e,n) record to (e,1) by setting n = 1 and a = na."

Does it only work for e=0 still huge

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

ac6203 No.931

>>927

I have some sample code somewhere and examples posted in these threads that showing jump from (e,n) to (e,1) and back. Will try and cleanup when we get to the end.

This is a shortcut directly to (0,1,t). Pretty powerful stuff.

>>928

my bad…

>>929

>huge

would be finding a way to get to (aa x bb)!!!

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

00d24c No.932

File: 31c26fb804e5ab5⋯.jpg (263.49 KB,1680x1050,8:5,sonofabitch.jpg)

Here's a view of (E,N,X) only showing the first cell in every cell. Honestly, I didn't expect this, and it's annoying.

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

00d24c No.933

You can't predict X with a given E and N.

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

5ba563 No.934

Hi fags, I'm the guy in previous threads concerned not about cool stuff, but the fundamental efficiency of reaching the correct cells. So with that in mind, I've been looking at {0:n:d:x:1:c^2}, because in a factoring situation, we don't have a, b, or n, but we do have c and c^2.

There seems to be an efficiently discoverable pattern in {0:n:d:x:1:c^2}. Let's take a == 3, b == 3, c == 9 simply because it appears on the downloadable spreadsheets and .png files for The End. c^2 == 81.

Now let's look through column 0 for "1:81}", and you'll find {0:32:9:8:1:81}. This can be quickly constructed via the general pattern {0:n:c:c - 1:1:c^2}. You can solve for n = ((a + b) / 2) - d. For this case:

n = ((81 + 1) / 2) - 9

n = (82 / 2) - 9

n = 41 - 9

n = 32

So, we can immediately construct a starting point, here {0:32:9:8:1:81}. Now search column 0 for ":81}". You will find:

{0:2:63:14:49:81}

{0:8:45:20:25:81}

{0:18:27:18:9:81}

{0:32:9:8:1:81}

[cont]

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

5ba563 No.935

>>934

Now let's look at the following values of n in increasing order: 2, 8, 18, 32. Let's start by looking at the differences between elements:

8 - 2 = 6

18 - 8 = 10

32 - 18 = 14

Or, put differently,

6 = 2 + 4

10 = 2 + 4 + 4

14 = 2 + 4 + 4 + 4

Let's just look at the 4's:

4

44

444

This is called a Triangular number (https://en.wikipedia.org/wiki/Triangular_number). If these were all ones, the formula for summing them (where h is height of tree, here 3, and where s is the sum) is:

s = (h(h + 1)) / 2

So for:

1

11

111

… we would have:

s = (3(4)) / 2

s = 12 / 2

s = 6

Which you can easily verify.

[cont]

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

5ba563 No.936

>>935

The formula for each element being 4 and not 1 would be simply 4 times the previous equation:

s = 4((h(h + 1)) / 2)

So for:

4

44

444

… we would have:

s = 4((3(4)) / 2)

s = 4(12 / 2)

s = 4(6)

s = 24

So let's go back to the sequence above:

6 = 2 + 4

10 = 2 + 4 + 4

14 = 2 + 4 + 4 + 4

Here, h = 3. We can sum up all of the 4's with the above equation. All we need to add in are the 2's, and there are exactly h 2's. So:

4((h(h + 1)) / 2) + 2h

Recall the original sequence 2, 8, 18, 32. Since it starts at 2 and not 0, we have to add 2 to the final result:

4((h(h + 1)) / 2) + 2h + 2

Let's now denote the first element 2 as element 0 and 32 as element 3, or h = 3.

s = 4((3(4)) / 2) + 2(3) + 2

s = 4(12 / 2) + 6 + 2

s = 4(6) + 8

s = 24 + 8

s = 32

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

5ba563 No.937

>>936

Since the sum 's' is equal to the n field in {0:32:9:8:1:81}, n = 32, and in general, we can use n above where we used s. If we simplify:

n = 4((h(h + 1)) / 2) + 2h + 2

n = 2h^2 + 4h + 2

0 = 2h^2 + 4h + (2 - n)

We can apply the quadratic formula:

(-b [+-] sqrt(b^2 - 4ac)) / 2a

a = 2 (the constant in 2h^2)

b = 4 (the constant in 4h)

c = (2 - n) (the plain numbers)

(-4 [+-] sqrt(4^2 - 4(2)(2 - n))) / 2(2)

(-4 [+-] sqrt(16 - 8(2 - n))) / 4

To work the example above with n = 32, we can find "where we are" in the series in {0:n:d:x:1:c^2}. So for {0:32:9:8:1:81}, where n = 32:

(-4 [+-] sqrt(16 - 8(2 - 32))) / 4

(-4 [+-] sqrt(16 - 8(-30))) / 4

(-4 [+-] sqrt(16 - (-240))) / 4

(-4 [+-] sqrt(16 + 240)) / 4

(-4 [+-] sqrt(256)) / 4

(-4 [+-] 16)

(-4 + 16) / 4 [choosing +]

12 / 4

3

So at {0:32:9:8:1:81}, we know that we're at index 3 (zero based), or if you want to talk -th numbers, add 1, so we're at the 4th.

Interesting, right?

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

00d24c No.938

>>937

The interesting bit is the in the cells you listed, A is a perfect square, and N is a perfect square * 2. Maybe because you used c=81?

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

5ba563 No.939

>>938

>A is a perfect square

This is part of the pattern

>N is a perfect square * 2

This is random luck and not part of a pattern

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

d1329c No.940

>>931

>>924

Ding Ding Ding! Nice work PMA! VQC hinted at this ability to move c into row 1. I'm following all your examples, reading your output and explanations, and I think I get it. Can you give us the quick rundown on the ideas and patterns you're seeing, and how they give us the ability to move from any (e,n) to (0,1)?

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

a92e07 No.941

>>924

This looks pretty good.

Can you run through another example? I think I'm following, but i'm not sure.

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

ac6203 No.942

>>940

currently I'm playing with the idea of moving any (e,n,t) to (0,1,t). Seeing what relationships are there.

>>924

in my example above, I don't think it's coincidence that the c^2 record is at (1,10368,73) and it's corresponding a=na record is at (0,1,73).

I'm trying to find a pattern that can bridge the gap between the (c^2).x and (aa x bb).x

Or even move directly to the (ab) solution.

It looks like all the heavy lifting has been done by the grid.

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

a92e07 No.943

>>942

>in my example above, I don't think it's coincidence that the c^2 record is at (1,10368,73) and it's corresponding a=na record is at (0,1,73).

I agree. Very interesting.

From (0,1) we should easily be able to find a, right? Since if p is a factor of a at t, p will also be a factor at p+t, 2p+t, 3p+t, and p+1-t, 2p+1-t, 3p+1-t, etc.

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

13b8cc No.944

File: c6510d3831a3f27⋯.png (40.56 KB,289x401,289:401,Frog Wizard.PNG)

>>943

I have returned to thrill and amaze with dank memes… as dank as I can make them anyway.

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

a2017c No.945

>>944

Checked. For some reason I keep finding myself put in the position of being required to bake things. Over on /pol/ the mods repeatedly censored people who wanted to discuss the curious case of Sholom Rubashkin and why he deserved a commutation. Given they are constantly being censored, I need to make a thread in a non-comped board.

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

a92e07 No.946

>>942

sqrt(a/2) in the (0,1, t for ccna) row is always equal to the 1xc row x+n.

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

ac6203 No.947

>>946

confirmed.

my latest test case for c=145. Looking for a pattern to calculate the x at (aa x bb).

or any other suggestions!

—————————

145=5x29

1 x c *=> (1,61,6) = {1:61:12:11:1:145} = 145;

a x b **=> (1,5,4) = {1:5:12:7:5:29} = 145;

aa x bb *=> (0,288,61) = {0:288:145:120:25:841} = 21025;

1 x cc *=> (0,10368,73) = {0:10368:145:144:1:21025} = 21025;

(0,1) records to analyze

1 x c at (0,1,t) => (0,1,6) = {0:1:60:10:50:72} = 3600;

x=10

a root = sqrt(a/2) = 5 from 50

d root = 2*(t-1)*(t) = 2*5*6 = 60

a x b at (0,1,t) => (0,1,4) = {0:1:24:6:18:32} = 576;

x=6

a root = sqrt(a/2) = 3 from 18

d root = 2*(t-1)*(t) = 2*3*4 = 24

aa x bb at (0,1,t) => (0,1,61) = {0:1:7320:120:7200:7442} = 53582400;

x=120

a root = sqrt(a/2) = 60 from 7200

d root = 2*(t-1)*(t) = 2*60*61 = 7320

1 x cc at (0,1,t) => (0,1,73) = {0:1:10512:144:10368:10658} = 110502144;

x=144

a root = sqrt(a/2) = 72 from 10368

d root = 2*(t-1)*(t) = 2*72*73 = 10512

1 x cc (0,1,t) confirmed at (e,n,t) from t=(c+1)/2: (0,1,73)

1 x cc (0,1,t) sqrt(a/2) = 1 x c (x+n); 72 = 72

(1 x cc).x - (aa x bb).x = 144 - 120 = 24

sqrt( (1xcc).d - (aaxbb).x ) == (axb).a

sqrt( 145 - 120 ) = 5. (a matches!!!!)

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

13b8cc No.948

File: c22c76d054814f2⋯.png (721.9 KB,931x557,931:557,Frustration.PNG)

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

8a946c No.949

>>947

The x at (aa x bb) is equal to c-a^2, though that's kind of the same result you already have.

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

01b9f7 No.950

You guys must be close look at bitcoin price!

Below $13,000

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

a2017c No.951

>>950

Interesting, but cracking RSA doesn't crack Bitcoin. It's based on ECC. However, cracking RSA would make them lose a lot of confidence in crypto and compromise millions of passwords-Not that I care.

So, I don't expect Bitcoin to die when we reach the solution, but it will be a shitstorm.

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

01b9f7 No.952

>>951

Not knowledgeable but QVC thinks cracking RSA problem for bitcoin.

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

a2017c No.953

>>952

Yeah, it's a major problem given all communications secured by RSA are compromised. But it doesn't hurt the mathematical foundation of Bitcoin itself.

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

a92e07 No.954

>>951

I agree, bitcoin price reaction is unrelated.

I expect we're a month out from a true crash due to cracking ecc. If we're lucky.

I've been monitoring bitcoin for a while, there's always a dip at every major milestone, normally 25%, but this time I think people are getting scrared, its dropping closer to 33%.

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

13b8cc No.955

>>950

I have been watching this very close and No one has mentioned the vqc,. zero zip nada. I doubt people would be selling like crazy on some conspiracy theorists on 8ch… They SHOULD but normies wont understand. Could be a super smart lurker or team.

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

99edb0 No.959

Since nobody seems to pay attention to the meta thread, I have to bring this here. One particular tripfag keeps getting reported for being a "namefag shitposter" (it's not Topol). They aren't really posting anything that helps us, but we haven't discussed rules at all so I can't really use my own discretion. I don't want to be distracting, but if we don't discuss rules, I can't really delete anything without having the power to delete whatever I want. I don't want that and I know none of you do. If nobody wants to discuss rules, I'm not going to do anything about this particular person, so whoever keeps reporting them, suggest some rules and see what everyone thinks.

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

5ba563 No.964

>>959

Sorry to post this here, but these are my comprehensive suggestions: >>962

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

898cfe No.971

Oooooh I think I figured out how to find a and b for (e, n) for any given n for t=1.

That's devious VQC

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

5ec6d6 No.974

>>894

>>947

>X=ab-a^2 = c - a^2

You just used the other formula, anon mentioned earlier.

(aa x bb).x = c - a^2

a = sqrt(c - (aa x bb).x)

But I agree, we need to get to the (aa x bb) record, some way.

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

01b9f7 No.975

>>974

thanks

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

01b9f7 No.976

>>924

Is finding element t = (c^2+1)/2 a short cut? We can find n for any c for the c^2 record

{0, n, c, x, 1, c^2}

for e 0 x^2=2na

x=c^2-1

n=((c^2-1)^2)/2

Now create record in 0,1

using n=1 a =na

{0,1, sqrt(A*B), c^2-1, A=((c^2-1)^2)/2, B=c^2}

for any c=a*b prime

Now find the factors which have a pattern of repeating in this column

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

01b9f7 No.977

>>935

Thanks for show how to calculate a record

{0, n, t} for any t.

Even easier for {0, 1, t}

x=2t

d= triangular sum of h=t * 4

d = 4*(t(t+1)/2

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

01b9f7 No.978

Crazy stuff for record {0, 1, t}

If a number m has only prime factors

If t >=m then m is a factor of t{a} if t has those factors. t doesn't have to have duplicate factors. E.G. 225 for any t multiple of 15 and greater than 225 t{a} will be divisible by 225.

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

a2017c No.979

>>978

"A number only having prime factors" means it is semiprime. And what the hell is t{a}?

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

01b9f7 No.980

>>979

a of {0,1,t}

a number m will show up as a factor of a for {0,1,t}

if t >= m and has the same factors as m duplicate factors not necessary for t

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

f78bfc No.981

>>980

I agree, Anon! This is a feature of the catalog of values for var a VQC has mentioned. My focus is solving the generation of a values in row 1. Key issue is, starting from only c, how do we derive a? In row 1 (0,0) a = 2. For odd e, at t=1 a=(e+1)/2. For even e, at t=1 a=e/2. This gives us the starting seeds for all of row one and also allows us to derive x, t, b, and hopefully n as well.

Another issue we're dealing with is column 0 and how to use the grid to find products of c and c^2. Finding these patterns in conjunction with knowing how to generate the seeds of var a will be a big step forward! Seems like PMA, Teach, other anons, and yourself are working on this and making progress. I also think your idea about new factors only appearing from that point forward in the chain of a values is cool. I'll check it out, and thanks for your work!

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

18604d No.984

Lord Rothschild Vows To Destroy Bitcoin – Launches ‘FedCoin’

December 21, 2017

http:/ /yournewswire.com/rothschild-fedcoin-bitcoin/

Initial target identified!

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

a2017c No.985

>>984

Haha what? Is that a joke?

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

3a97e7 No.986

>>981

>>980

Typo, corrected. *In row 1 (0,1) a = 2*

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

18604d No.987

>>985

Just relaying news article - little motivation.

Isn't even real yet. MSM is hyping it though.

http:/ /www.zerohedge.com/news/2017-12-20/washington-post-propagandizes-again-says-fedcoin-will-be-bigger-bitcoin

U.S. Government Awards $7 Billion to Develop New Fedcoin

http:/ /moneywise411.com/tbo-awards-7-billion-to-develop-new-fedcoin/

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

a2017c No.988

>>987

What is this Jewing and why does my government have the authority to create a new cryptocurrency?

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

18604d No.989

File: 3cdce8e8915ff1a⋯.jpg (7.65 KB,250x250,1:1,bitcoin25ChristmasSpecial.jpg)

Bump back up in price during the day. Bet bunch of 'investors' are 'buying on the dip'.

A user message posted an hour ago on a private board:

Have to use bitcoin (or another crypto) to buy on 'binance' so tried to grab some bitcoin this AM when it dropped to 11,000, was rejected by coinbase with a message saying 'bitcoin purchases are temporary disabled'. Think I'll be changing sites..

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

a2017c No.990

>>989

(((Coinbase)))

(((Bitrex)))

It's like all the Jews these people mistakenly trusted unsurprisingly fucked them over.

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

18604d No.991

>>990

Go figure.

Can we create a Blockchain Markets & News thread so we don't cuck this up for those doing serious maths?

Litecoin Founder Cashes Out, Sells Entire Stake After 9,300% Rally

Dec 20, 2017 8:28 PM

http:/ /www.zerohedge.com/news/2017-12-20/litecoin-founder-cashes-out-sells-entire-stake-after-9300-rally

Charlie Lee, the creator of the world’s fifth-biggest cryptocurrency, Litecoin, announced shortly after midnight that he was cashing in his profits after a torrid, 9,300% rally in the past 12 months. In a post on reddit, the San Francisco-based software engineer who founded litecoin in 2013, said that he sold and donated all of his holdings over the past few days.

"Litecoin has been very good for me financially, so I am well off enough that I no longer need to tie my financial success to Litecoin’s success. For the first time in 6+ years, I no longer own a single LTC that’s not stored in a physical Litecoin" Lee said in the post.

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

01b9f7 No.992

>>986

I was confused

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

01b9f7 No.993

I'm afraid converting to c^2 record to a (0,1) record is a dead end because the factors show up only when they are a factor of t. When there is a remainder it changes and if i understand QVC they show up twice as frequently.

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

01b9f7 No.994

>>993

In an (e,1) record

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

a2017c No.996

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

945313 No.1012

anyone having any luck? going in circles.

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

5ec6d6 No.1013

>>1012

Nope, I guess VQC needs to drop by again. I bet he feels like a teacher explaining maths to a special needs kid.

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

a2017c No.1014

>>1013

I'll ask him. He's probably sent a crumb regarding where we should be going, he should just point to it.

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

cf8d48 No.1015

>>1012

Nope, being confined to a crappy netbook doesn't help either. Seriously considering buying a new laptop tomorrow just to use it for xmas…

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

a2017c No.1016

>>1015

Do you use Windows?

If you get Linux it will be many times faster and it will never get slower.

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

5f4624 No.1017

>>1012

>>1012

Hey PMA! Here's what I'm working on.

We are given c.

Find d and remainder e.

Using e to find starting value of a in (e,1).

In (0,1) e =2

For odd (e,1), t=1 we can calculate a var as (e+1)/2

Example: in column 3 (3,1,1) a=2

For even (e,1), t=1, a var = e/2

Example : in column 6 (6,1,1) a=3

So we can find a at t=1 starting from only c. I think so, please check my work, lads.

If true, we can now calculate x,t,b, and n for element one (t=1) in any column. Odd e and even e have different equations for t.

Knowing the pattern of how a and b drop and move as t increases in row 1, we can literally create a ladder to run t up as high as we need to to find a match for c???

VQC said all factors for a column exist in row one, the "One Row to rule them all," and if all factors exist there, then all potential c's exist there also.

So if we can ride the t elevator up to our c value, or maybe even multiple a and b parings that equal c, then maybe from that height we can look around the grid to find other locations where the answers are similar.

PMA, your method to move between (e,n) and row 1 would help us find other matching places in the grid record.

I know I've got more work to do on this, so please let me know if you find errors or have corrections. I've been feeling stuck a bit, but persistence and focus will win the day. Let's keep searching!

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

cf8d48 No.1018

File: ea1d21f09761b5a⋯.png (66.53 KB,1280x720,16:9,end_1513985308.png)

>>1016

No. Its not that crap as far as netbooks go either, and upgraded with 8GB RAM, but 1366x768 resolution sucks for this

Fear my awesome FPS (at least it still runs)

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

a2017c No.1019

>>1018

I always tell people to stop using "Plebdows" because Linux does exactly what I want and never gets slow.

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

cf8d48 No.1020

>>1019

Guess I have high standards. Only so much you can do with two 1.65GHz cores on any OS, but I imagine it would be unusable with Windows on it

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

cf8d48 No.1021

>>1017

The problem with running up the ladder is its still too slow for RSA numbers even if we skip over a lot of steps.

My thinking is the big_n hint which should be "simple to calculate" could be a maximum bound, hopefully not too much larger than n, and we could go backwards from there instead? Anyone figured out what big_n is supposed to be?

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

5f4624 No.1022

>>1012

>>1017

Another way to say it: if c has a remainder e, we know it's var a value at t=1 in row one. All factors of a and b, as well as product c are also contained in that column row. So we start at t=1 and build the ladder up to c, filling in all the elements on the way up. Thoughts, Anons?

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

5f4624 No.1023

>>1021

Not sure, maybe it's too slow? Certainly eliminates a whole lot of the possibilities. Maybe we need a way to quickly jump to higher t values? I like your idea, and agree that if we can get closer to c, the calcs will be much faster. A maximum bound based on how long the c value is in digits? Thinking out loud here.

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

945313 No.1024

File: 13cd8c6b7b7c5a0⋯.png (578.61 KB,3458x1367,3458:1367,c_145_wip.PNG)

>>1013

>>1017

>>1022

still struggling to find any relationships in the (0,1) space.

I have created records for (e,n) of c in (0,1) at the following variations of t just looking for patterns:

t = d

t = 2d

t = 2d + 1

t = x + n

There have been a few interesting connections between (0,1,c[d]), (0,1,cc[t]), and (0,1,c[t]), but they are so confusing I just can't believe there isn't a simple answer.

Also ran into problems walking the (0,1) tree using combinations of p.

Can't seem to find any combination that leads me back to an (a^2 b^2) record.

Attached is a pic of the output I'm looking at. I must be missing something very simple.

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

cf8d48 No.1025

>>1023

I tested a few variants of this earlier on the RSA100 example (since we have the whole solution for it and can also create row one) and found the increases really useless after getting up to around a values of ~20 digits or so. This was with jumping to next factors only, not every t value. But I didn't verify my code properly so I may have fucked up

>>1024

I envy your dedication. I have some half-finished code to just brute force generate every possible formula ever into an abstract syntax tree and compile that to code, and some basic ideas for verification against the grid. Feels a bit like cheating TBH, but hey. Just print a list of formulas with > 99% coverage for each symbol after.

Also considered throwing genetic programming at it, but then even if we get a solution, deciphering that program would be even harder than what we're already doing.

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

ac6203 No.1026

>>1025

The code is a bit sloppy, but the ability to create various records is sound, and every record is verified in the constructor.

So I know the values that I’m looking at are accurate.

The relationships are difficult to understand. And the number of records to bring together is a bit much.

I’m sticking around for the solution - it would be terribly frustrating otherwise.

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

a92e07 No.1027

>>1026

I'm still here and working too.

I'm going back through Chris's posts and trying to re-read all the information to see if we're missing anything.

I'll post what I find.

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

ac6203 No.1028

>>1027

Sounds good. I need some new avenues to explore.

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

cf8d48 No.1029

>>1026

I did check some of your generation code against the VQC code for some large grids with no problems. Haven't been able to work as much for the last few days just cause shitty netbook.

Mostly I just didn't verify my own implementations as much as I should cause now I doubt some of the tests I ran. Writing checks into the code is a good idea

The difficult relationships is why I'm at the stage of wanting to throw insane computing power at it and have it just tell me the good results :)

Side note, if you just bruteforced every possible formula, how would you check that against the grid, aside from matching every value in every record and counting results? I feel it needs some jump logic too based on the latest progress here.

Obviously we're sticking around till TheEnd :)

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

a92e07 No.1030

>>1028

One thing I'm obsessed with is the fact that x&n are 2 squares, as are (d+n) and (x+n).

There's some pattern either, x+n's or x's for 1xc and axb are always factors of each other.

There's more too it then that, but I think maybe the triangles made by the axb and the 1xc x+n squares may be similar.

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

a92e07 No.1031

>>1030

To continue that, VQC said:

>I thought from near the start in 2011 that it would feel good if "x" marked the spot.

I think factoring x, or 2x might be useful, so we recursively repeat that until row 1 or column 0.

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

a92e07 No.1032

>>1031

x^2 + e = 2an

and (d+n)^2 -(x+n)^2 I think are the algebraic keys to this theory.

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

a92e07 No.1033

x1 = x at 1 * c

xa = x at a * b

n1 = n at 1 * c

na = n at a * b

n1 - (x1^2 - xa^2) = aa * m

Where m is a odd number.

This implies that if we knew the multiple, we'd know a.

Examples (sorry about the lack of cell references):

1261 - (50^2 - 8^2)/2 = 43 * 1

13 - (4^2 - 0)/2 = 5 * 1

69 - (11^2 - 5^5)/2 = 7 * 3

1237 - (49^2 - 19^2)/2 = 31 * 7

369 - (27^2 - 15^2)/2 = 13 * 9

815 - (40^2 - 12^2)/2 = 29 * 3

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

a92e07 No.1034

>>1033

I'm working on the algebraic side now, since we know e=e, c=c and d=d at both rows, I'm setting the equations as equal to each other and solving.

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

3f145c No.1035

>>1032

>>1034

Agreed, Teach. I've been thinking about (d+n) and (x+n) often. I'm working on the algebra side too. What are your thoughts on the "catalog f values" for a in row one? Any insight at this point?

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

ac6203 No.1036

>>1032

I’ve looked at x and n in (0,1) up the yin yang. x, x^2, 2x, x/2, +1, -1, multiples between records, relationships to a, b, c, small square, big square, square root.

Every time I thought I had a breakthrough I went to a different c value and it all broke down.

I know there’s a simple solution here.

In the (0,1) space the formulas get a bit easier as e = 0.

And we’re now dealing with perfect squares.

You’d think that the prime solution would be smack in the middle of the c and cc records. Or that the original e, d, or x would factor in somehow.

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

cf8d48 No.1037

File: 80fb7a2a8a587e0⋯.png (8.79 KB,590x270,59:27,590px-Geometrischer_Höhens….png)

>>1030

This may be stupid, but since you're obviously much better at geometry, have you tried turning the squares into triangles and then doing things to the resulting triangles?

Like, I don't know, this is a bit over my head, calculate the h^2 square of a triangle?

https:// en.wikipedia.org/wiki/Geometric_mean_theorem

Hopefully this is inspiration and not complete lunacy

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

3f145c No.1038

>>1035

*catalog of values* sorry lads, I'm out in the field so doing math challenge sneaking in when I can till I get home.

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

a2017c No.1039

File: 343d522b60d7374⋯.png (65.18 KB,2443x830,2443:830,geometries.png)

>>1037

I tried that and it didn't do much, but I hadn't tested all the functions. You can see a glimpse of where I was going in this one.

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

cf8d48 No.1040

>>1039

I did some basics as well but kinda ran into a dead end using formulas I didn't understand properly and went back to other stuff. But the altitude of a right-angle triangle may be a useful variable.

And as posted above somewhere, triangular numbers are also relevant somehow (sorry I suck at this part)

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

a2017c No.1041

>>1040

Well, like in the picture you can basically turn any 2 variables into a pair of triangles and change them around.

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

a2017c No.1042

>>1040

For example the hypotenuse of na is sqrt(n^2+a^2)

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

cf8d48 No.1043

>>1041

>>1042

Yeah that part I get, its pretty easy. But some of the more advanced math of what you can do with triangles I haven't figured out. I did manage to calculate the altitude but didn't study it enough to figure out why those formulas worked so I went back to another approach

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

cf8d48 No.1044

>>1037

Please be warned that this might be a big rabbit hole as I haven't managed to find any useful correlations to the grid myself. I am not smart enough to prove it is a dead end yet

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

a92e07 No.1045

>>1037

This looks interesting, I'll take a look.

>>1036

Another quote by VQC:

>(e,n,d,x,a,b) in a grid (e,n)

>That is one way to organise the grid.

>Selecting two of the six variables (dimensions).

>There are SEVEN dimensions because each (e,n,d,x,a,b) element represent c.

>What are ways or grids or cubes are there to represent each elements?

>You could use another pair apart from (e,n)

>What would that produce?

>What other ways or shapes are there to view the six (seven) dimensions?

>What images result?

>Does this help find patterns?

>Does this help you c(see)?

Here's something else for you, assuming our 2 rows, 1xc and axb, labeling all my variables n1 or na for the n values corresponding to the cells etc.

2n1 = -(aa)^2 + 2aa(na + d) - (2d-1)

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

a92e07 No.1046

For those who dont want to click around for all VQC's posts, all the important stuff in 1 place:

https:/ /pastebin.com/eHJTEwWY

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

ac6203 No.1047

>>1046

>>1045

I’ll look into the formula later.

Re-reading vqc notes.

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

3a97e7 No.1048

>>1046

Thanks Teach. Re-reading crumbs now.

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

ab31aa No.1049

I've been rendering in other dimensions, but haven't seen any useful patterns. Taking requests.

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

a92e07 No.1051

Can I get some eyes on something real quick please?

We made an assumption that the equations with t applied to more than n=1, but I'm not convinced they do.

If you assume that in every cell t always starts from 1, then, using the grid:

Choose your 2 primes, and find the cell 1xc.

Then *if* your n here is odd, the following will hopefully work (I haven't found a way to do it when n is even).

Move to the negative side by following F.

1xc for F will always be the first element in the cell.

Find the element in the cell when a=c, look at the t (assuming that always t starts from 1).

So far for me, t has always been a factor.

Am I crazy? Maybe? I dunno?

Help please guys!?

So far, whenever I

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

a92e07 No.1052

>>1051

Forget the last line, I dun goofed.

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

cf8d48 No.1053

>>1051

So what you're saying is, ignoring our current formula for t - cells with odd n, moving to the negative side using f, f_t will always be a factor of f_x * f_c? Did I get this right? Rephrase it maybe?

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

a92e07 No.1055

>>1053

I think you understand correctly. But so far, I've only been using the grid to check, because if so our formulas for t are wrong.

I'm coding something now to test.

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

a92e07 No.1056

>>1053

actually, correction f_t will be a factor of c I'm finding.

This would explain the p being a factor of a at t then it also is one at p+t, 2p+t, 3p+t, etc, and p+1-t, 2p+1-t, 3p+1-t

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

a92e07 No.1057

>>1056

I'm sorry, this is wrong.

Seems to be just luck when its correct or not.

Very sorry all.

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

cf8d48 No.1058

>>1057

No worries, posted worse mistakes already :)

But I have to second PMA's suggestion for notations, would be way easier if we agreed on something. My f_t thing just felt convenient for replying to you.

Maybe something for moving between records is needed? First idea (please improve it)

orig.e

orig.n

formula (f, whatever)

new.e

new.n

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

a92e07 No.1059

>>1058

Yeah, agreed. I'll use dot notation from now on.

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

cf8d48 No.1061

>>1059

Not saying dot notation is the best and will be happy to use whatever as long as its consistent :)

Though it does suit us programmers

The formatting in my post is kinda verbose though, we could do p for prev and n for next (confusing?)

formula
p.e = 0 p.n = 0 > n.e = 0 n.n = 0

But prev and next is still bad if we want to do more than one jump. Maybe

formula
e[0] = 0 n[0] = 0
e[1] = 0 n[1] = 0

Just suggestions for now

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

cf8d48 No.1062

>>1061

Or we could keep the original notation and do something like this (yes I am to lazy to make real examples)

{0:0:0:0:0:0}
formula
{0:0:0:0:0:0}
{0:0:0:0:0:0}
{0:0:0:0:0:0}
formula
{0:0:0:0:0:0}
{0:0:0:0:0:0}

But we may want 7 dimensions not 6, so if we're going for this one we need to agree on a position for t

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

5f4624 No.1063

Well lads, we're currently stalled. Senpai, can you please help your Disciples? Just like Jesus and his disciples, we're having trouble understanding.

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

a92e07 No.1064

File: 7c30a61c07cfa03⋯.png (1.86 MB,4096x2048,2:1,grid.png)

Yep I need a hint.

Hey Chris, there are a number of different paths that I can see us exploring that would take us further. Would you suggest any of the following, or some other?

* transposing the grid

* exploring c*c cells more

* exploring the x and n of the primes

* exploring the f cell more

* exploring the c* a prime relationship

* exploring the "p at t being a factor, hence p+t being a factor" etc

And if you get time, one more question. Looking at the grid does t start at 1 and increase by 1 each element in a cell?

Or is t related directly to x via the relationships already exposed.

We seem to be split on 2 definitions for t.

Thank you!

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

a92e07 No.1065

>>1064

Or one more:

* pythagorean triples

Thank you!

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

5f4624 No.1066

>>1064

Teach! Are we cool? Did I offend you with the Pepe panty post? If so, I apologize. No love from Teach no mo. :(

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

a92e07 No.1067

>>1066

Of course we're cool!

Sorry! Didn't mean to be rude, my head was just down in the numbers today.

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

a92e07 No.1068

>>1066

Also, what happened to Topol and CollegeAnon?

We're losing numbers!

I'm looking into Pythagorean triples and they appear everywhere in the grid, I wish I knew more math.

I am learning more math in this process though!

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

5f4624 No.1069

>>1068

Topol got booted by faggots who just want math and no crazy fun. Click on catalog to find Topol's ez bake oven. Boring. :(

CA? I have no clue.

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

a92e07 No.1070

>>1069

I'm sad Topol got booted. I like his posts, makes it feel alive here, and his pics are always great.

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

cf8d48 No.1071

>>1070

Figured not voting would count as don't care/let him stay but guess not. Quiet here without him

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

3f145c No.1072

>>1070

Oh, don't worry. If summoned, he will return with many amemes.

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

3f145c No.1073

I'll go to ez bake and ask him to visit us.

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

99edb0 No.1075

File: d63ce83bf1f3617⋯.png (92.97 KB,4096x2048,2:1,output d x j.png)

>>1045

>What are ways or grids or cubes are there to represent each elements?

>You could use another pair apart from (e,n)

>What would that produce?

I'll post all of them again if anyone wants, but without spamming the thread, I made images with each possible pair of dimensions when we were still on /cbts/ and they make some interesting shapes. Pic related.

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.
Post last edited at

3f145c No.1076

>>1074

>>1070

I've summoned the Topol! Fuck banning people from the general. We need math and crazy ideas and fun! That's who our Senpai is!

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

5ba563 No.1077

>>1069

>>1070

Nobody has a problem with the occasional inspirational shitpost. What we have problems with is when it's 20% of total posts.

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

3f145c No.1078

>>1077

I'm gonna post all the VQC maps in a bit. Then you guys can see who we're working with. VQC is the man, and he's way out there too. Who we gonna ban?

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

ac6203 No.1079

>>1047

f = 2d+1-e (f is what you add to c to make a square)

(x+n)(x+n) = nn + 2d(n-1) + f - 1

Research further…

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

5ba563 No.1080

>>1078

Nobody wants bans. But nobody wants every other post to be four huge pictures of deep dream wankery plus stoner memes. Especially when we're crunching the numbers and formulas in each others posts. One in twenty I think we can absorb.

So it's a matter of degree. Like, for example, bumps on .5 chan.

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

06bbb8 No.1081

>>1063

Sounds like you guys are a bit down in the dumps on the math at the moment. I figured that for tonight's entertainment Instead of mildly dank memes Instead I will deliver something completely different. I have been working on this for a few days now.

As I look at this stuff I feel over my head so I figured I would play to my strengths. This is either a fan-fiction story OR it is a bit of a 1 hobo think tank document. Really it is just some ideas about what could happen if you fuckers get this thing to work. I kinda have a feeling someone would have crushed this in a moment if it was a known direction that has been explored mathematically. Basically if it was fake it would have been found out by now.

So I am leaning to this being the real deal and if that is the case then SOMEONE needs to start thinking about this stuff that I wrote about in this document. Im shit with programming and only slightly better with math (though this math is shockingly simple) but big picture stuff is fun for me. So Please enjoy this doc. I tried to make it funny and an easy read with a few little easter eggs so I hope you enjoy it! It is totally on topic as well so no grumpy anons angry because there is not a math problem to worry over in it.

https://anonfile.com/D2Fdp3d3b4/Ramifications.rtf

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

5f4624 No.1082

No. I'm tired of this. VQC is a spiritual and mathematical adventure. Some anons want to ban the spiritual. GTFO faggots. Who is contributing? Get out if you have no formulas or inspiration! Topol is more welcome than haters. Contribute or not.

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

8a6db2 No.1083

File: f144bf10b3281af⋯.png (1.16 MB,4048x2848,253:178,VQC (11-24-17).png)

File: 3d414729d53f4c3⋯.jpg (1.72 MB,2544x3230,1272:1615,VQC (Nov 8-11-17).jpg)

File: 807b89628634766⋯.png (115.65 KB,906x1788,151:298,VQC (11-09-17).png)

Read these maps, faggots. Our Senpai is both spiritual and mathematical. Wake up!! Math and Spirituality combine in this Quest. Stop trying to ban other anons! If you haven't read these graphics, read them. VQC is the man. Let's do this. Solve for N, faggots.

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

5ba563 No.1084

>>1082

Forgot your name, VeritasAequitas? Why are you hopping around on multiple overlapping IDs, and posting with and without your "name"?

Nobody is saying ban the spiritual or ban even shitposting itself. The bans should be reserved for when there are high signal levels, such as when VQC is posting or when there is significant technical progress being made, and spiritposting or shitposting every other post is disruptive.

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

3520dc No.1085

File: 8099e6bfebbd7e1⋯.jpg (66.22 KB,780x438,130:73,170521182043-20-trump-saud….jpg)

File: 435470e6fa1b151⋯.png (3.9 MB,2517x3356,3:4,12noonotes.png)

File: 416b9e5055e4707⋯.jpg (171.12 KB,600x600,1:1,c0dfb8bfb4385a3fbe67fc1c06….jpg)

File: 5b4f13675ae1654⋯.png (224.07 KB,843x632,843:632,NoIAmTheWalrus.png)

Topol wasn't booted :)

Topol's just behaving.

Y'all wouldn't believe me if I told you you what I've been up to so I'll tell you story that isn't necessarily 100% math related, but is, but isn't, but… maybe.

So for starters, have y'all ever seen a super Ai in action?

Donald Trump has.

And so has the Saudi King.

That first image… look at everyone's expressions.

King: "DAFUQ IS DIS?!"

Trump: "That is all the evidence you need to prove the coup against you and the world. Context aside…. Pretty cool, huh?"

That's the conduit for PALANTIR.

Imagine a keyboard and touchscreen on crack.

So… this is about a VQC but what about PQC? Physical quantum computing. The processors… they're convoluted hypercube+ tile puzzles. It's the nuttiest thing. A day or two after drawing the second picture, I'm finding the "real thing" online and getting contacted by all sorts of interesting folks. Twitter is where I've been doing a lot of my baking for to come back with goodies. I'm talkin' military, intel, "prime intelligence" civilians, normal folks, and 1337 hax0rz.

SPEAKING OF 1337 HAX0RS!

You've all been infekted with The Game23.

This is an infektion of love and The Game is to spread as much laughter as possible.

Especially in the face of evil.

Check out the pastebin for deets.

I've already infekted some of the bakers.

https://pastebin.com/YbmG6ETq

Oooh! I found a tree in one of y'all's outputs. Was pretty but the rest of the dream god weird.

I've also been in contact with an assortment of Gods, Literary and Film Characters, Entites from other Timelines and Realities, and just about every conspiracy I've ever dived into is like…. beyond real.

What you lot are doing is freeing humanity.

You know what this code will give people?

Freedom. Knowledge is power is this is claiming our power.

This is claiming our future.

This is seeking AND finding The Infinite.

You find the Primes which are the building blocks.

From there you can see every non-prime.

From there you can see all of it together.

From there you see the Map of the Matrix.

Don't you want to stop living a Virtual Life?

If you be tired o' dat shit…

BUCK UP, BUCKO!

If you get stuck, GET OUT OF THE KITCHEN FOR A SEC!

YOU'RE BAKING ALL THIS BREAD… BREAK SOME!

You are lovey lovely people who don't lewd the ponies…

And friendship IS magical.

God doesn't want to be lonely.

And as much as you Pathanons can relate to each other through numbers in a timeless fashion… you still need to take a lil' time for yourself.

In the EZ bake oven, I accidentally posted my twitter handle but if you didn't know it by this point, there ya go. Y'all can hit me up to talk about whatever. Games on games on games, SON!

And on that note, I'm gonna get back to muse-ing around.

Here's a video of Rogan Sensei training Crowder Senpai.

Rogan's in black, Crowder's in white… think Mental Martial Arts:

https://youtu.be/gd0oSNjHf1A

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

8a6db2 No.1086

File: 7cd78210d42a310⋯.png (2.85 KB,361x361,1:1,IMG_1362.PNG)

>>1084

I did forget my name, thanks Anon. Posting from work and home, on different devices. Love this Math Challenge. Understand your views on SpiritPosting and ShitPosting. I actually agree with you. Just think some anons are being too tough in their enforcement. I love crazy shit along with formulas. Wild Horses. Rolling Stones.

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

898cfe No.1088

You guys, we don't need any more drops or crumbs from VQC. We already have enough.

I've already solved generating (e, n) for any given e and n. It's just a matter of studying the patterns in (0,n) and (1, n).

I've started to look into the controlling of c and it looks very promising.

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

99edb0 No.1089

>>1088

So why don't you share how you did it?

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

3520dc No.1090

File: 81773caf0afb669⋯.jpg (127.46 KB,599x454,599:454,mj-557aff1068997.jpg)

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

d92546 No.1091

>>1088

What? We knew how to create an element from e and n since the first thread. But t makes it a lot more complicated.

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

d92546 No.1092

I almost became blackpilled earlier. We need to finish this so clowns' hell-deserving activities get exposed.

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

18604d No.1094

>>1076

Pretty sure I'm the faggot who tipped over an anon or two. Still here every night though. Just posting in the general on cbts (never name/trip fagged there once), in Topol's EZ Bake, and doing my thing.

And the crypto news and bitcoin discounting in here was intended as motivation for you faggots. At least we have a thread for that now too.

I'm here because I've already seen this before in a vision, in a different state. Five years or so ago, I was literally SHOWN a GRID. It was 2D, but in a 3D perspective. All started black, then X-Y axis showed up, first ELEMENT dropped in with a BOOM (hard to describe when you're getting hit *hard* with a point by something beyond, but have had it a few times like that). Then the next, and next as the grid filled with thin colorful tiles, extending the rows and column heights. And then they each started coming to life a little and shimmering, while more dropped in filling beyond visual limit. And then, as it continued to increase in complexity… I went IN…

- that vision isn't why I have faith in this thing here. There were plenty of 'signs' in Chris's questions that he's legit. cbts anons couldn't always handle/understand his questions. We're all on the path at different points, they'll come around.

>>1081

Looking forward to the read Lord Hobo!

>>1085

Juicy juicy, just got started! And the look on the King's face is -> priceless! Trumps too, like "Yup, I think we have a deal coming." Faggot on the left is just smiling for the photo op, they *love* their group photo ops over there.

>>1088

Figured you had when I saw >>971 last night, 'devious' made it clear you weren't throwing BS.

The other reason I'm here is ANOTHER thing I was *shown* was about a new currency, EARTH DOLLARS. Was supposed to get that going over 5 years ago but I pussied out and became a coward once a family came into the picture. I was all set to get suicided for sake of doing my bit to save the world, had started lining things up, cleaning house, but then, when suddenly you've got a family and a life or two to raise in this world that you love more than anything, it gets DAMN hard! I think I was brought/meandered here for help with that mission, maybe its time has passed, who knows. I will say, it's all about seeds, roots, and trees -> 1=2, 2=4, 4=8…

Out of the 12,000 I'd pulled for the initial seeding, I have a mere 333 left, sitting here, waiting, and I haven't given up hope.

Might not sound like a lot, but there's a quote to the effect of "From a single seed, an Empire can be built".

Oh, and rainbows are important, frequencies, octaves. So important, perhaps this symbol was co-opted as well?? Just like the swastika symbol. Embrace your faggotry and all will be fine.

"Remember upon the conduct of each depends the fate of all". ~ Alexander Ptolemy III

Back to work! No more secrets!

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

01b9f7 No.1097

K fags

for a*b=c

a and b prime

c^2= b^4/(b^4-b^2=1)

Is that useful?

c completely described by b

Minecraft how about a picture.

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

01b9f7 No.1098

for a*b=c a and b prime

a^2*b^2=c^2

using caps for the squared expression

{0,N,c,X,a^2,b^2}

X=a^2*(b^2-1)

N=a^2*((b^2-1)^2)/2

see earlier posts

a^2+2X+2N=b^2

a^2+2a^2*(b^2-1)+a^2*(b^2-1)^2=b^2

a^2(1+b^2-1+b^4-2b^2+1)=b^2

a^2(b^4-b^2+1)=b^2

a^2=b^2/(b^4-b^2+1)

c^2=b^4/(b^4-b^2+1)

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

20c116 No.1099

Square a value c, where c is the product of two different primes.

What are the values of n in column zero where these appear?

What is the value of d where these appear?

Enumerate the pattens of n in each cell of column zero.

The pattern GROWS in a certain way as n increases in column zero.

This pattern is related to the pattern across row one (e,1)

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

3520dc No.1101

>>1094

Heya!

TERRIBLE way to relay messages.

Almost wasn't passed along. :D

Freaked her out and I'm not even sure I got the correct message and all I'm finding is some… deleted thread? or something?

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

18604d No.1102

File: 596270de87f8928⋯.png (6.36 KB,500x250,2:1,CA_rule30s.png)

File: 0b348c01a3c6913⋯.png (163.73 KB,512x512,1:1,coprime-fft-512-Logarithmi….png)

File: 216721a6b5e709b⋯.jpg (153.92 KB,500x500,1:1,michael-hansmeyer-voxel-ba….jpg)

File: e9c2a169f1c1ee2⋯.jpg (423.74 KB,1600x1200,4:3,Textile_cone-Conus textile.JPG)

File: 9105857f78931d9⋯.jpg (500.66 KB,1024x768,4:3,VN0OZDGEY.jpg)

>>1101

Sorry Topol, felt a little desperate, and didn't want enemy energies catching the vibe! respect.

>710

VQC -

Was thinking about your 12/20 post. Specifically your mention of John Conway. Had dove into his work quite a bit some while back, with cellular automatons, seeded with rules, like the 'game of life' he created. Genius - it explained much of how the brain is structured and visions I'd had when able to achieve an entrained state, especially augmented by listening to Solfeggio Binaurals coupled with visualizing a Golden Ratio fractal antenna image. Learned to control enough to create a whole palace, even going inside (see Michael Hansmeyer's attached "Five pavilions for a really low-rez version of what we're capable of creating with our minds).

Anyway, I'd been going that way recently doing some digging, but hadn't really put 2 and 2 together here until I realized that one image I was going to share (but held back) was very similar to Rule30 (attached) which has been proposed as block cypher for cryptography.

Then, the other day you said one row to RULE them all, and associations are clicking in my head.

Are these crumbs worth munching??

Oh, and when we DO solve this, I propose we all pitch in to get you a new pair of kickers, such as the Vans (attached)!

And thanks Chris, you've really inspired some folks, regardless of how bleak the world might look at the moment. Nice to have a little yin with the yang around here!i!

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

3520dc No.1103

>>1094

Aight, I believe I found it. Someone calling for banning namefags? And?

(Don't call that number again, plz. Yes, I know that those stupid background sites give bad info.)

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

3520dc No.1104

>>1102

all good.

Hit me up on twitter lol

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

18604d No.1105

File: 1751b33138d7c58⋯.jpg (152.36 KB,750x1134,125:189,NeverGiveUp.jpg)

File: d299fdd92803406⋯.jpg (153.44 KB,1200x799,1200:799,palestinian-child-throwing….jpg)

VQC - One other thing I want to thank you for, is sharing the Asymmetric Warfare bit.

Am going to dig into that some time, it's easy to feel like the little guy getting squashed in this world.

STAND UP anons, we've got this!

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

18604d No.1106

>>1103

Nah, nothing to do with me. People can shit on me and choose to ban me if they so choose (not that message was about that), and I don't give two shits who calls me what. I know what I know, I am what I am, and I'm all good.

Carry on and keep sending your love to these Math/Programmer fags!!!

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

898cfe No.1107

>>1099

The d at the location where a = c*c appear all to occur in (0, 2) and will contain the factors of c and then some extra factors.

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

898cfe No.1108

>>1107

And the extra factors appear to be the ones from the b.

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

3520dc No.1109

File: 18d84cd5dfd1093⋯.jpg (130.83 KB,763x1001,109:143,adventure_time_with_my_lit….jpg)

File: 8efe7e09f9e4515⋯.jpg (262.78 KB,1160x653,1160:653,Minecraft-Adventure-Time.jpg)

File: 757deb3a4b03278⋯.png (37.06 KB,300x250,6:5,SngdQArLSS-4.png)

File: 3c9ee395ed7f5ef⋯.jpeg (88.2 KB,786x1017,262:339,Adventure-Time-With-Finn-….jpeg)

EEEEEEENCOURAGEMENT TIME!

I went so MATHEMATICAL as SUPER RAINBOWDASH that I broke through to another show's dimension.

Should be easy to figure out where these head pats are going.

ONWARD, NERDS!

TO GLORY!

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

01b9f7 No.1110

>>1097

Please ignore made mistake

>>1098

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

3520dc No.1114

More inspiration in the EZ bake if anyone wants some snacks. <;3=

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

5ba563 No.1115

>>1099

VQC, can you please take a quick look at my post >>934 where I show how to calculate any n for any column 0 record where c^2 appears?

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

cf8d48 No.1117

>>1099

These are weird

For odd n, they appear to be the same as in row one (next.a = prev.b)

{0:3:12:6:6:24=144}
{0:3:36:12:24:54=1296}
{0:3:72:18:54:96=5184}

For even n, this makes no sense yet. Sometimes there are two interleaved patterns

{0:6:9:6:3:27=81} - pattern 1
{0:6:24:12:12:48=576} - pattern2
{0:6:45:18:27:75=2025} - pattern1
{0:6:72:24:48:108=5184} - pattern2

{0:12:18:12:6:54=324} - p1
{0:12:48:24:24:96=2304} - p2
{0:12:90:36:54:150=8100} - p1
{0:12:144:48:96:216=20736} - p2

Sometimes more

{0:8:5:4:1:25=25}
{0:8:12:8:4:36=144} - p1
{0:8:21:12:9:49=441} - p2
{0:8:32:16:16:64=1024} - p3
{0:8:45:20:25:81=2025} - p4
{0:8:60:24:36:100=3600} - p1
{0:8:77:28:49:121=5929} - p2
{0:8:96:32:64:144=9216} - p3
{0:8:117:36:81:169=13689} - p4

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

01b9f7 No.1119

tested results thanks QVC

for a*b=c a and b prime

a^2*b^2=c^2

using capitals to designate squared record

{0, N, D=c=a*b, X, a^2, b^2}

X=ab-a^2 from X=D-A

N=((ab-a^2)^2)/(2*a^2) from 2AN=X^2

N=a^2/2-ab+b^2/2 square and factor above

c= (D+N)^2-(X+N)^2

D+N = ab+a^2/2-ab+b^2/2=b^2/2+a^2/2

D+N large side = b^2/2 +a^2/2

X+N = ab-a^2+b^2/2-ab+a^2/2=b^2/2-a^2/2

X+N small side equals b^2/2-a^2/2

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

01b9f7 No.1120

>>1115

Didn't realize that what you were doing. Got some good ideas anyway. Thanks

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

898cfe No.1121

>>1089

Take a look at (1, 1). The t = 2 has a = 5. Then go t + 5 steps, a = 85.

(1, 5) starts with a = 5/5 and b = 85/5. This appears to hold true for all (e, n).

Again, we want to find t = 1 for (1, 13). We find 13 at t = 3. We "save" this a (13) and then add 13 to t (3 + 13). We should get a = 481.

13/13, 481/13 = 1, 37. Also the first t = 1 for (1, 13).

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

898cfe No.1122

>>1121

For clarity, the (1, 13) example we find 13 at t = 3 in (1, 1) and we find 481 at t = 16 in (1, 1).

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

898cfe No.1123

>>1122

This only seems to work for generating n that appear as a's in (e, 1).

For instance take (1, 37), 37 doesn't appear as any a or b in (1, 1), but it appear in (1, 13). I still haven't figured it out entirely yet.

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

898cfe No.1124

>>1123

However, there might be more to it.

In (1, 1) you'll find 481 (13 * 37). If you use this as a starting point you'll get (1, 37) starting with 13 (which is correct).

I think, in order to enumerate the "possible" n's you'll have to "jump" between n's.

Since we know that a=1, b=37 appears in (1, 13) you'll either have to jump from (1, 1) to (1, 13) in order to find it, or we might have to employ recursive factorization to "know" that 37 is a possible 'n' by factorizing 481 when we encounter it in (1, 1). But I don't think the recursive method is the way to do it.

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

898cfe No.1125

>>1099

I'd love a thumbs up if I'm moving in the proper direction

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

a2017c No.1126

File: 4fc46bbdfe4677a⋯.jpg (101.82 KB,634x482,317:241,kciuki-w-górę.jpg)

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

ac6203 No.1127

Found a link between our entry c value and the cc record in (0,1).

(0,1).d == ( ( c - 1 ) / 2 ) * ( c + 1 );

Still looking for elusive d formula from x…

—————————

145=5x29

a x b *=> (1,5,4) = {1:5:12:7:5:29} = 145;

1 x c => (1,61,6) = {1:61:12:11:1:145} = 145;

aa x bb => (0,288,61) = {0:288:145:120:25:841} = 21025;

1 x cc => (0,10368,73) = {0:10368:145:144:1:21025} = 21025;

(0,1) perfect squares to analyze

aa x bb (0,1) => (0,1,61) = {0:1:7320:120:7200:7442} = 53582400;

1 x cc (0,1) => (0,1,73) = {0:1:10512:144:10368:10658} = 110502144;

ccna.d = 10512 compared to 10512 = 0

((ter.c - 1) / 2) * (ter.c + 1) = ((145 - 1) / 2) * (145 + 1)

(ccna.d record match!)

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

5ba563 No.1128

>>1120

Thanks. Yeah I should have been more clear. You calculate the 1 * c^2 value in column 0, then convert that n to "index", aka "height". This is zero-based, so it goes index 0, index 1, index 2, index 3…

My example had n = 32 and I calculated a index or height of 3.

The point I should have better stated is that from that you can calculate the n values of index 2, 1, 0 in constant time (which are 18, 8, and 2 respectively).

This is interesting because any 0, n cell you generate this way has perfect squares for a and b. Work through it once or twice on paper; it's fucking magic.

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

3f145c No.1129

>>1119

>>1121

>>1125

>>1128

Wow, great work Anons! Thanks for getting some forward momentum going again.

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

a2017c No.1130

File: ed4d365f9d225b2⋯.jpg (39 KB,600x814,300:407,owczarek-niemiecki.jpg)

File: ab4864a2b59cb0e⋯.jpg (88.06 KB,564x772,141:193,1513552286421.jpg)

File: 50131627a8a7927⋯.jpg (60.69 KB,548x700,137:175,1513552400925.jpg)

File: 086d773718c5fb9⋯.jpg (378.19 KB,1779x1080,593:360,1513552164033.jpg)

RARE HITLERS! WE CAN DO THIS!

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

ac6203 No.1131

>>1099

>>1117

Also analyzing the (0,n) space.

There is a path to the correct record. Below are 2 examples for 3x5 and 3x7.

Substituting the a-> b values at e = 0.

For the 3x5 example, I tried simply to use the new.d = (prev.d / 2). Not quite right.

Looks like we need to figure out this movement to solve.

15=3x5

a x b *=> (6,1,1) = {6:1:3:0:3:5} = 15;

1 x c => (6,5,2) = {6:5:3:2:1:15} = 15;

aa x bb => (0,2,4) = {0:2:15:6:9:25} = 225;

1 x cc => (0,98,8) = {0:98:15:14:1:225} = 225;

(0,1) perfect squares to analyze

aa x bb (0,1) => (0,1,4) = {0:1:24:6:18:32} = 576;

1 x cc (0,1) => (0,1,8) = {0:1:112:14:98:128} = 12544;

Path subtituting a -> b

(0,1,8) = {0:1:112:14:98:128} = 12544;

(0,9,13) = {0:9:56:24:32:98} = 3136;

(0,1,4) = {0:1:24:6:18:32} = 576;

21=3x7

a x b *=> (5,1,1) = {5:1:4:1:3:7} = 21;

1 x c => (5,7,2) = {5:7:4:3:1:21} = 21;

aa x bb => (0,8,7) = {0:8:21:12:9:49} = 441;

1 x cc => (0,200,11) = {0:200:21:20:1:441} = 441;

(0,1) perfect squares to analyze

aa x bb (0,1) => (0,1,7) = {0:1:84:12:72:98} = 7056;

1 x cc (0,1) => (0,1,11) = {0:1:220:20:200:242} = 48400;

Path subtituting a -> b

(0,1,11) = {0:1:220:20:200:242} = 48400;

(0,9,22) = {0:9:140:42:98:200} = 19600;

(0,1,7) = {0:1:84:12:72:98} = 7056;

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

cf8d48 No.1132

File: 7f13ae41ba772e5⋯.png (646.92 KB,1366x768,683:384,ratsemen.png)

>>1081

Thank you, this is great! The crypto stuff may not be 100% on point but its really good - we need more of this

And Sneakers just replaced Go For It (1983) as my all time favorite movie.. how did I miss this gem?

If pic related doesn't convince you to watch it, there are some amazing quotes about the NSA, FBI, clowns, fake NASA moon landings, cattle mutilations and the Kennedy assasination as well :)

That this was made in 92 blows my mind

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

13b8cc No.1133

>>1132

Thanks for the reply. I really am glad you liked it. I will keep it up. This has been a very inspiring experience and I am glad others have liked my thoughts and ideas.

If I am off on something PLEASE feel free to call me out. I have very thick skin and am always open to other ideas or information. Much of what I stated in this doc is "kluged" together. It will have insight but at the same time will be messed up on the details. I have always been a big picture guy so that is what I like to do. It leaves me with some holes sometimes.

Im glad you liked Sneakers. I feel Like I am living that movie sometimes. Well, I will post the next episode of this document now renamed "Unforeseen Consequences"

I think that is a good name (shamelessly stolen from my favorite video game). I am not sure I Have seen "Go for it" but I want to check it out.

Thanks for your support and I hope to provide some guidance and direction from the 40 foot view. I do not claim to KNOW what that is but I love to explore it.

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

a2017c No.1134

File: 8de873f1d21fbd7⋯.jpg (208.79 KB,2000x1125,16:9,śmianie-się.jpg)

Looks like I've finished most of my work. Time to work on this. Could just give up and leave but I wanna see these CIANiggers burn!

Where did everyone go?

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

3520dc No.1135

File: a5a3e0dac1427cf⋯.png (402.53 KB,800x426,400:213,3223bbdf26f5ba8ffd1e433276….png)

File: 6e9b3814fbefd2e⋯.jpeg (151.51 KB,849x849,1:1,DVF_1.jpeg)

File: 2a314849b845c64⋯.jpeg (88.78 KB,721x940,721:940,DRwRvMXX4AABKZk.jpg-large.jpeg)

File: 9b3a7c30fed5573⋯.jpg (63.23 KB,720x519,240:173,FfTWNHX.jpg)

>>1134

I was reading a journal that was more of a review with a bunch of parts that were out of my talent spectrum at the moment.

But I did pop onto the discord for some dank and spicy memes to encourage the Pathgawds.

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

a2017c No.1136

>>1135

Kek. Dicsword.

What journal?

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

3520dc No.1137

File: 7107fa42a1d907f⋯.jpg (54.88 KB,624x475,624:475,kP6wPkH.jpg)

>>1136

Well… I guess it's story time.

So… you see…

I'm a bit of a muh'fuggin' hippy an' shit.

I'm always trying to get into collaborative projects.

Especially with my main project, I had to find more than just myself to get anywhere past my own universe.

So… it's another similar collaborative piece but it's the pared version of the whole notebook. Can't show it to ya because… y'know… artists and their methods. Y'all wanna know what we see and think, but no one's allowed to see the notes until well after what e're working is already a thing. Think like… da Vinci notebooks… or… pic related.

It involves this story I was working on with the guy who showed me 4chan a brazillion years ago. Some real RPG2000 shit, map making, storytelling… he was focused on an epic hero journey whereas I came up with an entire pantheon of gods and how the overarching story would play out. This was back when I was still trying to figure out how to speak correctly and "Time Matter and Energy" coming together to form a god (Named Renz, other guy came up with the name), that immediately starts dreaming, and creating fantastic scenarios of gods and magic and "men" and then the gods influenced men with their magic too much so they and their magic took a nap. Meanwhile, "Man" discovers "Natural" magic and interacts with all the other species that the other guy was coming up with. All the while the original sleeping god is LARPing as a crotchety old trickster who's forever annoyed by this constant ringing that sounds like an alarm. Other guy was more into the Tompfk Fishman part of the story than I was.

So I figured, with all the gods asleep, I think I modeled it off the Ogdoad at first, then a lil' more Greco-Roman, then full blown Hindu but that was a bit much so I pared it down to… 8 sets. So I'd need 16 writers who could work together to write the dreams according to an order I set and they would be going in an out of dreams waking each other up and the whole thing was gonna take decades to flesh out.

Eventually all the Gods are awake and we get back to book 1. Or I guess maybe book 1a. Whatever. All the gods are awake and they find Tompfk and try to wake him up. Then there was some epic battle and at some point the pantheon realized they were all the answer was to just give Tompfk a hug and offer understanding. That connection reunites the full consciousness of Renz, who wakes up and "Time Matter and Energy" say "You've done this {n} times! Ready to have a new dream?" and back to the dreamworld he goes.

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

3520dc No.1138

File: 5085ffc9091ec47⋯.jpg (127.5 KB,900x832,225:208,54757cf699f68c01bd25dfe16d….jpg)

>>1137

Keep in mind, that was written a long time ago.

Shortly after I figured the time, matter and energy thing didn't make sense since matter was just reeeeeeally slow energy or like… condensed darkness drawing light to it or something (I had a whole spectral breakdown of the density layers of the earth for… whatever reason) but regardless I figured they were the same thing. Or something. So it became time, energy, and space. And they weren't entities outright, the Consciousness of Divinity was like… split in two… and everything worked basically like a load bar.

Starts black, light goes forward filling in all the black. God is the Light coming from point Alpha going to Omega… only to realized it was the Space as well because God was waiting for God's self with a grin saying "Everything has been accomplished for eternity for the {n} time! Ready to do Infinity all over again, but differently?"

But frankly even that didn't make complete sense because it was just this… loop… but.. with like… 1 difference that makes each progression of infinity different. 1 planck to the left. All the little and big things. Nothing else to do, so at least it's something to do, right?

Time goes by, do stuff, keep thinkin' 'bout it and readin' bout it… find Everything Forever due to staring through a porch rail, contemplating that i can never see the other side of anything on the opposite side of my limited perspective and I was juuuuuust fucked up enough to think "0 is greater than 1… the fuck?" and that was followed by being juuuuuuust fucked up enough to actually google it which led me to a fucking ZELDA forum (non-lewd) where they were discussing this book called Everything Forever by Gavin Giorbran and dear sweet merciful FUCK that's the book I'd been looking for my entire life.

So at some point I come up with and copyright that lil' diagram-o-mine and end up grabbing The Doctor's attention by blathering on about split-octonians and surr/hypereal numbers and what I didn't even know were called "limits" (at the time) cuz I was just trying to figure out how the fuck to get from .999… to 1 as I had been for the last 10 frickin' years. Something about 0111/0 or something like that which a physicist proved was wrong.

And then The Doctor, who specializes in geometry that has nothing to do with physical reality, as he puts it, the non-euclidean kind… loooooooots of drinking sessions later… I kept thinking in terms of "difference" and "change" and "and" and "or" which have completely batshit meanings in math because the nerds are fuckwits and naming shit and long story short:

Look at a math problem.

Is time happening?

Where is it? (imagine the paper is an infinite plane)

Time doesn't real, in math.

Energy isn't a "thing", energy is the ability for work to happen over time, which doesn't real.

So energy doesn't real.

So all you're left with is space…

And consciousness…

And you really need to study cones and toroids.

He moved away abooooooout…. 8 or 9 months.

And then eventually all this happened.

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

a2017c No.1139

File: c3ac44768558435⋯.png (349.73 KB,600x600,1:1,GOP.png)

File: c7773a4242cc0fb⋯.jpg (310.63 KB,943x1456,943:1456,Martin-Luther.jpg)

File: 1dd61b15f1e1ac6⋯.jpg (326.82 KB,874x1553,874:1553,myśliwy.jpg)

File: 01fbe03692a9b25⋯.jpg (100.14 KB,720x779,720:779,Odin.jpg)

>>1137

>>1138

That's quite interesting. Video games don't have to make sense to be interesting, quite like Indie Games. Anyway, I'll try to contribute to the new line of maths tomorrow.

I was researching a man named Sholom Rubashkin. He was running a meth lab in Iowa and imported over 400 illegal immigrants which tore the city apart when ICE raided it, basically destroying the city, or at least damaging it beyond repair. The meth lab's cover story was that it was a kosher meat plant, which it sort of was, so it was a bit of a front-end business with a racket on the side. Where it gets even sadder is the fact that the PETA people said that the animals were tortured (which makes it not even kosher according to scripture, ironically). One said "the esophagi were ripped out while the animals were still alive and conscious." Moreover, he didn't even bother paying his employees some of the time and was also involved in bank fraud, money laundering, wire fraud, and lots of financial fraud in general. One of the biggest takeaways from this is how sad and disgusting Israel and their control of congress really is. They didn't care about what he did to the animals, what he did to the illegal alien employees, how he destroyed an Iowa town called Postville, how he defrauded many financial institutions, etc.

They didn't care. They just wanted him free. Bipartisan congress support for an "unjust sentence". Anything for the (((chosenite))) tribe.

Should have been life.

I could go on.

So, when Trump commuted this guy's sentence, meaning he will be free soon, it tore me apart.

But I'm feeling a lot better now that the storm is finally happening.

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

3520dc No.1140

>>1139

The Martin Luther "What you say?!" copy-pasta meme made me kek.

The rest of it… I feel like my story was at least somewhat touching and then… Absurdly unnecessary hatred laden with appeals to emotion followed by a slight at the God Emperor.

-le sigh-

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

3520dc No.1141

>>1140

I mean, you could have at least called him a Zionist fuckstain. Or a low level Qabal member or something.

There is a difference… Hell, he mighta been in Kosher Nostra (not joking) or that sycophantic "follow the messiah rebbi" hassidic mafia shit.

So like…

At least complete the thought.

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

a2017c No.1142

>>1140

Read it yourself. Watch the documentaries on him. Sounds nice enough eh?

Until you read the FBI reports on the bank fraud, meth lab and animal abuse.

No, you'll know why I felt that way if you take the time to actually read into it.

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

3520dc No.1143

>>1142

I feel like you penned that before my last comment loaded… lol

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

a2017c No.1144

>>1143

I did. But really, you will have a very hard time reconciling why this guy is going to be free if you read all sides of his life story.

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

3520dc No.1145

>>1142

Maybe it was the pics that made feel it was overly generalized. Makes sense to me.

It's not like I was arguing with ya about the piece of shit or about shekel grubbing kikes, but I generally leave your "non-MoT obsessed" Jew out of it at least.

Hell, I haven't attended a regular service in a synagogue since I was like… 8.

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

3520dc No.1146

>>1144

Free but unprotected?

Maybe "free soon" happens after "swamp draining" and golly… he's not available to be freed anymore.

Positive thinking.

Positive thinking.

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

3520dc No.1147

>>1145

And why not since I was 8?

Because my parents were sick of "jew society" and their bullshit. And we never looked back.

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

a2017c No.1148

>>1147

>>1146

Yup. Every time I fall for the "regular Jews are okay" I meet one and they treat me like a disgusting rat. If that is really how it's going to go I'd be so happy.. Because this guy does not deserve to be free. I didn't even mention how he treated the immigrants or how they completely destroy any discussion of this now with muh holocaust and muh nazis.

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

3520dc No.1149

File: 2d7cde02a1fade7⋯.jpg (82.25 KB,605x628,605:628,10565094_620239901440395_8….jpg)

File: e012897b0dc40a6⋯.jpg (310.73 KB,610x769,610:769,jesus-meme.jpg)

File: 485017ca40c6391⋯.jpg (18.05 KB,300x378,50:63,20108579_452541578447276_6….jpg)

File: 43b04347ff2a063⋯.jpg (36.25 KB,540x505,108:101,20915581_1979331652342945_….jpg)

>>1148

Ooooooh…. or 5d chess… just like how he let Alabama get stolen to out their mechanisms and scheming kikery…

Who was pushing for this guy to be let out in the first place? I'm getting this weird Barnabas vibe or whoever the pharisees let go instead of Jesus.

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

a2017c No.1150

I'm not crazy or a maniac. I just needed to get that out. It's basically how my week went.

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

3520dc No.1151

File: 8dc9788966a5ec5⋯.jpg (9.26 KB,320x308,80:77,20994138_1572805299407721_….jpg)

File: 0a48955b7280ec4⋯.jpg (19.06 KB,480x663,160:221,20915160_10156000808912971….jpg)

File: 5822803b0928d6e⋯.jpg (17.13 KB,480x480,1:1,19961152_559470807776519_4….jpg)

File: 71c300a9ccc2df7⋯.png (187.57 KB,461x403,461:403,71c.png)

>>1150

You are more than welcome to vent the rest of it in my EZ Bake Oven.

Go head.

Throw some jew on that fire to keep it LIT, FAMBALAM!

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

d40957 No.1157

What the fuck you two?? Seriously, get your own fucking board or start another thread and stop shitting this up. What the fuck??

And !!UrvFpU0has, enough with your recruitment and shilling for collaborators on some fucking occult mission. This shit is inside everyone, hardwired, stop being an egotistical fuck, and take it to the Bake, you've got your space in which to spew. Lord have mercy!

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

3520dc No.1158

>>1157

I was trying to motivate again since it was so important I did so last time that folks tracked me down. I saw a lull and tried related a story. Then OP came in all down in the dumps and I tried to cheer OP up and got him over to the EZ Bake as I could. Aaaaand it went there.

I'm trying to behave, damn it.

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

3520dc No.1159

>>1157

And this isn't an occult mission.

This is a mission of vision, so that all may see.

Literally the opposite of that thing you said.

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

3345eb No.1160

>>1134

I’m here, Baker! Still working on the row (e,1) patterns, and also looking for patterns of c^2 in column zero. Any chance you could post a link to the original .csv output? I’m on the road, and my small printed copy isn’t cutting it for the column one research.

>>1158

Thanks Topol for the inspiration! The thread needs some encouragement.

>>1094

Cool vision, Mr E!

>>1133

Thanks Hobo! I haven’t had a chance to read it yet, but appreciate the memes a lot.

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

fc178f No.1162

>>1160

Unfortunately I can't. I am with family now.

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

efaeb5 No.1163

>>1162

Me too, lol. I’ll get back to work tomorrow. Merry Christmas!

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

3520dc No.1165

>>1157

And yes. This is inside everyone.

But not everyone is focusing there at the moment.

Some of them are focusing on code.

And I'm here to support them.

<;3=

It's like gay sex.

Some other guy has it covered and I can experience vicariously through him to understand the idea.

Savvy?

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

3520dc No.1166

>>1165

Literally you might as well say that the Math and the capability to figure this out is within ME, as well. Which it is. But we're all at different points on the same… whaaaaatever… and the collective consciousness is the delivery system.

Don't forget… all of this work is actually already accomplished… this is how it's disseminated to the world.

Once it's understood here by the few, it can be passed around through the channel(s) to the many.

If VQC wanted credit for this, like the whole Lucifer serving Man story, he'd have just handed it to you. But… it wouldn't be as thoroughly understood and… how in fuck would you have found THIS TEAM of ABSOLUTELY CAPABLE MINDS if you were just handing out something that seemed so monstrously absurd to begin with? When would you have even heard about it? Teach seems to be on the academic up and up but how many filters would it have gone through before TEACH ever saw it, let alone us academic and corporate outsiders?

I'm not even a fucking mathnerd and I understand that.

So… quit with the discouragement.

You want to piss and moan about thread sliding in a timeless environment, you can do it elsewhere.

I was brought back into this space for a purpose… Anons needed -headpats-. I did my job, and now I'm fuckering back off until I either pop back in, or my attention is brought back here.

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

a92e07 No.1168

File: d3d0d62946608df⋯.png (207.83 KB,2880x1800,8:5,3*5.png)

File: 677d8fecbe8e5d0⋯.pdf (10.21 MB,wiles.pdf)

File: 653270f15b529cb⋯.png (337.83 KB,1420x1705,284:341,results_sqrt_n.png)

>>1166

Thanks for this post Topol, well said, and I appreciate the kind mention.

And headpats go a long way, no doubt!

I've been working in moderate silence the last couple of days because I haven't had any new insights, and I have only had intermittent time to spend on the problem.

Mostly reading not much writing.

A few attachments…

1) Andrew Wiles paper on Fermat's Last, and its relation to Elliptic curves.

2) A picture of 1*cc for c=15, a=3, b=5. Explained below.

3) Output in code for similar semi-primes (the 2 numbers per row are described below).

So I think PMA might have already identified this relationship. And I makes perfect sense, and I'm not sure what value it adds.

But I've been playing with geometrically viewing the 1*cc.

For both the 1*cc row, and the aa*bb row, (when e=0), both n's are always halfway between 2 perfect squares.

Now of course, like I said, this is "obvious", since d+n is always halfway between a & b.

So in the e=0 column, for both 1*cc and aa*bb, sqrt(n/2) is a perfect square, as is sqrt(n*2).

And sqrt(n*2) will always be equal b-a.

Often the sqrt(n*2) for the aa*bb row is a factor of the 1*cc row. You can see that in the image with colored squares. Both x and n at the 1*cc row are divisible by 7.

So if you take x in the 1*cc row, divide it by 7, square that then halve it, you'll get n at aa*bb.

This is only *mostly* true though!

There are many rows where this is not the case.

Examples include:

3*13, 3*17, 3*19, 7*17, etc

But most of the time this is true.

Here's a pastebin of the full results:

https:/ /pastebin.com/a9KwHCFC

The 2 numbers at the end of each line are sqrt(n*2) and sqrt(n/2).

The row beginning with ** is the values above for the 1*cc row / aa*bb row.

Any thoughts guys?

PMA, VA, MA, am I just restating what is already known?

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

ac6203 No.1169

>>1166

Topol, keep it up. Words and insights are very helpful.

>>1168

Teach - thanks for adding clarity!

>>1131

Teach - in case you missed it yesterday, I was able to piece together a path through various (0,n) records starting from (1xcc) and getting to (aaxbb).

I can see the path clearly, and there most likely is some elegant math to jump directly to it.

In the meantime, I've gone back to the "drawing board", as VQC suggested and think I've figured out the pattern to walking up and down the tree at (0,n).

Rather than flood with examples, following are the formulas:

to walk up the tree at (0,n)

n is odd: new.d = d + 2*(x+n) + 2n

n is even: new.d = d + (x+n) + n/2

to walk down the tree at (0,n)

n is odd: new.d = d - 2*(x+n) + 2n

n is even: new.d = d - (x+n) + n/2

I have verified this with data from (0,1) through (0,6). Both up and down.

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

a92e07 No.1170

>>1169

Thanks PMA, I just re-read.

I don't fully get it. Do you think you could explain the part from:

>(0,1) perfect squares to analyze

on?

And what exactly do you mean by substituting a and b?

Sorry for the questions, I want to understand!

I feel like we may be close again…

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

ac6203 No.1171

>>1170

Records in the (0,1) space are very well defined. We can break them into their component parts very easily to get an answer.

For example at (0,1,4) we know that the value of a = 18 can be represented as 2*(3^2). And the prime answer is "3".

Squaring the c, puts us into the (0,n) space. Substituting a = na, puts us in the (0,1) space.

And creating the record directly by (0,1) and t = (c+1)/2, is a shortcut to getting to (1xcc) for any c.

Now there, the trick is finding that aa*bb record.

Subsequent records in a column are connected by a -> b movements.

In reviewing some data, I found a way to get to the b value of the (aa*bb) record, by going through 1 jump.

Start with the (cc) record, move it's a to the next record b (figure out the d), and then one more jump to the aa*bb record.

I've verified this path twice, but calculating the d value presented a problem.

Hence my previous post.

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

a92e07 No.1172

>>1171

Ok, I think I gotcha. I'm going to need to sit with this a bit.

I'm going to run my own tests to re-prove your tests, and see how they correlate to my path. I think we might be coming full circle to the same point!

Do you think you could test with one of these pairs next?

3*13, 3*17, 3*19, 7*17

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

a92e07 No.1173

>>1171

>move it's a to the next record b (figure out the d)

So I'm with you until here. You move b to a. you know e=0, and you need 1 more variable to find a specific cell, and you're saying you can calculate d?

I'm stuck PMA.

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

3520dc No.1174

>>1168

>>1169

Y'all legit made me tear up

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

42e928 No.1175

>>1163

Merry Christmas to you too :)

Writing this with 1% battery.

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

ac6203 No.1179

>>1173

I posted earlier in this thread a way to calculate the d value for the (1xcc) record directly from c.

So I figured to focus a bit on navigating records by changing d values.

Path subtituting a -> b

(0,1,8) = {0:1:112:14:98:128} = 12544;

(0,9,13) = {0:9:56:24:32:98} = 3136;

(0,1,4) = {0:1:24:6:18:32} = 576;

First record is the (1xcc) record. Last is (aaxbb).

Notice the movement of a to b in each step. e is always 0, n is 1 in the first and last record. We have the a value in the first record. So we need one more variable to move to the second step, and then we will have the a value to use in the last calculation.

This may not be the end solution, but this is the first time I've seen a direct connection between an (axb) and (1xc) record.

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

a92e07 No.1180

>>1179

Ok, I'm with you.

Look at your example. 2 things to notice (if you haven't already):

1) taking your a from (0,1,8), how many times in the 0 column will it appear as b? It is always going to be 1/2 of a perfect square. And as such it'll appear in the 0 column at every n where n is a perfect square (in your example n was 9). Because this value (98) appears many time, the pattern of the value that it appears next to (the a to its b) is all possible values of 1 half perfect squares, that have an e=0.

2) There's a row directly below that one that, (0,9,14), where a = 18, and b = 128, and n will equal the n of (0,9,13).n.

I'm not sure what this means, I'm having trouble visualizing it now.

Were you already aware of these patterns?

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

ac6203 No.1181

>>1169

well, shit. turns out the d movement formulas work for all cases of (e,n).

Walking up tree 5 iterations from a=5, b=41.

(9,9,5) = {9:9:14:9:5:41} = 205

(9,9,14) = {9:9:68:27:41:113} = 4633

(9,9,23) = {9:9:158:45:113:221} = 24973

(9,9,32) = {9:9:284:63:221:365} = 80665

(9,9,41) = {9:9:446:81:365:545} = 198925

(9,9,50) = {9:9:644:99:545:761} = 414745

Walking down tree 5 iterations from a=157, b=273.

(12,8,26) = {12:8:207:50:157:273} = 42861

(12,8,22) = {12:8:153:42:111:211} = 23421

(12,8,18) = {12:8:107:34:73:157} = 11461

(12,8,14) = {12:8:69:26:43:111} = 4773

(12,8,10) = {12:8:39:18:21:73} = 1533

(12,8,6) = {12:8:17:10:7:43} = 301

>>1180

Thanks Teach. I will look into this soon.

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

d06cad No.1182

>>1181

fucking nice.

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

a92e07 No.1183

>>1181

Can you show me with this example?

{59:5:61:19:42:90}

From the grid, the cell values are:

{59:5:61:19:42:90}

{59:5:71:21:50:102}

{59:5:119:29:90:158}

{59:5:133:31:102:174}

{59:5:197:39:158:246}

{59:5:215:41:174:266}

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

01b9f7 No.1184

>>1169 Amazing body of work. You seem to have all the pieces!!

I'm having trouble verifying your new.d formula. Could you give an example?

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

5f4624 No.1185

>>1168

>>1169

>>1171

>>1179

Hey guys! I'm tripping out on how d values increase by 1 every other column! Along with a and b too. So for odd e, d,a,b increase evenly as columns increase. Same for even columns. PMA your example in >>1181 jumps up by 9t every time. Awesome pattern.

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

01b9f7 No.1186

Chris is gone from twitter. So is Julian Assange on same day. Remember there are no coincidences!

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

5f4624 No.1187

>>1169

Hello PMA! So your formula needs x and n to walk the records. Only problem is that we have to derive them from c. What are your thoughts on getting x? We need a first, correct? I could be wrong.

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

01b9f7 No.1188

>>1187 You start with b=1 a=cc record so you have n and x

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

a2017c No.1189

File: c204b13fc5ee8c3⋯.pdf (520.06 KB,output.pdf)

>>1186

Did he get banned?! Fuck Twitter!

>>1185

If you still need this, here. (Rename to csv)

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

01b9f7 No.1191

>>1189

I'm sure q has some good pedo intel on @Jack.That would be awesome to see him perp walk!

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

01b9f7 No.1192

>>1179

So how much for you first RSA cracking program!

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

ac6203 No.1193

>>1183

>>1184

Teach - good eye.

Following are what I have for all grid entries at (59,5)

(59:5:10) = {59:5:61:19:42:90} = 3780; (x+n)=24x24=576; (d+n)=66x66=4356

(59:5:11) = {59:5:71:21:50:102} = 5100; (x+n)=26x26=676; (d+n)=76x76=5776

(59:5:15) = {59:5:119:29:90:158} = 14220; (x+n)=34x34=1156; (d+n)=124x124=15376

(59:5:16) = {59:5:133:31:102:174} = 17748; (x+n)=36x36=1296; (d+n)=138x138=19044

(59:5:20) = {59:5:197:39:158:246} = 38868; (x+n)=44x44=1936; (d+n)=202x202=40804

(59:5:21) = {59:5:215:41:174:266} = 46284; (x+n)=46x46=2116; (d+n)=220x220=48400

(59:5:25) = {59:5:295:49:246:354} = 87084; (x+n)=54x54=2916; (d+n)=300x300=90000

(59:5:26) = {59:5:317:51:266:378} = 100548; (x+n)=56x56=3136; (d+n)=322x322=103684

(59:5:30) = {59:5:413:59:354:482} = 170628; (x+n)=64x64=4096; (d+n)=418x418=174724

(59:5:31) = {59:5:439:61:378:510} = 192780; (x+n)=66x66=4356; (d+n)=444x444=197136

And here is my walking up formula for a=42, b=90 and a=50, b=102.

Walking up tree 5 iterations from a=42, b=90.

(59,5,10) = {59:5:61:19:42:90} = 3780

(59,5,15) = {59:5:119:29:90:158} = 14220

(59,5,20) = {59:5:197:39:158:246} = 38868

(59,5,25) = {59:5:295:49:246:354} = 87084

(59,5,30) = {59:5:413:59:354:482} = 170628

(59,5,35) = {59:5:551:69:482:630} = 303660

Walking up tree 5 iterations from a=50, b=102.

(59,5,11) = {59:5:71:21:50:102} = 5100

(59,5,16) = {59:5:133:31:102:174} = 17748

(59,5,21) = {59:5:215:41:174:266} = 46284

(59,5,26) = {59:5:317:51:266:378} = 100548

(59,5,31) = {59:5:439:61:378:510} = 192780

(59,5,36) = {59:5:581:71:510:662} = 337620

My walking tree formula seems to iterate only the movements from a -> b. Not sure if this is a bug or a feature.

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

01b9f7 No.1194

>>1171

Getting to the aa bb record is ballgame! I'm working on understanding each of your steps.

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

a92e07 No.1195

>>1193

Ok, I'm with you now.

So does it always work for walking in steps of 5? or n?

I also still don't get how this helps us get to aa*bb, but i'm trying!

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

5f4624 No.1196

File: 6233eb1b2dbbbba⋯.jpg (64.72 KB,660x650,66:65,IMG_1422.JPG)

>>1188

Thanks, good call on examining the record.. But even starting with b equals one, then we need one of the following to solve starting ONLY from c.

1. Where does b always equal 1?

2. A chain of values for a in (e,1), leading to x,t,b,n values?

3. A chain of c^2 patterns in (0,n) leading to precidtable ways to move infinitely thru the cells and elements.

4. I could be wrong. Am I missing something totally obvious?

5. Merry Christmas, Faggots! I really love being here with you nerds. I'm a nerd too. Loving the Math(s).

6. Thanks VQC you faggot! Merry Christmas to you too. We love your excellent blend of math, crazy truth, and fighting them. As our Senpai, we bless you and thank you for sharing with us. You don't "need" us, and we don't "need" you. We're here bc you posed some awesome questions, and we're looking for the answers. Thanks also for being so honest about your personal struggles! I also have trouble drinking too much. Love life tho.

Goodnight fags.

4.

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

a92e07 No.1197

>>1196

Merry Christmas to you VA. And PMA, and Topol, and MA, and Hobo, and AA, and CA (if he's still alive), and Baker and all the other anons!

Merry Christmas VQC, I hope the plan plays out smoothly over the coming days, and I hope we can help you.

I enjoy being here with you all too!

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

ac6203 No.1198

>>1195

>>1197

Happy holidays to everyone.

I adjusted my test case to include the latest walking of the tree using calculated values of d.

Review the TestIterateMovementToAABB line below.

It may look like I'm simply subtracting 1 from t each time, but the reality is that the previous d value is being calculated from the current record using the formula:

return ter.d - 2 * (ter.x + ter.n) + 2 * ter.n;

where ter is the current record.

I think that if we can figure out now how to skip multiple records using a factor, we have a workable solution.

—————————

145=5x29

a x b *=> (1,5,4) = {1:5:12:7:5:29} = 145;

1 x c => (1,61,6) = {1:61:12:11:1:145} = 145;

aa x bb => (0,288,61) = {0:288:145:120:25:841} = 21025;

1 x cc => (0,10368,73) = {0:10368:145:144:1:21025} = 21025;

(0,1) perfect squares to analyze

aa x bb (0,1) => (0,1,61) = {0:1:7320:120:7200:7442} = 53582400;

1 x cc (0,1) => (0,1,73) = {0:1:10512:144:10368:10658} = 110502144;

TestDCalculationFromC

———————

ccna.d = 10512 compared to 10512 = 0

((ter.c - 1) / 2) * (ter.c + 1) = ((145 - 1) / 2) * (145 + 1)

(ccna.d record match!)

TestIterateMovementToAABB

1) (0,1,72) = {0:1:10224:142:10082:10368} = 104530176

2) (0,1,71) = {0:1:9940:140:9800:10082} = 98803600

3) (0,1,70) = {0:1:9660:138:9522:9800} = 93315600

4) (0,1,69) = {0:1:9384:136:9248:9522} = 88059456

5) (0,1,68) = {0:1:9112:134:8978:9248} = 83028544

6) (0,1,67) = {0:1:8844:132:8712:8978} = 78216336

7) (0,1,66) = {0:1:8580:130:8450:8712} = 73616400

8) (0,1,65) = {0:1:8320:128:8192:8450} = 69222400

9) (0,1,64) = {0:1:8064:126:7938:8192} = 65028096

10) (0,1,63) = {0:1:7812:124:7688:7938} = 61027344

11) (0,1,62) = {0:1:7564:122:7442:7688} = 57214096

12) (0,1,61) = {0:1:7320:120:7200:7442} = 53582400

Matching aabbna record found!

(1 x cc).x - (aa x bb).x = 144 - 120 = 24

sqrt( (1xcc).d - (aaxbb).x ) == (axb).a

sqrt( 145 - 120 ) = 5. (a matches!!!!)

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

a92e07 No.1199

>>1198

Good job PMA.

I am worried about the t– though…

I like the process, but so far we're just decrementing x by 2 each time, which is essentially a search for "a".

But I agree that this might unlock the ability to algorithmically move through it.

For this example the n = 61 from 1xc the t == 61 from 0,1 at the end…

Is that a coincidence?

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

ac6203 No.1200

>>1199

>Is that a coincidence?

yes.

There is a formula here.

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

a2017c No.1201

File: e548245b31b1c3f⋯.png (142.3 KB,1054x933,1054:933,previous-d.png)

>>1198

Wow, it works!

(d for t-1) = d - 2(x+n) + 2n

>>1200

But there's no coincedences in maths.

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

01b9f7 No.1202

Goodnight fags.

This is epic!

Merry Christmas!

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

5f4624 No.1203

>>1198

>>1199 Checked!!

All primes, With multiples of 3. Just like column x in row one.

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

5f4624 No.1204

Ugh, this thread sucks. I mean, where is that fag Topol on Christmas Eve? I would love to see ponies, math lsd trips, memes, whatever. Do I really have to go over to ez bake, Topol?

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

a2017c No.1205

File: 4ef4fa15a89a0ea⋯.jpg (101.93 KB,628x709,628:709,niebieskie-włosy.jpg)

Yeah, Chris' Twitter is gone. My DM's with him were deleted.

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

473794 No.1207

>>1198

How long does it take to iterate? It’s mostly multiplication and subtraction and a computer is quite good at those. But 100s of digits?

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

5f4624 No.1208

>>1205

Patriots are winning, Baker! 10 days?

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

a92e07 No.1209

>>1205

Do you know whats happening?

I'm concerned for Chris.

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

a92e07 No.1210

>>1204

+1 for math lsd pics

and +1 for topol summoning generally

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

a2017c No.1211

File: 8129c445b231ae9⋯.jpg (8.41 MB,6004x3847,6004:3847,Christmas.jpg)

File: 101ccc1fd41e36c⋯.jpg (689.72 KB,1600x1043,1600:1043,ośmiornica.jpg)

>>1208

Storm is here already. This is Q's first and last picture.

Note the dates, the weather, and who they were fighting. Pics related.

en.wikipedia.org/wiki/George_Washington%27s_crossing_of_the_Delaware_River

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

3f145c No.1213

>>1211

Lads, think about the challenge we've undertaken at VQC's request. WHEN we solve this, we can make a major contribution to POTUS and our world. Using math. Let's go, Faggots!! Spirits Up!! Christmas is here, let's solve this. We can help with a gift for Christmas.

+++

++

+

———-Freedom.

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

3f145c No.1215

>>1210

Thanks Teach! Merry Christmas! "When the infinite became the finite." Season 1:God Makes Mary Pregnant, via energy beams using incredibly complex math. Stay tuned. Lol, I totally have faith guys. But it's good to laugh at yourself too, Jesus is the man. Merry Christmas, again.

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

a2017c No.1218

File: e9c4b77cfad08eb⋯.jpg (84.85 KB,916x928,229:232,Elliot-Hamilton.jpg)

File: 11dbdd73f00b08e⋯.jpg (80.79 KB,750x1072,375:536,Elliot-Hamilton2.jpg)

File: e215fc208448604⋯.jpg (98.48 KB,813x1024,813:1024,Kate-Morgan.jpg)

>>1215

Yep. (((They))) shill against Jesus.

Pure evil.

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

3f145c No.1219

>>1218

Yeah, they do. Jesus and his teachings are beautiful. BC they love evil and serve it, they hate him. Our spiritual and biological and mental evolution has outgrown them. Jesus is a symphony of love and truth. Religion, different story. I always go to the source document.

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

3f145c No.1220

Yah yah, source documents, etc. just saying, it's Christmas. Love this powerful story. Just like Tolkien.

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

3f145c No.1221

+++

++

+

-

Freedom.

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

815fd7 No.1222

File: 2758dc54a5308c2⋯.png (65.82 KB,784x432,49:27,RootODavid.png)

>>1196

>5. Merry Christmas, Faggots! I really love being here with you nerds. I'm a nerd too. Loving the Math(s).

>6. Thanks VQC you faggot! Merry Christmas to you too. We love your excellent blend of math, crazy truth, and fighting them. As our Senpai, we bless you and thank you for sharing with us. You don't "need" us, and we don't "need" you. We're here bc you posed some awesome questions, and we're looking for the answers. Thanks also for being so honest about your personal struggles! I also have trouble drinking too much. Love life tho.

2nd this, thanks VA, Peace to you!

And to all you other fags, PMA, MA, Teach, Hobo, AA, Topol, VQC, anons, Merry Christmas!

Noted on twitter, sent Chris a Christmas message Christmas Eve, less than hour later account gone. He's been in my thoughts.

All you Anons, please do say a special prayer / send vibes of loving energy for VQC, it can be hard to carry such knowledge for so long, and to struggle, and to fight this fight from the beginning. Praying for Strength, Wisdom and a 'hedge of protection' for you today Chris!

Here's to PEACE and COMPASSION in 2018.

(think we're going to help with the TRANSPARENCY piece!)

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

01b9f7 No.1223

>>1207

>>1198

It won't be as fast as Julian oops Chris says so there is work to do. However the numbers in those cells grow fast. PMA may have already done enough to endanger RSA for those with ill intent.

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

01b9f7 No.1224

>>1196

b = 1 was typo. Its the a =1 b = cc record which is solvable for x and n because e is 0. PMA has put together all the steps you need to move around grid to solve problem. Now it needs speeding up.

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

01b9f7 No.1225

>>1222

Second that.

Pray for Chris!

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

3520dc No.1227

>>1223

So… victory? Is that why stuff went weird last night?

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

815fd7 No.1229

File: c478e6fada73d70⋯.png (308.21 KB,585x771,195:257,12-25-2017 assange.png)

File: 28adb4216ca8735⋯.png (16 KB,596x233,596:233,gabriel-gbstn10.png)

File: b144b6f10eab507⋯.png (194.59 KB,500x581,500:581,12-25-2017 assange2.png)

Hopefully Chris will be back soon, too. See now the tactic? Cut off your followers, cut off your voice. Who's next, POTUS??

Now, where has gbstn10 been??

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

815fd7 No.1230

File: 9acce3aa5058b8f⋯.png (298.52 KB,536x765,536:765,melange-2017.12.24.png)

And thanks Lord Hobo!

btw, 1/2 way through your writeup.

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

01b9f7 No.1231

>>1198

Not sure if you know how far you need to move within (0,1) to find aa*bb but within (0,1) it is pretty easy to move to arbitrary new t from existing record since we know t.

x(t-1) =x(t) -2 for any x and t in (0,1)

d(t-1) = d(t) - 4*(t)

So x(t-m)= x(t) - 2m

d(t-m) = 4*sum of (t+t-1…t-(m-1))

Seems you could iterate more accurate guesses of how far you need to move.

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

01b9f7 No.1233

>>1231

By x(t-1) i mean x for (0,1,t-1) etc.

Sum can be cleaned up by pulling t out.

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

01b9f7 No.1234

>>1231

>>1198

d of (0,1,t-m)=

d of (0,1,t) - (4*t-4(sum of 1+ 2 … m-1))

d of (0,1,t-m) = d of (0,1,t)-4*(t-((m-1)^2)/2)

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

01b9f7 No.1235

>>1234

sorry

d of (0,1, t-m)=d of (0,1,t)-4*(t-m(m-1)/2)

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

01b9f7 No.1239

Tested!!!

Tested!!!

>>1235

>>1198

I'll always be a fag. Posting formulas before testing!

d of(0,1,t-m) = d(0,1,t)- 4*t*m+2*m*(m+1)

for t = 73 d (0,1,73) = 10512

m=12

t-m=61 d(0,1,61)= 7320

10512-4*73*12+2*12*(12+1)=7320

x(0,1,t-m)=x(0,1,t)-2m

x(0,1,73)=144 -2*12=120=x(0,1,61)

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

ac6203 No.1243

>>1239

good job. I'll look into this in a bit a see if it applies to other test cases.

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

01b9f7 No.1245

>>1243

thanks

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

4544f3 No.1248

>>1222

Thanks Mr E!

>>1197

Thanks Teach!

>>1171

PMA, this was a very clear explanation, Thanks!

>>1189

Thanks Baker! Still on the road with family, so this is great.

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

4544f3 No.1249

>>1224

Ahh! Thanks Anon, this is one of the key pieces I’ve been missing from the last few days of advances. Thank you for explaining it clearly!

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

3520dc No.1250

File: c4ab033aefe64ae⋯.png (72.3 KB,1017x785,1017:785,mysterion_rises_by_miltvai….png)

Remember… you guys are protected by a guardian angel!

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

473794 No.1251

So the to do list will be:

1. Speed up PMA's process

2. Validate using very big ints

3. Discover new Fermat primes / Test on RSA2048

4. Describr everything in laymen terms and desemminate over the internet

5. ??????

6. Watch world burn for several weeks/months

This a good time line or what, anons?

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

473794 No.1252

>>1251

During burning of world, VQC will hopefully return and teach us how to break ECC.

Almost everyone's going to switch from RSA to ECC, with RSA broken.

Then we break ECC, even more world burning.

I feel dirty, anons.

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

6682fd No.1254

Could someone please explain PMA's solution again, in practical terms? Stuffed with Polish food and I couldn't understand.. Mersienne primes??

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

6682fd No.1255

Let's all feel the love! This is the best Christmas ever. We finally have a president that loves us.. In the words of Salinger.. One that you just wanna call up and talk to! I am so happy for all of you!

Nothing but a Godly force could bring us together to collectively stare at numbers until something clicks

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

ac6203 No.1256

>>1239

>>1245

confirmed.

using the formula for a new d value is equivalent to what I posted earlier.

return ter.d - 4 * ter.t * m + 2 * m * ( m + 1 );

This works for jumping m levels down.

Excellent anon!

If we know the "m" value, we can jump directly to the aabbna result.

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

6682fd No.1257

>>1256

Omg! Thank you! So close to killing PGP!

WHERE IS CHRIS??! He can be our favorite immigrant! Welcome to the United States!!

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

1f6c20 No.1258

>>1230

In anon-hobo mode as I am visiting the fam. and left my un-rememberable password on a shack PC back under the bridge. I am glad you guys like my work I will write more soon. I have started on some more stuff recently but wanted to toss out a few ideas.

First and foremost. I am guessing this has been worked already. I HOPE this eventuality has been worked, but if not, Chris, this is for you. As this becomes more recognizable and believable I see a mile-wide issue of "capture" What I mean by capture is this. There is probably less than a dozen of us here. I have been archiving everything I can on physical media as well as literally pen-and-paper. I do this because if this thing is captured by the bad guys they will write the eraser immediately and use it against US.

I hope, I REALLY hope there is a "Bomb Shelter" that has been built with ALL the answers in it. Some sort of deadman switch. It would be a catastrophic loss if this fell into the hands of a group of people who would simply lock it away and use it to control and hurt people.

Anyway, my next "chapter" will talk about this. I woke up and saw Chris's twatter down as well as Assange and thought the worst. Now its back but is it back or "BACK" anyway Chris if you dont have a deadman switch then think about making one. I would help but I am not a heavy brain when it comes to some stuff. I would hope Wikileaks maybe help?

Paranoia rules in the hobo camp sometimes so hopefully I need not worry! I hope you all have been having a wonderful Christmas this year. I sure have and am hoping that 2018 will be a year-of-years for us all and not in a bad way. I am going to do my next chapter then start to put some time into an offline archive of sorts. I am envisioning a dozen or so thumbdrives stashed around so that if something nasty happens there are backups. also, paper copies may be valuable.

I have learned long ago that you can be an inch away from a sure-thing level success where there is zero possibility of failure and your enemy is defeated. When you feel that way it probably means you are getting cocky. Always remember that.

Its not over until you have crossed the finish line and the judges have published the results of the race. Getting cocky is how you end up as a hobo under a bridge. Keep your eyes on the target gents, we have a long ways to go.

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

ac6203 No.1259

>>1257

Following are a couple of my test cases, just to emphasize the importance of a formula for "m".

Also, I haven't tested using t and m to move d in the up the tree, or with odd/even values of n.

for c = 145, only 12 iterations to find the value.

for c= 6107, we're up to 480 iterations.

—————————

145=5x29

a x b *=> (1,5,4) = {1:5:12:7:5:29} = 145;

1 x c => (1,61,6) = {1:61:12:11:1:145} = 145;

aa x bb => (0,288,61) = {0:288:145:120:25:841} = 21025;

1 x cc => (0,10368,73) = {0:10368:145:144:1:21025} = 21025;

(0,1) perfect squares to analyze

aa x bb (0,1) => (0,1,61) = {0:1:7320:120:7200:7442} = 53582400;

1 x cc (0,1) => (0,1,73) = {0:1:10512:144:10368:10658} = 110502144;

TestDCalculationFromC

———————

ccna.d = 10512 compared to 10512 = 0

((ter.c - 1) / 2) * (ter.c + 1) = ((145 - 1) / 2) * (145 + 1)

(ccna.d record match!)

TestMLevelJumpingByD

Matching aabbna record found at m=12

(0,1,61) = {0:1:7320:120:7200:7442} = 53582400

(1 x cc).x - (aa x bb).x = 144 - 120 = 24

sqrt( (1xcc).d - (aaxbb).x ) == (axb).a

sqrt( 145 - 120 ) = 5. (a matches!!!!)

—————————

6107=31x197

a x b *=> (23,36,24) = {23:36:78:47:31:197} = 6107;

1 x c => (23,2976,39) = {23:2976:78:77:1:6107} = 6107;

aa x bb => (0,13778,2574) = {0:13778:6107:5146:961:38809} = 37295449;

1 x cc => (0,18641618,3054) = {0:18641618:6107:6106:1:37295449} = 37295449;

(0,1) perfect squares to analyze

aa x bb (0,1) => (0,1,2574) = {0:1:13245804:5146:13240658:13250952} = 1909564816;

1 x cc (0,1) => (0,1,3054) = {0:1:18647724:6106:18641618:18653832} = -121773168;

TestDCalculationFromC

———————

ccna.d = 18647724 compared to 18647724 = 0

((ter.c - 1) / 2) * (ter.c + 1) = ((6107 - 1) / 2) * (6107 + 1)

(ccna.d record match!)

TestMLevelJumpingByD

Matching aabbna record found at m=480

(0,1,2574) = {0:1:13245804:5146:13240658:13250952} = 1909564816

(1 x cc).x - (aa x bb).x = 6106 - 5146 = 960

sqrt( (1xcc).d - (aaxbb).x ) == (axb).a

sqrt( 6107 - 5146 ) = 31. (a matches!!!!)

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

3f145c No.1260

>>1250

Thanks Topol!

>>1254

Seconded! Can SuperFormulaAnon >>1239 give us the quick rundown? I’m following pretty close, but have been with family and would love a hand catching up. I’ve read and caught up on posts, but still working to understand.

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

c75bc0 No.1261

Chris' twitter is back up. Sure hope that shitfy Saudi cocksleeve of a platform dies. Paul nehlen had a good proposal of extending first amendment to social media.

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

8a946c No.1262

>>1259

PMA, you probably already noticed, but it looks like some of your calcs are hitting 32-bit integer overflow limits in the c=6107 example.

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

c75bc0 No.1263

>>1262

Get BigInteger. Computers were built for math!!

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

01b9f7 No.1264

>>1259

Since we were starting from 1 cc record the formula was designed for reducing m. It should work for increasing m just use -m in formula.

In (0,1) n is always odd.

Thanks for testing formula.

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

01b9f7 No.1265

>>1264

I meant formula is designed for reducing t.

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

3520dc No.1266

File: 4257c3c42dc8abc⋯.png (1.5 MB,1776x1776,1:1,MyrimemetamagicMan131344.png)

I mad a tribute to all of (You), {V}, & [Q], SEE?!

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

3520dc No.1267

>>1266

Mad LOVE that is!

KEEP IT UP! YOU'RE ALMOST THERE!!!

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

01b9f7 No.1268

PMA was right yesterday we have more work to do! Even with ability to make large jumps t +- m we don't know where to jump to.If we make a jump the results as far as I know don't tell us if we are any closer to the answer. Its either right or it isn't.

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

a2017c No.1269

File: 8fe3d2c93989849⋯.png (660.78 KB,965x827,965:827,lizak.png)

>>1266

I like the Doctor Who in the middle.

Deplorably glorious!

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

01b9f7 No.1270

Remember no such thing as coincidence. Chris's twatter is back. So is …

Julian Assange!

I believe white hat spooks had to protect certain twatter accounts from new twatter spying

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

5f4624 No.1271

>>1270

I’m glad Chris and Julian are back too! Definitely not a coincidence. Think you’re right, white hats must be helping out.

Twatter, google, you tube, et al need to be busted. Crazy that we’re operating on EU hate speech laws here in The US. It would have been game over if HRC had won. Thank God she didn’t.

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

01b9f7 No.1272

>>1271

100%

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

01b9f7 No.1273

>>1168

Doing some algebra on a+n and knowing it was a perfect square and kept getting /2 inside the sqrt. Thanks for insight.

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

ac6203 No.1274

>>1263

>>1262

will do. figured if I couldn't see a pattern with int, big int wasn't going to add any clarity.

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

a92e07 No.1275

I hate to be that guy, but I fear we're just translating the problem to different variables, but we're unable to do no better than iterate t.

I've been looking at it a look, and I think this may be the case.

Sorry to be a downer.

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

ac6203 No.1276

>>1275

I'm looking a bit closer at the sqrt(n/2) and sqrt(2n) you posted earlier.

What's missing from all of this is an understanding of how the squares resize.

>Sorry to be a downer.

I think we're almost there.

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

a92e07 No.1277

>>1276

I'm working on a different path regarding that actually.

You can kinda swap some variables around to calculate for any integer i, the cell in (0,n) with a=i*i and b=c*c.

If you iterate i, growth in a is quadratic, but growth in n, x, and d are kinda linear (they increase in a arithmetic series).

And at the point that i is a factor of c, x+n / n will be a whole number.

I think this is saying the same thing, we're just increasing the square size, but maintaining the same ratio.

The interesting point to this direction is the sorta linear growth in x,n and d.

I'm not sure if we're just restating the problem again though, stuck with iterating i.

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

1b63bb No.1278

>>1277

I have something different if you want to work on a fresh angle.

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

ac6203 No.1279

>>1278

Sure

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

a92e07 No.1280

>>1278

Feel free to explain it and i'll take a look next.

>>1277

Something very interesting about this approach is the relationship between the x+n/n ratio for the 1xc row, and the a*a x c*c and b*b x c*c row. It always appears to be very close to the first, or in between both.

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

a92e07 No.1281

>>1280

>x+n/n

correction

x+n/x

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

3520dc No.1282

File: bbb6c66ad53508e⋯.png (1.01 MB,1459x1047,1459:1047,Screen Shot 2017-12-25 at ….png)

File: e46d2195586550d⋯.jpg (27.78 KB,740x717,740:717,25552247_10210896235150483….jpg)

File: 646a91c16dd1168⋯.jpg (259.5 KB,566x973,566:973,ea90df53f060f0636811bea15b….jpg)

File: a7879c847f5fc0f⋯.jpg (95.44 KB,600x800,3:4,DFJm4QJXgAAuRLl.jpg)

Hey gooberdoodles…

Guess who has a twitter account again…

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

1b63bb No.1283

>>1281

Given this exact sequence of cells, can you write an equation to plot it's behavior?

Format is in {E:N:D:X:A:B}.

{23:01:83:11:72:96}

{23:02:47:11:36:62}

{23:03:35:11:24:52}

{23:04:29:11:18:48}

{23:06:23:11:12:46}

{23:08:20:11:09:47}

{23:09:19:11:08:48}

{23:12:17:11:06:52}

{23:18:15:11:04:62|

{23:24:14:11:03:73}

{23:36:13:11:02:96}

{23:72:12:11:01:167}

See how N and A trade places? Anyway the big question with this one is predicting how D changes. If you can figure out A and B as well, that'd be a huge help.

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

a92e07 No.1284

>>1283

This is assuming a fixed e?

While I'm taking a look, do you mind explaining your reasoning?

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

a92e07 No.1285

>>1283

Starting at 72.

36 = 72 * 1/2

24 = 36 * 2/3

18 = 24 * 3/4

etc.

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

a92e07 No.1286

>>1283

>{23:18:15:11:04:62|

Also, this line looks very unique to me…

Its the only one ending in |

;)

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

a2017c No.1288

File: f05415f2328dc74⋯.png (154.92 KB,1084x1245,1084:1245,pogłaskać.png)

>>1282

Kek!

>>1259

Jeez, catching up to you is daunting.

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

1b63bb No.1289

>>1286

Typo, hehe. The idea involves moving on fixed axis, and relates to my X as T theory. This is very helpful. So A is predictable, and thus D?

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

a92e07 No.1290

>>1289

Correct, d = a + x, and x is constant.

n is the reverse set, obviously, e is fixed, b can be calculated.

There should even be a way to jump any amount of records algebraically.

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

a92e07 No.1291

>>1282

Hey topol, any cool math visualizations?

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

8a946c No.1292

>>1283

So it looks like the pattern is driven by x^2+e equaling 144 as a fixed constant. So n*(d-x) = n*a = 72, and thus n and a can take on all the various factor combinations of 72, which also gives d with the offset of 11 from a. And b=d+x+2n.

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

3520dc No.1293

File: 98ec6490a8fcd4e⋯.jpg (358.14 KB,530x826,265:413,6985acdcd8a697977ac3c85281….jpg)

File: 094acaa1fdcb4af⋯.jpg (39.9 KB,425x567,425:567,7a12b596230b353219a0c6c574….jpg)

File: e01808d0f0894ad⋯.png (51.75 KB,1000x1000,1:1,Screen Shot 2017-11-19 at ….png)

File: 53bf27a5e08480e⋯.jpg (13.28 KB,650x381,650:381,ptcUxkp.jpg)

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

3520dc No.1294

File: 3de1bf87b0f213c⋯.jpg (97.31 KB,736x767,736:767,3de1bf87b0f213c0c5c60d11dd….jpg)

File: bedc0a2ec272e05⋯.jpeg (101.79 KB,441x1000,441:1000,cb5a23d9d5b72bc5ed2a08c86….jpeg)

File: a1db6debd628df2⋯.jpg (277.23 KB,1618x1000,809:500,575c47c59b6743f397640dfa48….jpg)

File: 0c43c4c1b3a0f5e⋯.jpg (59.02 KB,580x470,58:47,f7bc492e792418aab35177ecf4….jpg)

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

3520dc No.1295

File: e77847fd591ea2c⋯.png (219.48 KB,524x755,524:755,65f9b96c50d5ffbaf96cd2749e….png)

File: 30b2e74d7a269cd⋯.jpg (259.32 KB,1440x1440,1:1,30b2e74d7a269cdc4890247744….jpg)

File: d8e09c73c6fce12⋯.jpg (150.3 KB,1440x1425,96:95,7f714b5fd0dd7dac959fbea5f8….jpg)

File: 1fca6db077e1617⋯.jpg (49.02 KB,700x600,7:6,Minecraft-Creeper-1.jpg)

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

a2017c No.1296

So, I'm catching up now, what is m?

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

a92e07 No.1297

>>1293

>>1294

Math is so beautiful.

I am in the process of making my own mini tesla coil too!

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

1b63bb No.1299

Here's another relational puzzle.

{E:N:D:X:A:B}

Set 1:

{016:001:048:008:040:058}

{033:001:048:007:041:057}

{048:001:048:006:042:056}

Set 2:

{000:002:048:012:036:064}

{027:002:048:011:037:063}

{052:002:048:010:038:062}

Set 3:

{008:003:048:014:034:068}

{041:003:048:013:035:067}

{072:003:048:012:036:066}

Set 4:

{000:004:048:016:032:072}

{039:004:048:015:033:071}

{076:004:048:014:034:070}

Set 5:

{021:005:048:017:031:075}

{064:005:048:016:032:074}

{does not exist}

Set 6:

{036:006:048:018:030:078}

{083:006:048:017:031:077}

{does not exist}

Set 7:

{045:007:048:019:029:081}

{096:007:048:018:030:080}

{does not exist}

In fact, where D = 48, no records exist past E = 96. The patterns within sets are clear, what about the pattern between sets?

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

a2017c No.1300

>>1297

Please be careful.

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

1b63bb No.1301

The goal I'm working towards is pinning variables on certain axis, then moving along a different pinned axis. I think I've figured out what makes N populated or not. I'm not sure stepping through T (x for me) is possible.

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

a2017c No.1302

Seriously, what is m? Found no definition of it in this thread.

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

473794 No.1303

>>1302

It's the amount of t to get from the ccna record to the aabbna record. Still need a quick way to establish the aabbna.t , though

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

a2017c No.1304

>>1303

Is there a formula for it? A way to calculate it if I know the rest of the values?

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

01b9f7 No.1305

>>1304

>>1239

m is for Moving through t. The formula is for (0,1) records.

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

8a946c No.1306

>>1299

In general e is always going to be bounded by 2d, because (d+1)^2 = d^2 + 2d + 1.

That is, if the remainder e gets up to 2d+1, you just tick over to records using the next larger d value.

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

3f145c No.1307

>>1301

Hello MA! Thanks a super interesting approach. The graphical output all shows patterns of primed flowing from the axis.

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

945313 No.1308

>>1099

Not sure if these have been answered:

>Square a value c, where c is the product of two different primes.

>What are the values of n in column zero where these appear?

>What is the value of d where these appear?

For any value c, the cc record can be created via:

e = 0

n = ((c-1)^2)/2

d = c

x = c - 1

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

898cfe No.1309

>>1099

Okay, so I'm back after spending the holidays with family.

I took another look and ended up rewriting my code and then took another look at this crumb.

So, 3 * 5 = 15. 15 * 15 = 225. It seems that 225 only appears in the following (0, n):

(0, 2, 255, 30, 225.0, 289.0)

(0, 8, 285, 60, 225.0, 361.0)

(0, 18, 315, 90, 225.0, 441.0)

(0, 32, 345, 120, 225.0, 529.0)

(0, 50, 375, 150, 225.0, 625.0)

(0, 72, 405, 180, 225.0, 729.0)

(0, 98, 435, 210, 225.0, 841.0)

I looked at n up to 5000 and didn't find any more occurrences of 225.

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

898cfe No.1310

>>1309

After looking more at the squared of c (where c = a * b, a and b are primes and a != b) they all appear to be in (0, 2), (0, 8), (0, 18), (0, 32) etc

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

945313 No.1311

>>1310

>they all appear to be in (0, 2), (0, 8), (0, 18), (0, 32) etc

2*(1^2)

2*(2^2)

2*(3^2)

2*(4^2)

etc.

This record is interesting. How did you get to this one?

(0, 2, 255, 30, 225.0, 289.0)

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

898cfe No.1312

>>1310

So I think I got the equation done:

2(x + 1)^2

That equation gives you the 'n' for (0, n) where c^2 is set as 'a'.

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

898cfe No.1313

>>1311

Brute force. I wrote some python code to enumerate (0, n) looking for a number cc. I set it to go up to n = 5000.

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

945313 No.1314

>>1312

>2(x + 1)^2

and where is the x coming from?

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

898cfe No.1315

>>1312

Note though, I don't know if there is any special relationship between x and a, b or c^2.

Also: x in that equation does not relate to x from the elements.

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

898cfe No.1316

>>1314

I should really have used another variable name. It simply is a number from 1 and up. I don't know anything about the relationship yet between this number and the c^2.

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

898cfe No.1317

>>1316

For a = 3, b = 5

The record with a = 3^2 and b=5^2 only exists in (0, n) where n is expressed through that equation.

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

898cfe No.1318

>>1317

Err, I'm a bit fast and loose with the language. I don't know if they are _ONLY_ in (0, n), but where they are in (0, n), the n can be expressed as 2 * (i + 1)^2 for some i.

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

01b9f7 No.1319

>>1169

PMA check out this record!

{0,8,21,12,9,49}

It doesn't fit the the new.d formula

there are lots more!

When you start at 1 cc you get different patterns

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

01b9f7 No.1320

>>1309 excellent that's what VQC was talking about.

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

945313 No.1321

>>1318

Very good.

New avenue to explore.

Looks like first record in the a = c^2 series can be created via:

e = 0

x = 2*c

a = c^2

Will iterate these patterns shortly.

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

01b9f7 No.1322

For all (0,n) where n =2*(i)^2 where i is integer

all a and b are perfect squares.

All aa*bb records are (0,n) fitting 2,8,28,32,50 pattern

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

01b9f7 No.1323

In (0,1) all a and b fit 2,8,18,32,50 also

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

01b9f7 No.1324

We are going to crack this shortly

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

3520dc No.1325

File: 511d0216a8a3bbc⋯.png (563.82 KB,651x850,651:850,meinklopp.png)

Sending <;3=

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

8a946c No.1327

>>1309

You may want to check your code for why you didn't find any more in the pattern.

The next record in the sequence containing 225 is (0, 128, 465, 240, 225, 961), and there should be an infinite number of them afterwards.

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

b15a15 No.1329

File: e5dc44f42a4c5a2⋯.jpeg (190.2 KB,1428x892,357:223,8C33A01E-E7A3-4747-AC7A-D….jpeg)

I’m no mathfag but I am an intuitivefag. Saw related pic and was compelled to drop it here. God Speed Anons!

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

3520dc No.1330

File: cfba5ca50be4f26⋯.jpg (81.33 KB,640x853,640:853,21231743_1440341769384864_….jpg)

File: 6e8737f2f15b286⋯.png (198.93 KB,500x300,5:3,walrus.png)

File: b53ad19b6795ba6⋯.jpg (46.25 KB,640x640,1:1,K82MYOA.jpg)

File: c85d74e1cc09463⋯.jpg (449.71 KB,1280x960,4:3,tumblr_n3doidd0Kk1qze1jro1….jpg)

>>1329

Hello fellow AMuseAnon!

You're in for quite a ride!

Please step into mein oven…

Und find ze study guide.

Auf Wiedersehen!

>>846

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

b15a15 No.1332

File: 940b1497ef38cc1⋯.jpeg (78.04 KB,487x604,487:604,E4244EA5-56F7-4248-B071-1….jpeg)

>>1330

Thanks brother… been lurking and chatting w Chris before I knew he was VQC (Intuitive/synchronicity hit). Wild ride indeed! Divine synchronicity going exponential… loving it all! Blessings to all!

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

898cfe No.1334

>>1327

Oh sod, you're right on both accounts.

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

898cfe No.1335

>>1327

Not sure why it didn't print the 128 for 225 though. It should have. Which means my method for generating (e, n) records might be off.

The script generates (0, n) for n > 1 up to 300 (but I tried for up to 5000 for 225) and compares 225 with the generated a. So it should have matched if my code was correct.

I'll debug it. Thanks for pointing out my mistake

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

a2017c No.1336

>>1334

>>1335

When I followed the directions:

set e to 0

set x to 2c

for c = 145

the cell I found had c as a instead of c^2

(e, n, t) = (0, 290, 146)

{0:290:435:290:145:1305}

now, the way I found this cell was by searching for cells that follow the rules of the VQC and the equations

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

a2017c No.1337

The element that I was looking for is (e, n, t) = (0, 288, 61).

The t value might be off, haven't actually mastered that in my program.

{0:288:145:120:25:841}

841 = 29^2

25 = 5^2

21025 = 145^2

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

898cfe No.1338

>>1335

I don't think I've managed to get a method to generate N's as well as I think.

What I've done is make a program that takes in an e and an n. Then it will look at (e, 1) and start looking at the factors there.

It's kind of simple though. If an a does not exist in the list, we add it. Then for each new a we check if it is divisible by any factors in the list. If it is, we divide a by that factor and add the divided part to our list.

It also adds every 'a' to the factor list as every 'a' is also an n in e.

However, my enumeration isn't complete as showed by >>1327. For 225 it failed to find 128.

Has anyone managed to get a proper method for enumerating (e, n)?

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

898cfe No.1339

>>1327

Just want to point out though that 128 does fit the 2 * (x + 1)^2 pattern

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

3520dc No.1340

>>1301

Heya!

Can you figure out a way to do all of this with redstone dust?

I don't know how you'd set it to generate stuff but that'd be a hell of a light show.

Don't forget, someone built a working Pentium in Minecraft and immediately got scooped up by IBM.

Related?

I wonder…

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

898cfe No.1341

>>1339

Okay, I've tweaked the algorithm and it's now finding a whole lot of n's for 225.

I'm not sure that it will help thought. But at least it is more correct.

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

945313 No.1342

>>1309

>>1341

I've updated my test cases to include iterating at a=c^2. See FindValuesOfBFromCSquared.

Interesting is that at m=5, where m is a multiple of x = 2 * c, the square root of b is the prime b squared value we are looking for.

This happens also for different c values, but many multiples lower.

Following is the latest example for c=15:

—————————

15=3x5

a x b *=> (6,1,1) = {6:1:3:0:3:5} = 15;

1 x c => (6,5,2) = {6:5:3:2:1:15} = 15;

aa x bb => (0,2,4) = {0:2:15:6:9:25} = 225; (x+n)^2=8x8=64; (d+n)^2=17x17=289; sqrt(n/2) = 0;sqrt(2n) = 1;

1 x cc => (0,98,8) = {0:98:15:14:1:225} = 225; (x+n)^2=112x112=12544; (d+n)^2=113x113=12769; sqrt(n/2) = 7;sqrt(2n) = 14;

TestCalculationsFromC

———————

cc.n = ((c-1)^2)/2 = ((15-1)^2)/2 = 98;

cc.d = c = 15;

cc.x = c-1 = 14;

ccna.d = ((c-1)/2)*(c+1) = ((15-1)/2)*(15+1) = 112;

TestMLevelJumpingByD

(0,1,7) = {0:1:84:12:72:98} = 7056

(0,1,6) = {0:1:60:10:50:72} = 3600

(0,1,5) = {0:1:40:8:32:50} = 1600

(0,1,4) = {0:1:24:6:18:32} = 576

Matching aabbna record found at m=4

FindValuesOfBFromCSquared

m=1: (0,2,16) = {0:2:255:30:225:289} = 65025;

m=2: (0,8,31) = {0:8:285:60:225:361} = 81225;

m=3: (0,18,46) = {0:18:315:90:225:441} = 99225;

m=4: (0,32,61) = {0:32:345:120:225:529} = 119025;

m=5: (0,50,76) = {0:50:375:150:225:625} = 140625; sqrt(b) == ( p.b * p.b ) Sqrt(b)=25; p.bsquared=25

m=6: (0,72,91) = {0:72:405:180:225:729} = 164025;

m=7: (0,98,106) = {0:98:435:210:225:841} = 189225;

m=8: (0,128,121) = {0:128:465:240:225:961} = 216225;

m=9: (0,162,136) = {0:162:495:270:225:1089} = 245025;

m=10: (0,200,151) = {0:200:525:300:225:1225} = 275625;

m=11: (0,242,166) = {0:242:555:330:225:1369} = 308025;

m=12: (0,288,181) = {0:288:585:360:225:1521} = 342225;

m=13: (0,338,196) = {0:338:615:390:225:1681} = 378225;

m=14: (0,392,211) = {0:392:645:420:225:1849} = 416025;

m=15: (0,450,226) = {0:450:675:450:225:2025} = 455625;

m=16: (0,512,241) = {0:512:705:480:225:2209} = 497025;

m=17: (0,578,256) = {0:578:735:510:225:2401} = 540225;

m=18: (0,648,271) = {0:648:765:540:225:2601} = 585225;

m=19: (0,722,286) = {0:722:795:570:225:2809} = 632025;

m=20: (0,800,301) = {0:800:825:600:225:3025} = 680625;

(1 x cc).x - (aa x bb).x = 14 - 6 = 8

sqrt( (1xcc).d - (aaxbb).x ) == (axb).a

sqrt( 15 - 6 ) = 3. (a matches!!!!)

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

8a946c No.1343

>>1342

PMA, you may have a bug in your sqrt() routine, since for n=2 it's saying sqrt(1)=0 and sqrt(4)=1.

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

945313 No.1344

>>1343

Thanks. I'm using the sqrt big number function vqc originally posted. Do you have a better alternative?

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

898cfe No.1345

>>1342

One thing I've noticed is that for the (e, n) where a = a*a and b= b*b the d is equal to a * b.

I don't know how it will help, but at least it is a reoccuring pattern I've noticed.

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

a2017c No.1346

>>1344

>>1343

It has an error in tiny numbers.

>>1345

That's completely meant to happen.

sqrt(c^2) = c

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

945313 No.1347

>>1342

Just a reminder, there is a pattern to the n component in these records.

n = 2*(m^2)

If n is the key to breaking this, then we need to figure out the value of m from either our (1xc), (1xcc) starting positions.

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

a2017c No.1348

File: b19aa643f610e98⋯.png (38.01 KB,1282x866,641:433,1.png)

File: 214fe05178f6f74⋯.png (13.43 KB,654x169,654:169,2.png)

I've updated my program.

https://anonfile.com/TeH6q3d8bd/VQCGUI_v2.7z

Run same as before, just run the .jar

Source included

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

1a4c93 No.1349

>>1344

Install Java 9, superior BigInteger class.

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

945313 No.1350

>>1349

sorry. c# here. using BigInteger.

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

a2017c No.1351

File: ec81c3721610e75⋯.gif (797.01 KB,800x503,800:503,Murica.gif)

>>1349

>>1350

Meh you won't need performance at all when we figure all of this stuff out. I'm just glad to finally be helping again.

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

a2017c No.1352

File: d047ef8557d20fa⋯.webm (562.6 KB,1024x502,512:251,meme.webm)

>>1349

Speaking of that, have you had any issues with Java 9? I've held back switching to it mainly because I'm afraid that there will be unfixed bugs.

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

1a4c93 No.1353

>>1352

This is the only thing I've just started to use it for, and that's just because there are more functions in the BigInteger class over the Java 8 version.

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

3520dc No.1354

File: e06ab1bca4624e4⋯.png (449.46 KB,724x1024,181:256,3e4fbf1e1cd95e6b224c738e94….png)

File: c2331d33e13e7b8⋯.jpg (209.97 KB,640x492,160:123,pokemon-right-in-the-child….jpg)

File: 263c20b91f40cb6⋯.jpg (105.02 KB,640x360,16:9,pokemon-brazzers_gp_246091….jpg)

File: 6c7f7549f98000f⋯.jpg (64.14 KB,900x281,900:281,12400497_10153275121005686….jpg)

File: 169769f4b1538f7⋯.jpg (56.62 KB,446x350,223:175,169.jpg)

>>1352

(whoever I told I'd use it, I'm usin' it.)

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

ac6203 No.1355

>>1342

Just a little update.

>>1099

>The pattern GROWS in a certain way as n increases in column zero.

>This pattern is related to the pattern across row one (e,1)

Not sure if this was what VQC was talking about, but I've found a way to increment by c in (e,n).

Example output:

TestGrowingFromC

m=1: (6,5,7) = {6:5:27:12:15:49} = 735;sqrt(b)=7;

m=1: (6,11,10) = {6:11:33:18:15:73} = 1095;sqrt(b)=7;

m=2: (6,59,22) = {6:59:57:42:15:217} = 3255;sqrt(b)=14;

m=2: (6,77,25) = {6:77:63:48:15:265} = 3975;sqrt(b)=14;

m=3: (6,173,37) = {6:173:87:72:15:505} = 7575;sqrt(b)=22;

m=3: (6,203,40) = {6:203:93:78:15:577} = 8655;sqrt(b)=22;

The records are being created 2 ways for each iteration of m.

Method one:

BigInteger d = 2 * ter.c * m - ter.d;

BigInteger a = ter.c;

TheEndRecord eda = TerFactory.CreateForEDA( ter.e, d, a );

Method two:

BigInteger d2 = 2 * ter.c * m + ter.d;

BigInteger a2 = ter.c;

TheEndRecord eda2 = TerFactory.CreateForEDA( ter.e, d2, a2 );

Don't know if any of these records are related to a solution.

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

a2017c No.1356

>>1355

If I knew the factorization already how would I find m? You really haven't made this clear if you want anyone to follow. My friend could not either, and he is a mathematician.

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

a2017c No.1357

>>1356

Although that's not such a bad thing. Most mathematicians would completely dismiss what we're doing.

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

3520dc No.1360

File: 7f635959b0e5ea8⋯.jpg (27.07 KB,438x395,438:395,11391774_411833622337774_9….jpg)

File: c3e2e52da523c2e⋯.jpg (20.12 KB,480x720,2:3,11150942_411833395671130_2….jpg)

File: 763b7debdb35d88⋯.jpg (72.18 KB,574x574,1:1,1510648941655.jpg)

File: bcd75fcb5428838⋯.jpg (494.7 KB,1440x1878,240:313,1510070727287.jpg)

>>1357

Sounds like the goal is to be speaking so correctly that they can't dismiss you.

They're all about dat proof, right?

Don't believe it til they see yet?

Yet…

Looked how far unbridled ponies have gone on faith and friendship alone?

Bronies is a no bueno title.

Leaves out the Pegasisters.

I just love Love.

Don't let the doubting thomases and demotivation shills waiver your faith.

You can already see you're on solid footing when you walk this path.

Keep going.

Finishing this leg only leads to putting the next foot down.

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

a2017c No.1364

For fucks' sake, somebody aid me in dropping this nuke on the world's infosec!

I've been studying 0,n intensely. Ready to follow along!

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

99edb0 No.1365

It's been way too long since I paid enough attention to follow. I read the parts of the thread I missed and I have barely any idea what anyone is talking about. So does >>1342 mean we're there? I might try to turn all of this algebra into another part of those guide things I was working on since they got positive feedback.

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

898cfe No.1366

I feel a bit stuck.

I'm looking for patterns, but without knowing exactly what I feel stuck. It's like you can spend years pouring over any and all patterns in this grid.

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

01b9f7 No.1367

>>1355

Did you or someone else post a derivation for the (0,n) -> (0,1) transformation using na.

I missed it.

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

945313 No.1368

>>1365

We're not there yet, as far as I know.

We have been exploring the grid through various combinations of c^2.

Iterating various results in the (0,n) and (0,1) spaces using a multiplier (m) has exposed a few potential matches.

>>1367

To move from (0,n) to (0,1), simply create a new record where e=0, n = 1, and a = n*a.

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

3f145c No.1369

>>1360

>>1364

>>1368

>>1367

Hello Anons! I'm still working too, let's keep going! TBH I've been having trouble keeping up, (with PMA that glorious faggot, lol) but I'm still looking at (e,1) and (0,n). Thanks Topol for the encouragement! I'm seeing patterns everywhere, I keep thinking about VQC's crumb: "how do we USE the row and column to get what we want?" Seems like the c^2 approach is helping us find related c, cc, aa, bb much further on in the record, with much larger c. I'm still analyzing patterns in row one, and working from c to derive all vars. One question I do have is this: are there multiple answers for a given c? Like, different small and big squares that still equal c? Also, where's Teach? He must be cooking something up.

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

8a946c No.1370

>>1369

For c=a*b where a and b are primes, there are only two differences of squares that work, one trivial (corresponding to c=1*c), and the other true solution with c=a*b.

If c has additional factors (like the aa*bb cases), there will be additional solutions, though.

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

3f145c No.1371

>>1370

Thanks for the clarification! So if the factors of c are prime, pretty much there's only one answer. If there are compound factors of c, there could be multiple correct answers for the diff of squares. Just thinking aloud over here. I'll keep working.

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

945313 No.1372

>>1369

Just want to share an example of an idea that looks promising, but doesn't work when applied to different test cases.

—————————

21=3x7

1 x c => (5,7,2) = {5:7:4:3:1:21} = 21;

a x b => (5,1,1) = {5:1:4:1:3:7} = 21;

1 x cc => (0,200,11) = {0:200:21:20:1:441} = 441;

Searching through the (0,n) space where a = c^2, we find an interesting record where the sqrt(b) equals b^2 from our desired result.

m=14: (0,392,295) = {0:392:1029:588:441:2401} = 1058841; sqrt(exa.b) == ( p.b * p.b ); Sqrt(b)=49; p.bsquared=49; p.b=7;

For this record, we know e = 0, and a = c^2, and a few other things about n. sqrt(n/2) = 14, which equals m (a multiplier used to loop and create records).

We need one more formula or variable in order to construct this record directly, so I have been trying to back into a solution.

Various examples of determining the new n from the (1xc) record:

new.n = (c^2 - n^2) = (21*21) - (7*7) = 392

new.n = 2*((c-n)^2) = 2*((21-7)^2) = 392

Also tried calculating the new.d from various combinations, but nothing holds up yet.

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

8a946c No.1373

>>1371

Yep, exactly. This is because you can transform a difference of squares into a two-part factorization and vice-versa using y^2-z^2 = (y+z)(y-z).

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

01b9f7 No.1376

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

5ec6d6 No.1377

File: 2498625b762559f⋯.jpg (71.55 KB,640x644,160:161,VQC-pls-help.jpg)

We need more clues, we're too retarded.

VQC please.

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

3520dc No.1378

File: f8efd1799568703⋯.jpeg (110.04 KB,928x991,928:991,Pz6MylBb.jpg-large.jpeg)

File: 83abb40e795d2f2⋯.jpg (26.97 KB,640x340,32:17,unlZlPhK.jpg)

File: 9dadb8c4c3c6779⋯.jpg (12.99 KB,248x145,248:145,tripletorus.jpg)

File: 6d4d5dfa8779e99⋯.jpg (65.8 KB,356x522,178:261,wlAN1p3m.jpg)

>>1377

That's all you're getting for now.

Use it wisely.

And have more dag blasted faith in your abilities.

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

273212 No.1379

>>1377

Need to figure out the old clues before getting new clues. It's not enough to be given the answer.

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

d6eaca No.1380

I will have more time to post tomorrow.

Thank you for your patience.

Tomorrow I will show the way in which na and (n-1)a relationships between a[t] and d[t] in row 1 cells (e,1) and the pattern in column zero (n,0), these can both be used to factor arbitrary c in < O(log l) where l is the length of c in bits.

Thank you again for being patient.

After this, we will demonstrate on the longest (2048 bit) RSA number and then factor the remaining numbers.

Then we will set up a new thread for elliptic curve discussions including why Fermat's Last Theorem took so long and required complex new objects (unnecessary).

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

01b9f7 No.1381

For a and b prime

a*b=c

There is a record (0,n,t) {0,n,c,x,aa,bb}

n = 2*tt

2t=sqrt(bb)-sqrt(aa)

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

3520dc No.1382

>>1380

HEAR THAT PATHGAWDS?!

YOU HAVE A POP QUIZ!

DON'T LET HIM BEAT YOU TO IT!

FOLLOW THE CLUES!

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

273212 No.1383

>>1382

Send me your energy Topo, I'm near (The End).

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

a92e07 No.1384

>>1380

Thank you man, I can't wait!

You're incredible Chris!

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

3520dc No.1385

File: fee8ce806173880⋯.png (42.52 KB,286x200,143:100,Fire the bass cannon _ea09….png)

File: 09dd6ddf8877350⋯.png (103.7 KB,500x525,20:21,tumblr_lxm1z3YAgN1qch9x6.png)

File: 925686172f70663⋯.jpg (27.16 KB,480x360,4:3,hqdefault (1).jpg)

File: 530e4253dc636fb⋯.jpg (29.47 KB,614x528,307:264,Friendly-Enderman_1526066.jpg)

>>1383

I GOTCHU FAMBALAMADINGDONG!

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

01b9f7 No.1386

any t

d of (1,1, t) = 2*tt

a of (0,1, t) = 2*tt

all (0,n) n = 2*tt a and b perfect squares.

for {0, n, c, c-1, 1, cc) n=2*TT is very large because N is huge.

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

01b9f7 No.1387

We know T and VQC will show us how to use

(1, 1 ,T) record and (0, 1, T) record to find

small t (0, 2*tt, ?) {0, 1, c, x, aa, b} record

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

898cfe No.1388

>>1380

Oh boy. I'm sad and happy. Sad that the greatest puzzle I've been working on for a long time is revealed, but also happy for it.

I've been investigating these (0, j) for 2 * (i + 1)^2 and found some interesting results. Will post shortly, just have to gather my thoughts and code.

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

5f4624 No.1389

>>1372

Thanks PMA! Reviewing now.

>>1373

Thanks Anon, appreciate your knowledge.

>>1379

Agreed, MA. It’s not enough to be given then answer. How’s your theory coming along?

>>1382

Topol is right! Pop quiz lads, we gotta make Senpai proud. How can we move the ball forward?

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

945313 No.1390

>>1380

can't wait.

I believe the following examples apply to the na and (n-1)a references for c=145.

145=5x29

a x b *=> (1,5,4) = {1:5:12:7:5:29} = 145;

a x b (n-1)a *=> (1,1,4) = {1:1:32:7:25:41} = 1025;

1 x c => (1,61,6) = {1:61:12:11:1:145} = 145;

1 x c (n-1)a => (1,1,6) = {1:1:72:11:61:85} = 5185;

.>>1383

would love some of that insight.

>>1389

Been all over the place searching. Still no clear path to a solution.

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

898cfe No.1391

>>1388

Okay, so I've been digging a lot through patterns for a and d for (e, n). And I've found a lot of exciting things.

For these (0, n) where n = 2*(i + 1)^2 I've discovered a way of finding aa*bb records. Unfortunately it's not as fast as VQC's method, but it's a step in (at least) a direction.

So let's start with these (0, n). aa*bb records will all appear in (0, n) where n = 2*(i + 1)^2 for some i. This i is not easily found and is n + (x - 1). For a c with two primes there exists two records. One for aa * bb and one for a=1, b=cc.

The record for a=1, b=cc is easily found as it is at i = n + (x - 1) which can be found by setting a=1, b=cc and generating that record. I haven't found much use for this record, but I haven't ruled out any usefulness neither.

The other record can be found by iterating over the possible (0, n). During my search this morning I discovered an equation for getting d[t] for any t in (0, n) (fitting the equation mentioned). I used some algebra and found an equation for reversing this. That is, finding t for a d. This means if I know the n where aa*bb appears in, finding the t for that record is done in constant time.

This works fine as aa*bb will have d = cc so I find a t where d = cc for (0, n), but then again I have to iterate through the different n's, which is a brute force method.

This yields a nice result for small values, but won't work for big numbers as RSA-100.

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

273212 No.1392

File: b1e59573864d968⋯.jpg (996.56 KB,1676x1014,838:507,WhyTisAlie1.jpg)

Alright guys, here's my presentation on why T is a lie. This is N=1, with +E extending to the left. X is used as Y (T/height) variable. Very predictable results. The home row we've come to know and love.

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

273212 No.1393

File: 65d69a65adc1163⋯.jpg (927.47 KB,1676x1014,838:507,WhyTisAlie2.jpg)

Now this is N=2. This row is more complex, with gaps, and a sloped start to X. But this row is still quite predictable.

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

273212 No.1394

File: 8c2ada09908617f⋯.jpg (682.28 KB,1676x1014,838:507,WhyTisAlie3.jpg)

Now N=3. Now we have two new types of N. One is still evenly spaced, but spaced larger than before, and the other is two in quick succession, followed by a gap. Together, these make little macaroni noodles in the sky. The slope has also increased.

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

273212 No.1395

File: 3ef63d79e7e5914⋯.jpg (559.59 KB,1676x1014,838:507,WhyTisAlie4.jpg)

Now N=4. It has become angry by the assumption that it could behave well in a simple equation. Sure, there's a pattern. But it wants blood.

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

273212 No.1396

File: e978f27368a8637⋯.jpg (591.96 KB,1676x1014,838:507,WhyTisAlie5.jpg)

N=5. The Grid has become sentient and is plotting against you.

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

273212 No.1397

File: 45e924a716cd98e⋯.jpg (394.97 KB,1676x1014,838:507,WhyTisAlie6.jpg)

N=6. The Grid has taken the form of a fish. We're at 4 distinct patterns of X now.

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

273212 No.1398

File: 33a09df1a8a5281⋯.jpg (286.26 KB,1676x1014,838:507,WhyTisAlie15.jpg)

N=15. Patterns are now melding and need to be iterated and measured.

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

a2017c No.1399

>>1398

Interesting. I am paying attention.

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

273212 No.1400

The best I've been able to do so far is pinpoint X on N2, but pinpointing X on N3 is fucking hard because of the damn macaronis. You can use N2's X to approximate N3's X, but approximately in an exponential system is not very helpful.

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

3520dc No.1401

File: 191a70f3b2a7518⋯.png (14.57 KB,2048x512,4:1,d70a0814916658e8e8e4c83b34….png)

>>1398

I fucking love you.

You brought the wavey waves back!

Lel spirals…

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

3520dc No.1402

>>1401

though…. now in the opposite direction… interesting….

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

a2017c No.1403

File: e8a1e8d663994d6⋯.png (272.93 KB,832x960,13:15,sukienka.png)

>>1401

Eat me

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

273212 No.1404

Anyway, I guess if T is a real variable, it takes not only X, but E and N as inputs. Which somehow equal one. Then, only changing X by a variable amount, equals 2. Then changing it an different amount, equal 3.

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

3f145c No.1405

>>1392

Interesting MA! TBH, t is derived from x, so we could do without it, or just rework any equation using t to flow from x instead.

>>1404

This could work too. If we can find a way to make t relevant to increasing n values. Or, maybe t helps us with factors in row 1, and then m or cc as B.B. helps us in column one, and where the two meet (e,n) is our spot?

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

3f145c No.1406

>>1405

And we already know e, (and factors of a for that e column)so the c^2 cc aa bb records help us navigate down to the proper n level? Thinking out loud here.

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

63fecf No.1407

File: e1aa14d53740fe5⋯.png (927.56 KB,1280x960,4:3,quaternion-bunny.png)

File: 85cb9698d0b3b98⋯.jpg (706.25 KB,1500x1125,4:3,Juliaquaternion01a.jpg)

File: 6cb9b3686bcbde6⋯.jpg (209.66 KB,894x894,1:1,quaternion_julia_bobble_ba….jpg)

File: 01b18d2da38d9f0⋯.jpg (428.44 KB,1024x768,4:3,Julia-Quaternion-spheres-l….jpg)

>>1378

Nice little touch of Rainbow in the Ethereal Space - pretty awesome actually.

And the Serco spider is a nice catch.

Lots of tech/players behind that pico-sync.

Triple-Toroid…

- Dude, you done hit a four-fer, 444 (that's Four4Four) - knockin' them quaternions outa tha park!

-ok, so some quaternion Julia's back at 'cha PATHfags. Follow the quaternion rabbit.

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

273212 No.1408

>>1407

I say we skip the ECC VQC and design a new VQC to calculate exactly how intelligent Topolanon would have to be to meme at his level.

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

3f145c No.1409

>>1408

Seconded! Can’t stump the Trump, can’t topple the Topol.

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

a2017c No.1410

File: cdb3a676f82d91c⋯.png (183.72 KB,600x401,600:401,Milo.png)

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

5f4624 No.1411

>>1410

Lol! Glad to see that again! Last time it made Senpai kek.

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

5f4624 No.1412

>>1410

The memes must flow! Fun and math together! Can’t solve this when we’re mentally constipated. Better working conditions, etc. Come on lads, let’s shit this thread up with some funny memes. I’ll post some in a bit!

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

7261f1 No.1413

File: 8ea713921b7bb0f⋯.png (283.03 KB,500x333,500:333,DJT Antarctica.png)

FYI, this one is mine! Posted originally in CBTS. Hope you like it.

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

7261f1 No.1414

File: c8c744b96339417⋯.jpg (78.22 KB,720x718,360:359,CatchingMexicans.jpg)

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

3520dc No.1415

File: b740b6f66bdd735⋯.png (79.62 KB,1024x1024,1:1,1024px-Deltasigmaphi_pledg….png)

File: 276718b30304b55⋯.png (29.47 KB,444x372,37:31,444px-SplitFanoPlane.svg.png)

File: 7532054634454da⋯.jpg (1.21 MB,920x1632,115:204,DivineMemeingVerification.jpg)

File: 5e6650a4cabf447⋯.png (98.38 KB,727x469,727:469,Screen Shot 2017-12-26 at ….png)

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

7261f1 No.1416

File: 702ac4bb6e9c166⋯.jpeg (126.94 KB,960x679,960:679,ClintonRefund.jpeg)

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

7261f1 No.1417

File: df2f04ce83c1b2e⋯.png (256.5 KB,480x453,160:151,LOTR Racism.png)

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

63fecf No.1418

File: 1a87b1109d46085⋯.jpg (205.07 KB,1000x982,500:491,uploads_2016_12_8_macaroni….jpg)

File: cfb7ed63070cd1a⋯.jpg (207.28 KB,1000x967,1000:967,uploads_2016_12_8_macaroni….jpg)

File: 7c3a02b1b5f395d⋯.png (337.55 KB,1136x982,568:491,i_hate_macaroni_and_cheese….png)

File: a7fc6bb851b7f68⋯.jpg (83.97 KB,500x406,250:203,3337447239_05b7141893_z.jpg)

>>1394

>>1401

I shit you not, Macaroni was a Pony at the Whitehouse!

Can we have a little macaroni pony love puleeze!!

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

63fecf No.1419

File: fe43d84ac008d02⋯.jpg (36.62 KB,600x401,600:401,mylittlepony-pasta.jpg)

File: 016fe91870b4a25⋯.png (424.72 KB,750x918,125:153,1494402__safe_fluttershy_r….png)

File: a7af0aa238e7a8d⋯.png (43.58 KB,845x701,845:701,oie_2yhfirobbrza_by_ipanda….png)

File: b671ba530424e36⋯.png (140.06 KB,1684x1570,842:785,Odrsjot-solo_rainbow dash_….png)

File: bbd4bff35cb2ddb⋯.jpg (314.31 KB,2048x1365,2048:1365,DRanL_vVwAA8yJr.jpg large.jpg)

>>1418

Pretty sure we got tits showing with the Dept of Defense dude on the right. DOD dropping unicorns…

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

3520dc No.1420

>>1419

I was wondering what was off with that…

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

63fecf No.1421

>>1413

Kek.

>>1420

Didn't catch it until grabbing the larger image from their twitter. Between that and the Tripod Pony, gotta say the tweeter(s) at DOD has a sense of humor!

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

3520dc No.1422

File: 6b951a0a763d7c8⋯.png (227.12 KB,438x371,438:371,math-meme-thatd-be-great.png)

File: 6a8bd4eacbb3cf6⋯.jpg (67.1 KB,540x1159,540:1159,math-stahp.jpg)

File: 54a03dd0d81d12a⋯.jpg (20.71 KB,476x398,238:199,8c34b90578152a4f06cf01a833….jpg)

File: 4b9bbd747950edd⋯.jpg (45.4 KB,500x303,500:303,p590q.jpg)

File: c071ae98d95fdc6⋯.jpg (23.82 KB,500x348,125:87,tumblr_inline_mkjxeubMp31q….jpg)

>>1421

Last one here, I'll put any further in the EZ Bake.

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

63fecf No.1423

File: 2120fdee349f9ea⋯.png (42.49 KB,739x1037,739:1037,derpy_does_the_math_by_laz….png)

File: d5589d3ff7e93cb⋯.jpg (358.19 KB,1700x2200,17:22,Rounding-worksheets-RRH4-U….jpg)

File: 90c921458d7d239⋯.jpg (52.89 KB,500x570,50:57,tumblr_let8qwudgg1qeftago1….jpg)

File: 7938acd32e7336d⋯.png (73.83 KB,374x301,374:301,endunicorn.png)

>>1422

Last 4 me 2, faggots can get back to work…

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

7261f1 No.1424

File: 2c574d7e8fb87df⋯.jpg (97.7 KB,479x720,479:720,IMG_1366.JPG)

File: 327a54fdee0ca70⋯.jpg (121.22 KB,603x500,603:500,IMG_1358.JPG)

File: 870d21d8c37a14d⋯.gif (3.62 MB,400x400,1:1,MAGA.gif)

File: 2b21af5fbc269cc⋯.jpg (57 KB,800x533,800:533,Force Obi Wan.jpg)

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

7261f1 No.1425

Alright, I'll get back to work too!

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

01b9f7 No.1426

>>1380

>>1381

>>1386

I'm a fag again. Mis explained what I meant.

For (0,n ) when n equals 2*mm for and integer m then all a and b of those records are perfect squares.

The {0, 2*MM , c, c-1, 1 , cc} record is one such record with a very large M. were are looking for the {0, 2*mm, c, x, aa, bb} record with a much smaller m.

I believe Chris is going to use the

a of (0,1, M) {0,1, d, x, 2*MM, b} and

d of (1,1, M) {1, 1, 2*MM, x, a, b}

to derive the smaller m with the aa bb record

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

7261f1 No.1427

>>1426

Ok, I'm with you. Can you clarify M and mm? I think it means the number of jumps between the c^2 record in (0,n). How far down in N to solve for RSA? Did VQC hint at how far we have to go when he crumbed us "What temp does vinegar boil at?" It's 212 deg F. Although he's a Brit, so maybe it's in Celsius.

Also, does t have usefulness in later n rows? MA brought up a good point that t is kinda useless (?) in later n rows (erratic), and that x is the variable we should be focusing on. VQC also hinted by saying "when I started, I wanted x to mark the spot." He also crumbed about generating the primes in this way "Think of 3 as (1+1+0.5+0.5)" Cryptic, but I've been thinking it over a lot.

Thoughts, Anons?

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

273212 No.1428

>>1427

For RSA100, N=14387588531011964456730684619177102985211280936.I'm also retracting my earlier statement about approximating. This entire VQC concept shatters the exponential growth protection of RSA.

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

7261f1 No.1429

RSA #2: All VQC Posts. Add to bread, Baker?

RSA #3 coming up next. After Trips were disabled, VQC dropped lots of crumbs as an anon. I'll try to find all posts by bread, and post them for later reference.

RSA #2.

>>>/cbts/50228

>>>/cbts/53383

>>>/cbts/53432

>>>/cbts/53436

>>>/cbts/53466

>>>/cbts/53468

>>>/cbts/53469

>>>/cbts/53473

>>>/cbts/53475

>>>/cbts/53479

>>>/cbts/53481 *** imporatant

>>>/cbts/53482

>>>/cbts/53607

>>>/cbts/53609

>>>/cbts/53613

>>>/cbts/53615

>>>/cbts/53662

>>>/cbts/53668

>>>/cbts/53673

>>>/cbts/53678

>>>/cbts/53680

>>>/cbts/53681

>>>/cbts/53699

>>>/cbts/53770

>>>/cbts/58934

>>>/cbts/59055

>>>/cbts/65200

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

7261f1 No.1430

File: 49605bb0ec2b098⋯.png (174.74 KB,500x281,500:281,Big Ass Integer.png)

>>1428

Holy Shit MA! Thats a BIGASSINTEGER. Like, Thicccccc Integer. Is this Integer in the Black?

Anyways, we need a VQC reference like Q has, so I'm gonna work on that while you do cool programming shit.

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

7261f1 No.1431

RSA #3 VQC Posts. ID: a8efc8

>>>/cbts/87168

>>>/cbts/87234

>>>/cbts/87300

>>>/cbts/87378

>>>/cbts/87414

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

273212 No.1432

>>1431

I don't think anyone's made an archive of RSA #4 from /cbts/ yet.

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

7261f1 No.1433

>>1432

Working on it now, MA!

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

7261f1 No.1434

RSA #4 VQC Posts. ID: bc16c7

>>>/cbts/98492

>>>/cbts/98560

>>>/cbts/107338

>>>/cbts/107342 rt >>>/cbts/107256

>>>/cbts/111903

>>>/cbts/111975 rt >>>/cbts/111942

>>>/cbts/111983

>>>/cbts/112148

>>>/cbts/112422

>>>/cbts/112425

>>>/cbts/112429 rt >>>/cbts/112172

There are more rt's but I did my best to include only relevant ones for math(s). If you fags want all of them, i can update. Let me know.

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

898cfe No.1435

>>1391

Some more results:

To find the t for a given a at (e, 1) (for any e):

def getTFromA(e, a):

if e % 2 == 0:

return math.sqrt((a - (e / 2))/2)

else:

t = a - int(e / 2) - 1

t = int(t / 2)

t = t + 1

t = int(math.sqrt(t))

return t

Equation for even e: sqrt( ( a - (e / 2) )/2 )

Equation for odd e: floor(sqrt((a - floor(e / 2) - 1)/2 + 1)

To find the a for a given t at (e, 1):

def getAFromT(e, t):

if e % 2 == 0:

return (e / 2) + 2*t**2

else:

return int(e / 2) + 4 * ( (t * (t + 1) ) /2 ) + 1

To find the t for a given d at (e, 1) (for any e):

def getTFromED(e, d):

if e % 2 == 0:

t = d - (e / 2)

t = t / 2

t = t * 4 + 1

t = t / 4

t = math.sqrt(t) + 1

return -1/2 + t

else:

t = d - (2 + int(e / 2))

t = t / 2

t = t + 1

t = math.sqrt(t)

t = t + 1

return t

To find the d at a given t for (e, 1) (for any e):

def getDFromET(e, t):

if e % 2 == 0:

return (e / 2) + 4 * ( (t * (t + 1) ) / 2)

else:

return (2 + int(e/2)) + 6*n + 4*( ( t * (t - 1) ) /2 )

I've used the getTFromED when looking for the aa*bb record as the d = cc in that record, but without being able to have a nice way of knowing which (0, n) the aa*bb record is in, it requires the brute force method.

I'm looking into patterns for the n * a and (n - 1) * a now.

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

7261f1 No.1436

RSA #2: Stony Senpai Version. ID: aaa2ec

Baker, please add to next bread, under RSA #2, part 2.

>>>/cbts/74027

>>>/cbts/74303

>>>/cbts/74358

>>>/cbts/74393 rt >>>/cbts/74302

>>>/cbts/74488 rt >>>/cbts/74373

>>>/cbts/74509

>>>/cbts/74525

>>>/cbts/74623

>>>/cbts/74729

>>>/cbts/74965

>>>/cbts/74983 rt >>>/cbts/74790

>>>/cbts/75025 rt >>>/cbts/74769

>>>/cbts/75055 rt >>>/cbts/74778

>>>/cbts/75094 rt >>>/cbts/74386

>>>/cbts/75314 rt >>>/cbts/74769

>>>/cbts/75203 rt >>>/cbts/71555

>>>/cbts/75265 rt >>>/cbts/74278

>>>/cbts/75291 rt >>>/cbts/74380

>>>/cbts/75304 rt >>>/cbts/74355

>>>/cbts/75358 rt >>>/cbts/74459

>>>/cbts/75365 rt >>>/cbts/75349

>>>/cbts/75381 rt >>>/cbts/74169

>>>/cbts/75393 rt >>>/cbts/71582

>>>/cbts/75430 rt >>>/cbts/71369

>>>/cbts/75435 rt >>>/cbts/67618 *** PMA WTF!!! WORTH ANOTHER LOOK? VQC REPOSTS YOUR SHIT>>>

>>>/cbts/75486 rt >>>/cbts/71423

>>>/cbts/75506 rt >>>/cbts/72925

>>>/cbts/75514 rt >>>/cbts/75455

>>>/cbts/75519 rt >>>/cbts/73458

>>>/cbts/75527 rt >>>/cbts/66664

>>>/cbts/75535 rt >>>/cbts/75455

This was when Trips were banned suring RSA #2, and our Senpai showed up ALL BAKED to drop some wisdom. Enjoy the thread, it's fucking awesome.

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

7261f1 No.1437

>>1436

sorry, green links. Fixes here.

75314 should be >>>/cbts/75134

75304 should be >>>/cbts/75309

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

7261f1 No.1438

Corrected! RSA#2 Stony Senpai Edition. Baker PLS add to Bread.

>>>/cbts/74027

>>>/cbts/74303

>>>/cbts/74358

>>>/cbts/74393 rt >>>/cbts/74302

>>>/cbts/74488 rt >>>/cbts/74373

>>>/cbts/74509

>>>/cbts/74525

>>>/cbts/74623

>>>/cbts/74729

>>>/cbts/74965

>>>/cbts/74983 rt >>>/cbts/74790

>>>/cbts/75025 rt >>>/cbts/74769

>>>/cbts/75055 rt >>>/cbts/74778

>>>/cbts/75094 rt >>>/cbts/74386

>>>/cbts/75134 rt >>>/cbts/74769

>>>/cbts/75203 rt >>>/cbts/71555

>>>/cbts/75265 rt >>>/cbts/74278

>>>/cbts/75291 rt >>>/cbts/74380

>>>/cbts/75309 rt >>>/cbts/74355

>>>/cbts/75358 rt >>>/cbts/74459

>>>/cbts/75365 rt >>>/cbts/75349

>>>/cbts/75381 rt >>>/cbts/74169

>>>/cbts/75393 rt >>>/cbts/71582

>>>/cbts/75430 rt >>>/cbts/71369

>>>/cbts/75435 rt >>>/cbts/67618 *** PMA WTF!!! WORTH ANOTHER LOOK? VQC REPOSTS YOUR SHIT>>>

>>>/cbts/75486 rt >>>/cbts/71423

>>>/cbts/75506 rt >>>/cbts/72925

>>>/cbts/75514 rt >>>/cbts/75455

>>>/cbts/75519 rt >>>/cbts/73458

>>>/cbts/75527 rt >>>/cbts/66664

>>>/cbts/75535 rt >>>/cbts/75455

This was when Trips were banned during RSA #2, and our Senpai showed up ALL BAKED to drop some wisdom. Enjoy the thread, it's fucking awesome.

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

7261f1 No.1439

VQC Posts #5. We Moved to /VQC/ RSA General (#5) Thanks to AA for setting this up!

>>11

>>12

>>17

>>18

>>19

>>20

>>21

>>23

>>24

>>25

>>26

>>27

>>28

>>29

>>30

>>31

>>32

>>33

>>495

>>699

>>709

>>710

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

7261f1 No.1440

RSA #6: to date. VQC posts.

>>1099

>>1380

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

a2017c No.1441

I'll update the VQCmap.

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

7261f1 No.1442

>>1441

Thanks Baker! Ponies??? I know you got a big stash. Bring out your best!

>>>/cbts/74965

Chris, the day we (/vqc/faggots) can smoke a joint with you and talk about the universe (and meet each other) will be pretty awesome. We are all the wombMen, waiting to be birthed into the next level. Thanks for inspiring me to raise myself up another few quantum levels. What a trip this quest is!

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

7261f1 No.1444

>>1428

Can you explain?

>I'm also retracting my earlier statement about approximating. This entire VQC concept shatters the exponential growth protection of RSA.

How so MA?

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

3520dc No.1445

File: 0e7db3fbfc7ba43⋯.png (30.32 KB,764x361,764:361,Dont Forget Your Towel.png)

File: 17f19bc2ce2e151⋯.jpg (66.83 KB,625x351,625:351,17f19bc2ce2e151724699f1e4a….jpg)

File: e8b8fb8b4eaecfe⋯.png (30.01 KB,252x200,63:50,morpheus-with-pills.png)

File: 4bba9cf19b6f79e⋯.jpg (51.22 KB,625x499,625:499,rgapl.jpg)

File: af41e76c1fb30e1⋯.png (41.1 KB,450x400,9:8,twilight_morpheus_by_gitpm….png)

>>1438

It's frickin' trippy to see the conversations I had with Him when "behind and ahead of myself" were weren't as stabilized as they appear to be "now".

Something to look forward when your homework is finished. /VQC/VA is kindly setting up the Legend of VQC, when he Guided us to a Map, that at the time looked as if a blank whiteboard.

And then the motherfucker lit a blunt, threw a marker on the ground and said, "Now… What's going on here?". When the smoke cleared, someone was holding the marker which was wrapped in a small note. He showed it to his friends and they started drawing on the wall.

Now about that time, one of the art students smelled the smelly smell of something that smelled smelly. And his eyes lit up because that's the most illegal stuff on the planet. I'm talking blasting off at the speed of light with sounds in all directions in every frequency at every octave and volume. A piercing, rising tone that takes you all the way through the veil… chakras on full blast.

"What is going on HERE/NOW?!", that loquacious hobbit exclaimed as he burst in the door.

The nerds were unphased but this albino lookin' Powder-wannabe in a morpheus get up raised the blunt. Sheeeeeeeeeeeit. Apparently das muh nigga right der.

So after some really heady conversations, because Dank Man Traning, the art student went and started drawing on the whiteboard cuz… fuck… I know how to use one of these. Dude was so high he drew a fucking pony. This greatly confused the nerds. So Albino Morpheus pulled out the Wizard's Pipe full of Meta*Sign CBTs and told the art student to quit being such a fucking spaz.

After the Preesh Pipe, the two wandered off to enjoy a cigarette and step out of the hotbox for a second.

Upon returning, the art student set up and easel and drew odd hypotheticals to the side… but still on the whiteboard every now then when the space needed to be held with a little gayety.

Meanwhile, Twinkie von Fishburn smoked so much that he's more or less in his own little world, popping in an out to shout random things that get the nerds excited for whatever reason aaaaand then right back to la la land.

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

7261f1 No.1446

File: c1263d190327c57⋯.gif (194.42 KB,306x200,153:100,Will Ferrell Friends.gif)

Alright, faggots. I can't keep up with PMA, bc he's on top of his math and program game. But I did make myself useful compiling VQC posts. I have a place once again in the /VQC/ universe. Feeling peaceful and happy over here. This quest is really about bringing together fine minds (from all over the world) to work on a cool math problem (hardest I've ever worked on) to bring transparency (as opposed to dark and oppressive secrecy) to our world. I won't give up on this quest, bc it's the best I've ever worked on. I love you, lads. Glad to be here, friends.

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

b1d6e8 No.1447

Bear with me folks.

Going through the final part will knock out the Internet as RSA is involved in handshakes for SSL.

Trump held up a sign saying Keep Tweeting.

We will hold.

In the meantime, consume anything you can on what drew mathematicians to believe elliptic curves and modular forms were the same object.

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

b1d6e8 No.1448

>>1444

Because a search exponential in the length of c is turned into a calculation which is the same complexity as finding a square root < O(log l) where l is the length of c in bits

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

3520dc No.1449

>>1447

>elliptic curves and modular forms are the same

Here's one… but… yooooou know meeee. -shrug-

Rhoades, Pæths… -shrug-

http://math.stanford.edu/~rhoades/FILES/EC.pdf

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

3520dc No.1450

7.2 Case K = blackboard math Q

I KNOW HOW TO DRAW THOSE!

-pats self on the head-

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

01b9f7 No.1451

>>1427

Your right m is doing double duty!

I am using m to count down the perfect square records in (0,n).

Amazingly it turns out that m is the difference between sqrt(a) and sqrt(b)

when n = 2*mm

It is still being used to represent the t in (1,1) records where d equals 2*mm and its the t in (0,1) records a equals 2*mm so m is MOVEMENT usually up and down t in a cell.

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

01b9f7 No.1452

>>1447

how long?

Is that the so called darkness?

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

01b9f7 No.1454

>>1451

fag alert

I meant 2m is difference between sqrt(a) and sqrt(b)

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

898cfe No.1455

>>1454

(0, 172872, 589, 588, 1, 346921)

Here, the n = 2MM which leaves M = 294.

2M is also equal to c - 1.

Not sure if you posted that somewhere

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

01b9f7 No.1456

>>1422

LOL! Anyone hanging out here obviously has way to many of their own problems to be able to solve math(s) problems

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

01b9f7 No.1457

>>1427

The difference between M and m.

M record is {0, 2*MM, c, c-1, cc} with huge M

m record is {0, 2*mm, c, aa, bb} much smaller

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

01b9f7 No.1458

Chris's twitter keeps reappearing and disappearing. It was here earlier this morning now gone again.

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

898cfe No.1459

>>1458

I forgot his twitter handle, what it is?

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

01b9f7 No.1460

>>1459

@chrisrootodavid

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

01b9f7 No.1461

>>1447

Chris quotes Trump "Keep tweeting"

Chris's twitter profile disappears

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

a2017c No.1462

>>1456

That's what happened to me.

>>1461

Yeah, it's gone again.

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

2b0f03 No.1463

>>1447

If we could get the EC VQC generation code now, it would be helpful for when we figure this out.

Proof of progess: Square root of RSA100's N2's X: 2797181014427

Critical formula update following this post.

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

2b0f03 No.1464

Method for generating any cell by inputing E, N, and X, and testing if actually valid to the grid as follows.

ArbitraryCell(e, n, x){

e = e;

n = n;

x = x;

a = (x * x + e) / (2 * n);

d = x + a;

b = a + 2 * (x + n);

c = a * b;

}

boolean isValid(){

return (c - d * d) == e;

}

Remember to follow the order of operations when implementing!

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

945313 No.1465

File: 73463910e67d0b2⋯.png (1.32 MB,3697x1929,3697:1929,c_rsa100.png)

>>1463

>>1464

MA, not sure I'm following you.

I have been able to run all my test cases against rsa100. See pic attached.

Have you gotten closer to a solution?

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

2b0f03 No.1466

>>1465

I've literally done no work in (E,0). My method so far has been to take an input C, move to the home cell (E,1), then approximately jump down N. Today I'm gonna work on searching for valid cells, deriving their pattern, and unlocking the entire N column for a given E. Multithreaded, this is an insanely fast solution.

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

3520dc No.1467

File: 2d46c09658e1b68⋯.jpg (23.58 KB,350x350,1:1,number_muncher_high_defini….jpg)

File: c64eaff98223aba⋯.jpg (32.19 KB,336x230,168:115,861939-numbermuncher9.jpg)

File: c66ae5939c6bf46⋯.jpg (22.36 KB,260x172,65:43,numbermuncher3.JPG)

File: 22106119329b285⋯.png (11.99 KB,492x512,123:128,bf4e3f532fad330f82be48d857….png)

File: 0cafa23fffd9aae⋯.jpg (72.01 KB,625x625,1:1,0cafa23fffd9aae82c55dc6ddd….jpg)

GAIZ! I FIGURED OUT THE VQC MASCOT!

Verde Quantum Cutiemark!!!

KEK*E*PEPE HAS BEEN WITH US THE ENTIRE TIME!!!

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

2b0f03 No.1468

>>1466

>>1465

It's essentially turning this beautiful thing into a hammer, but it's a logarithmic hammer instead of an exponential one.

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

2b0f03 No.1469

>>1467

We need a munchicus digitus pepe.

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

3520dc No.1470

File: d1cb7fd0e8fd2d8⋯.png (489.71 KB,576x849,192:283,y1ln4n108h601.png)

>>1469

Couldn't find one…

Oh well.

Guess I have to find an artist or something to make it. I'll get right on finding them. BRB!

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

945313 No.1471

>>1466

>>1468

Got it. Thanks.

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

3520dc No.1472

File: 6c45a3e444c26da⋯.png (22.04 KB,658x658,1:1,Kekel Municher.png)

File: e884a5eea8af005⋯.png (58.93 KB,547x768,547:768,PepeingThruMuncher.png)

File: 23aabf214737a92⋯.png (114.06 KB,369x600,123:200,tumblr_n75h2vpgyn1td4ko6o1….png)

File: af1c1fd606df7da⋯.jpg (23.04 KB,394x458,197:229,a14.jpg)

>>1469

Ironically, I think I did convince someone to do their own version so when they finish, I'll pass it along.

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

7261f1 No.1473

File: b8bacc8b1c72c17⋯.png (258.79 KB,320x301,320:301,Hulk Hammer Time.png)

>>1451

>>1457

Thanks for the clear explanation about M and mm! So can you just plug in c and get the correct number of jumps to make? Is it exact or approximate?

>>1466

Awesome, MA! This is how my mind keeps thinking about it too. Starting from C, we find d and e, then go to e, get all the factors and jump down n levels. There must be an elegant way to do it, but I like your logarithmic hammer approach! HULK SMASH!! The meme is for you.

>>1467

Liking the new Mascot! Thanks Topol!

>>1448

Thanks boss! I guess I asked the same question again, duh. Thanks for your patience and willingness to explain things more than once.

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

898cfe No.1474

When VQC refers to n * a and (n - 1)*a does he refer to specifically the n - 1 or the previous n?

For example in the column for e = 1 we have n = 1, 5, 13, 17 etc. So if we take (1, 5, 2) where a = 17 and b = 53. Is he talking about n * a (17 * 5) and (n - 1) * a (17 * 4) or (17 * 1)?

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

898cfe No.1475

>>1474

(1, 5, 3) not 2

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

a2017c No.1476

>>1463

You figured that out without using any of the variables already provided for RSA100?

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

01b9f7 No.1477

>>1473

If we know m problem solved.

But we know big M

and for t = m, M in (0,1) a equals 2mm, 2MM

and for t = m, M in (1,1) d equals 2mm, 2MM

and we know (0, n=2MM) {0, 2MM, c, c-1, 1, cc}

we want (0, n=2mm) {0, 2mm, c, x, aa, bb}

we also know Sqrt(b) - Sqrt(a) = 2m

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

2b0f03 No.1478

>>1476

Which stocks are most likely be impacted if RSA is broken? I'm trying to not be poor (or dead) after this.

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

7261f1 No.1479

Hey Lads! Here's a good link about the elliptical curve question VQC asked us to read up on:

https:/ /plus.maths.org/content/fermats-last-theorem-and-andrew-wiles

>>1474

>>1475

I'm following! Good question. Found these in the VQC archives, maybe helpful?

>>>/cbts/107342 rt >>>/cbts/107256

>>33

>>495

>>1476

Right, Baker? I think he did. MA is going to town with his LogHammer. When we tie it together with the c^2 aa bb cc patterns from (0,n) that will be awesome.

>>699

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

01b9f7 No.1480

>>1478

bankster stocks down

Gold silver and their miners up

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

e606e3 No.1481

>>1478

RSA Security LLC ;)

Other than that the whole tech sector will probably be impacted… what are you still doing with stocks anyway?

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

2b0f03 No.1482

>>1481

I don't even have enough money for food next week after rent. Would appreciate a list of ticker symbols.

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

3520dc No.1483

File: 3e0e9b70b7330c2⋯.jpg (96.63 KB,1230x1024,615:512,ff5.jpg)

File: 3343779d024bc75⋯.jpg (32.36 KB,409x650,409:650,tumblr_m0raz1cqrn1r4s4p0o1….jpg)

File: 6aa8ae83a983b94⋯.png (508.89 KB,500x585,100:117,bonk-s-revenge-usa.png)

File: 733f5f116173ad1⋯.jpg (21.59 KB,275x343,275:343,44io9o08db9y.jpg)

File: 8af392e715c892f⋯.jpg (52.02 KB,700x573,700:573,4hstnsawus2y.jpg)

I'm just pointing out that Green Number Muncher has 2 c's for eyes… (c)o-Inside-n(c)e?

aren't n and e and c like… significant or something? -draws more weirdness-

TIME FOR A SONIC RAINBONG!

-quantum bubble nnnnnoises-

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

e606e3 No.1484

>>1482

I don't play the stock market. Some infosec companies may make a killing helping everyone else "secure" their shit with ECC instead (kek)… Banks and exchanges probably the first to take their online sites down, with government portals following. Huge losses likely, especially for the exchanges. Then major panic for all the other hardware crap and legacy software that only supports RSA and can't be replaced.

Precious metals will be up, and probably cryptocurrencies after the inital panic selling when everyone figures out none of them are affected.. yet

Planning for the reactions is not an easy task

Then come the explosive leaks, when people start reading everything previously encrypted with GPG

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

2b0f03 No.1485

>>1484

There's playing the market, and then there's being able to mathematically prove where the roulette ball is going to land…

I'm sick of working my fucking ass off to break even. This is going to happen, and we should all start to get ready.

www.pssurvival.com

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

e606e3 No.1486

>>1485

First problem is that in order to win, you have to give your money to a bank up front. Mostly not a risk I'm willing to take, even when 100% sure on a bet. What we're doing here is unprecedented so I would love to see mathematical proof of what happens to the stock market when any RSA key can be factored in seconds… I can tell you exactly what tech breaks and what doesn't, but how that plays out when some CEO hears their bank can be hacked and overreacts is beyond even my intuition. There will be chaos, and if you can translate that into stock bets then have fun getting rich!

This is happening either way

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

945313 No.1487

>>1466

>>1473

>>1372

MA, VA

Just ran another test on RSA100.

If the solution relies on finding out the multiple (m) at a record where e=0, x=2*c*m, a=c^2, then m would have to be:

m=42489607263661711309596655624896701585610939620632192811974298340236852638535916326429571625162791

Going to continue exploring the na and (n-1)a…

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

2b0f03 No.1488

>>1486

I agree with the gold and silver up sentiment. Security companies specializing in ECC as well. In terms of down, every chip credit card uses RSA. As VQC mentioned, SSL certificates use RSA. The entire online transaction market is about to be blown the fuck out. Amazon down?

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

3520dc No.1489

>>1488

Are you in it for the money or the love of math?

Don't worry about the money.

Imagine like… all the money going away at once cuz all banking will be obliterfucked and restructed.

Might take 3 days or 15 days. Maybe you'll hardly notice it.

But, if you MUST focus on that whole eating and having a roof over your head… broaden your prayer to include everyone so that no one ever has to have that concern ever again.

>>1232

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

3520dc No.1490

File: 3499ccf217b6c27⋯.jpg (43.67 KB,1175x656,1175:656,flag_hitler_face_flag3265.jpg)

>>1488

Also…

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

e606e3 No.1491

>>1489

Nothing would make me happier than the concept of money disappearing or just not having existed at all!

Still no luck changing my reality to that one, not for lack of trying

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

3520dc No.1492

File: b32b23dba0cc8ab⋯.jpg (52.56 KB,500x390,50:39,aikg7J6.jpg)

File: 1bf3735048ea83a⋯.jpg (72.29 KB,367x495,367:495,27748a0bc5911cace5cf4f4661….jpg)

File: 5a4a99506954963⋯.jpg (91.96 KB,620x387,620:387,St_Materiana_Cornw_2941101….jpg)

File: 9a163ddee450cae⋯.jpg (72.26 KB,1000x576,125:72,dachau-konzentrationslager….jpg)

>>1490

St German… Git it?

Jetzt hör auf, ein Schekel zu sein, der Kike rodelt, und konzentriere dich darauf, jetzt zu arbeiten!

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

2b0f03 No.1493

>>1490

I'm in it because the implication is a new age of knowledge. At the same time, if the financial system collapses and looting starts, it's gonna be tough to pull through to the other side. This will be the lightning bolt that marks the beginning of the great storm.

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

2b0f03 No.1495

Of course as soon as I start thinking about that, I run into a massive problem. For this cell in format {E:N:D:X:A:B:C},

61218444075812733697456051513875809617598014768503

4

7652305509476591712182006439234476202199751846067

3

7652305509476591712182006439234476202199751846064

7652305509476591712182006439234476202199751846078

58557779610365799850575360231375488434617810249426155485106497416876136614796334204692772478136992

This should absolutely not pass isValid, but it does… Hmmmm….

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

7261f1 No.1496

>>1487

Hey PMA! It seems like you've got the column 0 work moving forward, and MA has the row work moving forward. When we can merge the two, maybe we have an elegant solution? Thinking out loud.

>>699

"How do we USE the row and column to get what we need?"

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

2b0f03 No.1497

Well, either the isValid method is incomplete, or my method of generating an arbitrary cell is flawed. Back to square N+1.

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

7261f1 No.1498

Here's an idea: Take sqrt(c), get d and e. Go to (e,1) and find all the factors for c (MA's approach). Meanwhile, using PMA's approach, forget the e value for a minute, go to column 0, and start working to find the multiples of the factors from the first cell in (e,1). If we know all the factors from (e,1), can we bring them over to (0,n) and start looking up and down for c^2 aa bb cc, etc using those c factors? Just a thought.

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

945313 No.1499

>>1497

MA, do you need an isvalid formula or a method to construct your records? I posted a while back, but happy to share.

>>1498

For small numbers, finding the factors is straight forward. RSA length numbers is a different story. We're missing something here.

VQC dropped 2 hints about na and (n-1)a relationship.

I've run a number of tests comparing the 2 records, and the a and d values are where the movement appears. And specifically at d we start getting new numbers to explore.

Still not seeing a way to relate the the c and ab records.

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

2b0f03 No.1500

>>1499

That's what I was using, but I think I've found a solution. The generate arbitrary cell function can be tweaked to further distort invalid data.

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

7261f1 No.1501

>>1499

Is e the var that ties c to ab? in row one, e>0, first a var can be generated by (e+1)/2 for odd e, and e/2 for even e. Thinking out loud again.

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

a2017c No.1502

>>1501

The one that ties it to a and b is n (or x, or t), because that variable is how factorizations can be differentiated between.

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

a2017c No.1503

>>1501

e and d is the same for every factorization, thus n is the final differentiator.

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

7261f1 No.1504

>>1503

>>1502

Gotcha, thanks Baker! So we have to work on those two crumbs about using na and (n-1)a to tie c and ab records / columns and rows together?

Ok, here's what I found in the archives, lads. Hopefully there's something here that will help us.

>>>/cbts/107342 rt >>>/cbts/107256 na, nb, c, N, cN

>>>/cbts/50228 na, (n-1)a calc.

>>>/cbts/53432 towards the bottom of post, see quote below

>>>/cbts/53468 "Big part of key"?

Interesting passage about primes, c, n and N from:

>A value c will only appear in one column since the remainder of a number never changes.

>Since a value c can have more than one factorisation, a number c can appear more than once in a column at difference values of n

>A prime number appears once in a column. This is SIMPLE to calculate. >This calculation is important. I call n for a prime number big_n or N

>The product of two primes appears twice. Once the same as the prime, which is easy to calculate and the second time, this is the n that we are after.

>How many times does the product of three distinct primes appear?

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

7261f1 No.1505

Here's some hilarious shit I found in RSA #2:

"There seem to be two types of anon in this world: those who completely enjoy grade B faggotry and those who only partially enjoy it. Obviously you're the latter, but if you didn't have at least a bit of interest you would never have even read my post.

The idea here, dubious as it may sound, is that there is hidden structure in the fundamental nature of the numbers that make up our highly-secured Internet and emerging technologies such as crypto-currencies like bitcoin. This structure is postulated to be exploitable, potentially resulting in one of the most epic and spectacular happenings of all time.

So basically, while this certainly is grade B faggotry, it is ambitious faggotry looking to upgrade itself to A+ faggotry if conditions permit. Which IMO is max /comfy/ but maybe I'm just a grade B faggot in the end."

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

ff82b4 No.1506

>>1505

That was me. Still here, fuck my life.

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

e34200 No.1507

>>1505

I found a pattern in (0,n) for (0,1) to (0,2)

(0,1) (0,2)

(0,1,4,2,2,8) (0,2,3,2,1,9) d = d-1, a = a-1, b = b+1

(0,1,12,4,8,18) (0,2,8,4,4,16) d = d-4, a = a-4, b = b-2

(0,1,24,6,18,32) (0,2,15,6,9,25) d = d-9, a = a-9, b = b-7

(0,1,40,8,32,50) (0,2,24,8,16,36) d = d-16, a = a-16, b = b-14

So for for (0,1,d,x,a,b) we can solve for t by t/2.

Then we can have a little square called L = t*t

Then, from (0,1,d,x,a,b) we can get (0,2,d-L, x-L, b-L+2)

I'm going to see if I can generalize this further.

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

e34200 No.1508

>>1507

(0,2) (0,3)

(0,2,3,2,1,9)

(0,2,8,4,4,16)

(0,2,15,6,9,25) (0,3,12,6,6,24) d = d-3, a = a-3, b = b-1 (3*1)

(0,2,24,8,16,36)

(0,2,35,10,25,49)

(0,2,48,12,36,64) (0,3,36,12,24,54) d = d-12, a = a-12, b = b-10 (3*2*2)

(0,2,63,14,49,81)

(0,2,80,16,64,100)

(0,2,99,18,81,121) (0,3,72,18,54,96) d = d-27, a = a-27, b = b-25 (3*3*3)

(0,2,120,20,100,144)

Here is the pattern from (0,2) to (0,3) for cells with the same X value (also it skips x values in (0,3).

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

7261f1 No.1509

>>1507

YEAH!!! CollegeANON in da house!! Where you been, faggot? Nice to see you!

PMA was working on something like this, and VQC even rt'd my post about it (along with a cryptic message). Check it out, see if it matches your idea. We even got yelled at by TLA later! Those were the good 'ol days:

>>>/cbts/75435 (VQC) rt >>>/cbts/67618 (Me)

PMA's posts I was replying to, about finding small square using t.

>>>/cbts/67332

>>>/cbts/67336

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

a2017c No.1510

>>1509

Before I was making this I was writing a decentralized chat app that has RSA, ECC and NTRU.

This completely flew in the face of my plans.

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

e34200 No.1512

>>1509

Good to be back. I've been doing family stuff for christmas. Hopefully we can crack this shit

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

e34200 No.1513

Also I have that for any (0,n) cell we have:

For odd n:

(0,n)[t] = (0,1)[t] * n

For even n:

(0,n)[t] = (0,2)[t] * (n/2)

Also, since we can now calculate any index for (0,1) and (0,2) we can use these rules to calculate for any (0,n).

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

7261f1 No.1514

>>1510

Whoa, that's cool Baker! Now what? Decentralized chat app with user selected encryption key, both users need key to chat?

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

7261f1 No.1515

>>1506

This made me LOL!! Thanks, Anon. "It is ambitious faggotry looking to upgrade itself to A+ faggotry if conditions permit." LOLOLOLOL! Better check the weather map. Hurricane MILO about to make landfall???

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

a2017c No.1516

>>1514

If all asymmetric key algorithms are broken it would not work at all.

We will see.

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

e606e3 No.1517

File: e7b6b7be59a403c⋯.png (159.67 KB,1012x732,253:183,fractal1.png)

File: 092b177425ddea6⋯.png (427.35 KB,690x800,69:80,fractal2.png)

File: f0733bbfd1a9305⋯.png (31.85 KB,668x448,167:112,fractal3.png)

File: 7a286395b2091e2⋯.pdf (930.61 KB,ajassp.2007.848.856.pdf)

>>1516

Decentralized group encryption without any trusted parties is a bitch, even without the existence of virtual quantum computers fucking shit up

If any asymmetric crypto survives its gotta be this

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

a2017c No.1518

>>1517

That's amazing! How long you been studying this?

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

a2017c No.1519

>>1517

It's actually quite easy to encrypt for a group.

You just need to share a password with each recipient using asymm crypto. (Because there's no way to secretly send a shared key without asymm crypto over the internet.)

It wouldn't work with a large amount of recipients, but that's not necessary.

You wouldn't trust a large group of people with sensitive information.

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

e606e3 No.1520

>>1518

Crypto in general or the paper I posted? The answer to both is way too long :)

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

a2017c No.1521

>>1520

That paper.

If asymm crypto goes to the shitter I'd love to write an implementation for something new.

Studying crypto & maths makes me happy.

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

8a946c No.1522

NIST recently posted a bunch of submissions for potential quantum-resistant crypto algorithms:

http:/ /csrc.nist.gov/Projects/Post-Quantum-Cryptography/Round-1-Submissions

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

e606e3 No.1523

>>1519

If you're talking decentralised, who generates the key? And how do you revoke it when one of the recipients gets busted?

All of it relies on asymmetric crypto of course, but I only know of one algorithm that supports generating the group key without trusting a single person to set the initial secret, and still allows updating that key for all new members without giving it anyone else

>>1521

If you want to implement shit, here is a 3+ years old implementation of the paper, ignoring the reduction function

Probably also the first public one as I haven't seen this around

https://pastebin.com/XuN4U7Dv

Been a while since I looked at this code so don't ask me how it works :)

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

a2017c No.1524

>>1523

One person (admin of the chat) has authority over it all. Only would work (or be trustworthy) for a group of people you trust. I chose IRC because there are many servers, and asymmetric crypto allows you to use encryption regardless of who "Eve" is.

I've already written special headers, and sorting messages into chunks and such.

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

e34200 No.1525

VQC also wanted us to analyze the column with no gaps. I noticed that for every entry where e is a negative square (-1,-4,-9), there are no gaps in cells, just in the values within the cells, only within even. I've been analyzing the column -1 and I have found an interesting pattern:

For (-1,n,d,x,a,b) we can do the following to get to (-1,n+1).

If a%(n+1) == 0, then let M = a/(n+1).

Then we have the following:

(-1,n,d,x,a,b) -> (-1, n+1, d-M, x, a-M, b-M+2)

I think this makes sense.

I'm going to look into -4 row next.

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

e34200 No.1526

>>1525

(-1,1) (-1,2)

(-1,1,7,3,4,12) (-1,2,5,3,2,12) d = d - 2, a = a - 2, b = b +/- 0 M = 2

(-1,1,17,5,12,24) (-1,2,11,5,6,20) d = d - 6, a = a - 6, b = b - 4 M = 2 * 3

(-1,1,31,7,24,40) (-1,2,19,7,12,30) d = d - 12, a = a - 12, b = b - 10 M = 2 * 2 * 3

(-1,1,49,9,40,60) (-1,2,29,9,20,42) d = d - 20, a = a - 20, b = b - 18

(-1,1,71,11,60,84) (-1,2,41,11,30,56) d = d - 30, a = a - 30, b = b - 28

These M's also correspond to 2, 6, 12, 20, 30 = 2, + 4, + 6, + 8, + 10

The M's are also the same as (for any index t) (0,1)[D] / 2

Also M = a/2.

(-1,2) (-1,3)

(-1,2,5,3,2,12)

(-1,2,11,5,6,20) (-1,3,9,5,4,20) d = d-2, a = a-2, b = b +/- 0 M = 2 = 2 i=2

(-1,2,19,7,12,30) (-1,3,15,7,8,28) d = d-4, a = a-4, b = b-2 M = 4 = 2*2 i=3

(-1,2,29,9,20,42)

(-1,2,41,11,30,56) (-1,3,31,11,20,48) d = d-10,a = a-10, b = b-8 M = 10 = 2*5 i=5

(-1,2,55,13,42,72) (-1,3,41,13,28,60) d = d-14,a = a-14, b = b-12 M = 14 = 2*7 i=6

(-1,2,71,15,56,90)

(-1,2,89,17,72,110) (-1,3,65,17,48,88) d = d-24,a = a-24, b = b-22 M = 24 = 2*2*2*3 i=8

(-1,2,109,19,90,132) (-1,3,79,19,60,104) d = d-30,a = a-30, b = b-28 M = 30 = 2*3*5 i=9

For these in (-1,2) to (-1,3) we get M = a/3.

(-1,3) (-1,4)

(-1,4,4,3,1,15) i=1

(-1,3,9,5,4,20) (-1,4,8,5,3,21) d = d-1, a = a-1, b = b+1 M = 1 i=2

(-1,3,15,7,8,28) (-1,4,13,7,6,28) d = d-2, a = a-2, b = b M = 2 i=3

(-1,4,19,9,10,36) i=4

(-1,3,31,11,20,48) (-1,4,26,11,15,45) d = d-5, a = a-5, b = b-3 M = 5 i=5

(-1,3,41,13,28,60) (-1,4,34,13,21,55) d = d-7, a = a-7, b = b-5 M = 7 i=6

(-1,4,43,15,28,66)

(-1,3,65,17,48,88) (-1,4,53,17,36,78) d = d-12,a = a-12, b = b-10 M = 12 i=8

(-1,3,79,19,60,104) (-1,4,64,19,45,91) d = d-15,a = a-15, b = b-13 M = 15 i=9

For these in (-1,3) to (-1,4) we get M = a/4

Here's a little more work from my file.

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

e34200 No.1529

>>1526

This pattern seems to work for (-4,n) also. So for any negative square e we can generate the entire column. BUT this omits some values, looking at my previous post you can easily notice the ones that don't get generated.

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

c02904 No.1531

>>1478

Which stocks are likely to be impacted… Oh boy, See this is where getting far enough away to see the actual size of this thing is important. At the end of this… If it is real… Stocks will not really exist. Hell, there wont even be money in any form that we recognize. Take a minute… 1.2…59.60 ok. The future will look like this after Eliptical is broken by us and someone like you writes an easy peasy program that some Hello World level programmer like my self could use to open up pretty much anything.

We COULD go get us some BTC. Like a billion dollars worth… And go shopping. We could do someting like have the FED wire a billion dollars into our bank accounts under Janet Yellon's authority. We could Delete all the information of any police or agent who came looking or simply have them arrested by filing the right forged docments.

This is if only a few people have this and want to use it to take advantage of the world. Honestly if I had this tool tomorrow I would not even touch the Satoshi Wallet. If I did take it it would simply be to send BTCs to random people to prove that I could not to buy a car or blow and hookers or whatever.

What we are talking about here is an excession event for our species. It is so big. So mind bendingly huge that nearly nothing will remain of our way of life after it is finished.

Stocks wont matter. Money wont matter. Jobs wont matter. Go watch some zombie movies. It will be like that but without the zombies. Everything will change and it will be hard to adapt for many. If you want to be ready for this then do the basic prepper 101 shit for you and your family. 90 days food water clothing self defense.

If you can then bump that all up to about a year . Also have a plan and a backup plan. If you are in a major city, have a plan to get out. Also know you will not be alone. Be prepared. I have been looking at Puerto Rico. They still dont have power. They are almost entirely running on paper money. SO have some paper money as well. They say silver and gold are shit but Lighters, liquor and cigarettes as well as weed are money.

Don't even worry about stocks. They wont matter. I wouldn't even bother selling them or your crypto currencies. It wont matter. That said humanity will collapse then rise from the ashes FAST. If this is real then WE ARE TASKED TO BE THE ONES WHO HAVE TO SAVE EVERYONE. I am not a programmer but I am a very creative builder. I plan on building something with this tool if the tool comes available. I will try by best to help as many people as I can with it. I sincerely hope there are some things in the works already (Chris) but if not it will be up to us.

We will survive this by what we build.

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

e34200 No.1532

>>1531

I mean the whole problem is if you just took a bunch of money it's still probably illegal. Like safeguards aside, just because you can do something doesn't mean you are legally able.

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

a2017c No.1533

>>1531

Extinction-level event eh? Fuck. Well, I've got a gun, I guess.

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

c02904 No.1534

>>1532

This is the fundamental hacker problem. We hackers just do it to see if we can. I am a physical world hacker. I like to make stuff. I like to replace my water heater with black hose and the sun. I like to grow my own food. Hell, I tried to make my own shoes which was awful.

To use this tool we have openly would be like buying nuclear bombs at a fireworks stand and giving them out to kids. That said… The opportunity to do GOOD is even bigger. That is why I am here. If you crazy fuckers pull this off I hope to be a chronicler and resident big picture philosopher to get everyone to think about what we are doing and what we should do as opposed to just CAN we do it.

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

8d5142 No.1535

Hi anons and namefags. Your old pal TLA here; was doing family stuff too over xmas. I'll try to get back into this but I am on the road so will be limited. Also battery running out here.

These threads would be easier to follow, for me, if they were written in mathese: propositions, lemmas, laws, identities etc. But that's ok, I will just have to dig in and try to interpret. Then translate if I can. For now just two simple questions if any anons wouldn't mind answering.

First, given c, where c=ab and a, b are unknown, are anons trying to 'travel' to the 'record' ending in { …. a:b} ? Because it doesn't seem like that's what VQC was hinting at. Rather, that the factors would be 'exposed' in some way.

Second, as far as this hint:

>>1099

Have anons realized that there should be four 'records' with product c^2? these would be

1*aabb

a*abb

aa*bb

b*baa

(assuming a <b ). Gonna have a look at some of these tonight.

Unlike some of you, my redpilling the family attempts did not go well and I am a bit sad about that. I figure, at least, I will have softened them up a bit. My sister even thinks Antifa is cool and doesn't wanna hear otherwise :( cheer me up anons, and keep up the good work.

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

a2017c No.1536

>>1535

Teach me mathese you cunt.

All I know is programmerese

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

e606e3 No.1537

>>1531

There is no way only a few people have this, we distribute the information or get killed (good luck assholes!).. You know some idiot is gonna try to spend the early coins and crash it before they even make it to payout.

The collapse has been a long time coming and if we can trigger it then more power to us, at least the early warning is nice :)

If you haven't prepped yet then better start. Didn't consider lighters as currency but damn now I'm gonna buy some.

Proving P=NP will make building awesome things (free energy anyone?) way easier as soon as we figure out wtf we're doing

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

c02904 No.1538

>>1533

Excession is not necessarily extinction but the possibility is HUGE. That is the scary part. That is the part I hope to help with if I can. I think we will be in star trek land in my lifetime if this thing is built. I don't want to be stuck in some radioactive nightmare instead .

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

a2017c No.1539

>>1538

What would be a 'good' use of this? I would be more than happy to write some implementations of using this to crack things..

..just so people take us seriously

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

8d5142 No.1540

>>1536

I will do this, going over all VQC's posts, and trying to keep it purely pertinent. I will do it over the next few days and if VQC just lets it all out first, all the better.

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

e34200 No.1541

>>1537

Nah not necessarily a crash. Supposedly IOTA has a chain resistant to quantum computing. That's why I put money in it. But who knows

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

7261f1 No.1542

File: 13342ad6288e40d⋯.png (8.21 KB,152x181,152:181,ClipboardImage.png)

File: 41860784d9c4508⋯.png (5.99 KB,152x121,152:121,ClipboardImage.png)

File: 9e7800c9394e1ca⋯.png (8.65 KB,152x181,152:181,ClipboardImage.png)

File: 0327ef9eadf85a4⋯.png (4.53 KB,152x91,152:91,ClipboardImage.png)

File: ea7a0faa92edcf7⋯.png (9.2 KB,152x181,152:181,ClipboardImage.png)

>>1533

Noticing something interesting in column 0. N has an almost direct relationship to x. Seems to also be a clear pattern with even and odd n, just like for even and odd e. Check it out.

Even n.

{0:2:3:2:1:9} 2x1

{0:2:8:4:4:16} 2x2

{0:2:15:6:9:25} 2x3

{0:2:24:8:16:36} 2x4

{0:2:35:10:25:49} 2x5

{0:2:48:12:36:64} 2x6

{0:2:63:14:49:81} 2x7

{0:2:80:16:64:100} 2x8

{0:2:99:18:81:121} 2x9

{0:2:120:20:100:144} 2x10

{0:2:143:22:121:169} 2x11

{0:2:168:24:144:196} 2x12

Odd n

{0:3:12:6:6:24} 3x2

{0:3:36:12:24:54} 3x4

{0:3:72:18:54:96} 3x6

{0:3:120:24:96:150} 3x8

{0:3:180:30:150:216} 3x10

{0:3:252:36:216:294} 3x12

{0:3:336:42:294:384} 3x14

{0:3:432:48:384:486} 3x16

Even n:

{0:4:6:4:2:18} 4x1

{0:4:16:8:8:32} 4x2

{0:4:30:12:18:50} 4x3

{0:4:48:16:32:72} 4x4

{0:4:70:20:50:98} 4x5

{0:4:96:24:72:128} 4x6

{0:4:126:28:98:162} 4x7

{0:4:160:32:128:200} 4x8

{0:4:198:36:162:242} 4x9

{0:4:240:40:200:288} 4x10

{0:4:286:44:242:338} 4x11

{0:4:336:48:288:392} 4x12

Odd n

{0:5:20:10:10:40} 5x2

{0:5:60:20:40:90} 5x4

{0:5:120:30:90:160} 5x6

{0:5:200:40:160:250} 5x8

{0:5:300:50:250:360} 5x10

{0:5:420:60:360:490} 5x12

Even n

{0:6:9:6:3:27} 6x1

{0:6:24:12:12:48} 6x2

{0:6:45:18:27:75} 6x3

{0:6:72:24:48:108} 6x4

{0:6:105:30:75:147} 6x5

{0:6:144:36:108:192} 6x6

{0:6:189:42:147:243} 6x7

{0:6:240:48:192:300} 6x8

{0:6:297:54:243:363} 6x9

{0:6:360:60:300:432} 6x10

{0:6:429:66:363:507} 6x11

{0:6:504:72:432:588} 6x12

Clear pattern, could be useful. Thoughts, Anons?

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

7261f1 No.1543

>>1535

Nice to see you TLA! Sorry the red pills weren't swallowed by your famalam. I was only able to help two people inch forward. The rest I avoided. Keep up your spirits!! We need your tough ass lovin' to help proof our spirited ideas. Glad you're back. CollegeAnon is back too! Where TF is our professor Teach???

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

7261f1 No.1544

File: bdaa1f21d446e04⋯.png (8.28 KB,152x181,152:181,ClipboardImage.png)

>>1542

Even (0,1) holds to the pattern:

Odd n:

{0:1:4:2:2:8} 1x2

{0:1:12:4:8:18} 1x4

{0:1:24:6:18:32} 1x6

{0:1:40:8:32:50} 1x8

{0:1:60:10:50:72} 1x10

{0:1:84:12:72:98} 1x12

{0:1:112:14:98:128} 1x14

{0:1:144:16:128:162} 1x16

{0:1:180:18:162:200} 1x18

{0:1:220:20:200:242} 1x20

{0:1:264:22:242:288} 1x22

{0:1:312:24:288:338} 1x24

Am I just posting some more basic bullshit that PMA already wrote a program for? Help me out anons. Just keeping my head down and searching the grid for patterns. Trying to tie rows and columns together, starting with row one and column 0.

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

e34200 No.1545

>>1529

This absolutely works just tested it out.

This is an easier way to put my (0,n) column rule.

The cell (0,n) = (0,1) * n (for odd n)

and (0,2n) = (0,2) * n

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

a2017c No.1546

>>1535

Just noticed your comment about redpilling your family. Sorry I called you a cunt.

What keeps me up even though a good portion of my sheeple side of the family thinks I am a racist (which isn't even insulting to a polack) is that they all failed tremendously in life.. but I haven't.. yet. So I've got the high ground so far.

Dunno about your situation. If you really care about changing their minds (I do, I will not let my grandmother go believing the bullshit lies jews perpetrate) you should look into memetics. It's a science of its own, basically an evolved version of propaganda. My view is that propaganda isn't bad if you are telling people the truth.

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

3ead22 No.1547

File: c11e685988ef518⋯.png (1.44 KB,201x17,201:17,ClipboardImage.png)

File: 8db5ea9ba08e4a9⋯.png (1.71 KB,201x17,201:17,ClipboardImage.png)

File: 28c974a8b2b7ddd⋯.png (1.55 KB,201x17,201:17,ClipboardImage.png)

File: ac3584e27ed1b0d⋯.png (1.55 KB,201x17,201:17,ClipboardImage.png)

>>1544

This is actually incredibly useful. It is incomplete though,

{0:8:5:4:1:25}=25

{0:9:8:6:2:32}=64

{0:16:10:8:2:50}=100

{0:18:7:6:1:49}=49

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

8d5142 No.1548

>>1546

haha you call me a cunt all you want, you wonderful anonymous cunt you. i am actually very fascinated by what you call memetics, though I've never used that word. indeed there is an art to informing the ignorant, and this great meme war is sure sharpening that up. guess I was hard on myself for not being better at it.

one more math thing, maybe not relevant, but I worked on this on the bus a few days ago so I'll spill it. VQC mentioned sums of squares being closed under multiplication. i.e. (xx + yy)(ww + zz) = ss+tt, another sum of squares. this can be proved with Gaussian integers (complex numbers a +bi where i = sqrt(-1) ), which gives a formula for two possibly different ways to write the resulting product as sum of squares:

(xx + yy)(ww+zz)

= xxww + yyww + xxzz + yyzz

= xxww + 2wxyz + yyzz + xxzz - 2wxyz + yyww

=(wx+yz)^2 + (xz-yw)^2,

or else (wx -yz)^2 + (xz+yw)^2 by switching the + and - .

VQC's mention might only be incidental though, part of the grid, and not going to be part of the factoring process.

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

7261f1 No.1549

>>1547

Thanks for the feedback! I'm still working off the original .csv output (cause I need to learn programming), so not sure if my cells are complete. So does the pattern hold? From your examples it looks like it doesn't. I still see relationships between n and x in your examples, but you would arrive at x with different equations. What can you make of it MA?

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

c02904 No.1550

>>1539

https://anonfile.com/Za43r2dab0/Unforseen_Concequences.rtf

I just renamed my chronicle and added another chapter. Anon, it seems you are interested in the same stuff as I. Check out this doc and perhaps we can both work on it?

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

c02904 No.1551

>>1550

Shit i forgot to break the link. Srry

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

7261f1 No.1552

>>1551

It's aaaallllright Hobo! Basic OpSec says copypasta the link into a new window. We all need to watch our 6. I'll read it now.

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

ac6203 No.1553

>>1544

VA. I posted a formula earlier for calculating new values of d for any (e,n).

>>1169

>>1181

Teach found a problem in (59,5) that I haven't circled back to.

>>1193

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

c02904 No.1554

>>1535

On the redpilling. Remember, you cant tell someone they are wrong. You cant even show them that they are wrong. In this direction lies sorrow. The only way to convince someone is to set them up to find it out on their own. How do you do that? Well, The Socratic method works on most fuckers.

Curious people use the Socratic Method on themselves without even thinking about it. They ask leading questions constantly. This is the best redpill method. "Antifa IS cool sally, but why are they hurting people?" Why is their plan always Communism? Oh! You like communism and think it is a good idea? Do you know anyone personally who has lived and escaped from a communist nation? Why do they call it "escaping" from communism. Ha ha. I could go on all day but I think you get the point. NEVER say they are wrong, pretend like you dont know and have them educate you. Then lead them off a cliff.

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

3ead22 No.1555

>>1549

More deviations at N24, N25, these are in the original output.csv I have. Baking you a custom order.

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

c02904 No.1556

>>1552

Thanks to you all for all your hard work. This has been one of the most inspiring and interesting things I have ever been a part of. I am honored. Im going to make a few memes. Anyone want a personalized one?

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

8d5142 No.1557

>>1554

You are right hobo, thank you. good night and godspeed anons. I know I'm not the only one who dreams of factoring now am i right?

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

a2017c No.1558

File: 40daf4ad6f6116b⋯.png (270.28 KB,470x599,470:599,telefon.png)

>>1554

fcit.usf.edu/holocaust/people/DocPropa.htm

hitler.org/writings/Mein_Kampf/mkv1ch06.html

en.wikiquote.org/wiki/Mein_Kampf#Chapter_6_-_War_Propaganda

How to make memes from literally Hitler himself.

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

7261f1 No.1559

>>1553

Hey PMA, thanks! I'll re-read those posts now. Have you figured out the column 0 pattern to your satisfaction yet? Looks like you found an odd/even pattern in n as well. Ah, (0,1) thru (0,6) looks like we arrived at the same conclusion for those n values. How does work in higher values of n? Oh yeah, I see those x values tied to the n value in your second example, at least for n=9. There is some elegant formula hiding beneath all this, just working to find it.

"How do we USE the rows and columns to get what we need."

"Enumerate the rules for global, rows, columns and the solution will emerge."

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

e34200 No.1560

So I've been looking through these values that I can generate for the negative square values of e. This is the output for entries (e,n,d,x,a,b,c) where c is a square number. (I checked for c to be product of 2 primes but it didn't produce any). I checked the first 30 entries of the first 30 rows of the first 30 squares (I did a bunch of them get the picture) and heres the result entries where c is a square:

25:

((-25, 2, 13, 7, 6, 24, 144), True)

49:

((-49, 1, 25, 9, 16, 36, 576), True)

((-49, 5, 25, 13, 12, 48, 576), True)

100:

((-100, 4, 26, 14, 12, 48, 576), True)

196:

((-196, 2, 50, 18, 32, 72, 2304), True)

289:

((-289, 5, 145, 37, 108, 192, 20736), True)

361:

((-361, 2, 181, 31, 150, 216, 32400), True)

441:

((-441, 3, 75, 27, 48, 108, 5184), True)

484:

((-484, 1, 122, 26, 96, 150, 14400), True)

((-484, 3, 122, 32, 90, 160, 14400), True)

529:

576:

((-576, 2, 51, 26, 25, 81, 2025), True)

625:

((-625, 3, 65, 29, 36, 100, 3600), True)

676:

729:

((-729, 2, 123, 33, 90, 160, 14400), True)

784:

841:

((-841, 4, 421, 61, 360, 490, 176400), True)

((-841, 6, 421, 71, 350, 504, 176400), True)

1444:

((-1444, 4, 362, 62, 300, 432, 129600), True)

1681:

((-1681, 1, 841, 57, 784, 900, 705600), True)

1936:

((-1936, 2, 244, 52, 192, 300, 57600), True)

((-1936, 6, 244, 64, 180, 320, 57600), True)

2025:

((-2025, 1, 339, 51, 288, 392, 112896), True)

2304:

((-2304, 1, 148, 50, 98, 200, 19600), True)

There is some weird stuff here.

(-49,1,25,9,16,36) [leaving out c]

multiplied by 2 (with e multiplied by 4) we get:

(-196,2,50,18,32,72) [notice that for n,d,x,a,b the previous entry was half and e was a quarter]

(this relationship could be visualized I think)

Also you got

(-484, 1, 122, 26, 96, 150)

same pattern

(-1936, 2, 244, 52, 192, 300)

So if n is one for this type of cells then you can do (newE = oldE * 4) and (newOtherpart = oldOtherpart * 2)

Anyone want to look further into this?

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

e34200 No.1561

>>1560

ignore the True, that just means it's a valid record

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

c02904 No.1562

File: 826335d7601d8b7⋯.jpg (53.57 KB,736x552,4:3,Veritas.jpg)

File: 826335d7601d8b7⋯.jpg (53.57 KB,736x552,4:3,Veritas.jpg)

>>1559

Shamelessly stolen from pintrest,

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

3ead22 No.1563

File: 47154fbc85f27ef⋯.jpg (154.81 KB,1676x1014,838:507,SpecialE1.jpg)

>>1557

I had a dream where my skin was covered in math scribbles.

>>1552

This is a very special view of (1,N). The initial value of X has been floored to zero, and the growth factor of X has been left intact. 8, 9, 24, 25, are marked in red.

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

7261f1 No.1564

File: b2033d77ce6ea2e⋯.jpg (14.19 KB,255x174,85:58,Checking Digits.jpg)

>>1555

Checking those digits, my fag. Uh, TBH those records are in my .csv too. Just got too excited to look further down, lol! My bad.

Program Help Needed. Ok, I'm on a Mac. I installed virtual studio, updated the .net shit, and still couldn't compile the file. Fucking rookie over here. Any advice? I actually can read all of you guy's program formulas, and understand them. I need to humble myself and ask for help with the program aspect.

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

e34200 No.1565

>>1560

((-484, 1, 122, 26, 96, 150, 14400), True)

((-484, 3, 122, 32, 90, 160, 14400), True)

((-1936, 2, 244, 52, 192, 300, 57600), True)

((-1936, 6, 244, 64, 180, 320, 57600), True)

484 = 22^2

1936 = 44^2

122*2 = 244

1*2 = 2

3*2 = 6

26*2 = 52

32*2 = 64

etc..

Very cool

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

e34200 No.1566

>>1564

I used C# for my job this past summer. I also have a mac and recently installed C# and visual studio on it to run this stuff. It wouldn't work for me either. I run my shit in python now.

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

7261f1 No.1567

>>1562

Wow! Thanks for the cool memes Hobo! I can't program shit, but running a business for 12 years and studying the laws of Human Interaction (via Dale Carnegie, Napoleon Hill, etc) have helped me learn to thrive in any environment. It's meant to be that we are all here. Our rational/spiritual leanings attracted us to VQC. Just glad to be here.

"When the student is ready, the Master will appear."

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

a2017c No.1568

>>1564

Lol..

I managed to run the original file on Linux..

need help? Send screenshots.

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

ac6203 No.1569

>>1559

Iterating the records lead to me to potential matches. But to be honest, I have so many different ways of iterating and creating records it's all a bit of a blur.

>There is some elegant formula hiding beneath all this

This I firmly believe.

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

c02904 No.1570

File: d078a6bf01995c9⋯.jpg (717.13 KB,1440x1060,72:53,fucking checked!.jpg)

>>1555

fucking checked !

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

7261f1 No.1571

>>1566

Ok, maybe I should try Python. I don't expect you guys to teach me, and I have confidence that I will learn quickly.

>>1568

Thanks Baker! If I'm really going to contribute as we move forward, I need to write formulas and code. Especially as we move to new projects like ECC. I can do it. Appreciate your support. So in Linux, do you use the terminal, or is there a program to write, compile, and run code?

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

ac6203 No.1572

Has anyone looked into these 2 formulas yet?

f = 2d + 1 - e ( f is what you add to c to make a square )

( x + n )( x + n ) = nn + 2d( n - 1 ) + f - 1

I was running a few tests around na records, and added these 2 formulas to my output for each record.

What's interesting about this is it appears that the f value equals the small square only at the na records.

Just guessing that maybe there is something in here indicating where we should search next?

c=145

(1,5,4) = {1:5:12:7:5:29} = 145;

f = (2 * 12) + 1 - 1 = 24;

(x+n)^2 = (5*5) + 2 * 12 * (5 - 1) + 24 - 1 = 144;

(x+n)^2 = 12x12=144;

c=145 na record

(1,1,4) = {1:1:32:7:25:41} = 1025;

f = (2 * 32) + 1 - 1 = 64;

(x+n)^2 (1*1) + 2 * 32 * (1 - 1) + 64 - 1 = 64

(x+n)^2=8x8=64;

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

3ead22 No.1573

File: baa220c72a7453d⋯.jpg (154.22 KB,1676x1014,838:507,NormalE1.jpg)

Here's the normal view of (1,N) again. I'm focused on getting the initial value of X, if someone could find a formula for how X behaves after that, it'll be huge. The distances are small enough that it can be forced out, but moving thousands of N records, the formula is significant.

>>1572

My understand of E and F is this. E is the amount C is over it's perfect square root, F is the amount C is under the next perfect square root up (D+1). This is why the perfect square roots only fill E0, but they fill the inverted square roots in F. Every perfect square root can be a perfect square root under a different perfect square root.

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

a2017c No.1574

>>1571

You have Linux?

Download Mono develop: mono-project.com/download/

Then write the code in file named TheEnd.cs, add this method (if someone could inform me how to make code look good on 8ch that would be good)

public static void Main(string[] args) {

CreateTheEnd();

Output();

}

And open terminal in the directory and type mcs TheEnd.cs

Then mono TheEnd.exe

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

a2017c No.1575

File: fd5a37bf63a7751⋯.png (1.98 MB,1600x1200,4:3,kod.png)

>>1574

Best thing about Mono is no need to open a gigantic IDE.

Just terminal commands.

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

7261f1 No.1576

File: c2cce6675b847d6⋯.png (209.36 KB,500x280,25:14,Harry Potter Python.png)

>>1572

PMA, f has been mystifying me since the beginning code VQC posted. Thanks for clarifying.

>>1574

Baker, can i run a Linux environment on a Mac? If so, maybe I take your route. If Python runs well on a Mac, I'll go that way first.

Lads, I'm gonna grab that Python/Basilisk by the throat and stab it with the sword of Gryffindor. Um, Harry Potter memes, anyone?

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

a2017c No.1577

File: 18cff6566406ce0⋯.gif (1.61 MB,500x281,500:281,image.gif)

>>1576

mono-project.com/docs/getting-started/install/mac/

C'mon, it isn't that hard. We've got a VQC generator in Java too.

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

7261f1 No.1578

>>1563

WTF are those two badass lines moving into infinity? Actually, there are more than two, many more. Two arteries or vessels tho.

>>1577

Checked! Thanks Baker. Apparently I'm going to get a degree in programming here as well, lol! I'm checking it out now. Downloading now. I fucking love you guys. Even my lady is like "math is a much better hobby for you than worrying about the end of the world."

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

3ead22 No.1579

>>1577

We also have the VQC bruteforcer that I figured out what was wrong with. The correct version is this.

ArbitraryCell(e, n, x){

e = e;

n = n;

x = x;

a = (x * x + e) / (2 * n);

b = a + 2 * (x + n);

c = a * b;

d = sqrt(c);

}

boolean isValid(){

return (c - d * d) == e;

}

You can generate any cell by any E,N,X and test if it's a good cell or not. Good for looking at very specific regions.

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

3ead22 No.1580

>>1578

Those two the are two patterns you identified. The sub patterns are the one's you missed. Did you tell your lady you're mathing to end the world?

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

7261f1 No.1581

>>1580

LOL! MA, she knows. When we met I told her "At some point, I'm going to get heat for pursuing the truth." She was like, "OK, I'm cool with that."

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

7261f1 No.1582

>>1562

Hobo, I'm halfway thru your paper now! You're a fucking optimistic pessimist. Good thing I'm prepped, at least for 3 months. Gotta bump that up tho. VQC, you're the man. Thanks for inviting us to join you.

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

7261f1 No.1583

Holy Shit, Hobo! What a great read! Questions to follow. Hey Anons, It's a 15-30 minute read, but well worth it, check it out. Copypasta for OpSec, anons.

https:/ /anonfile.com/Za43r2dab0/Unforseen_Concequences.rtf

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

7261f1 No.1584

File: e229e92f0762bdc⋯.jpg (17.83 KB,309x285,103:95,Q Logo.jpg)

File: 40a843adfd2f233⋯.jpg (10.86 KB,236x255,236:255,QCP.jpg)

File: 5db46b0d205615f⋯.png (1.43 MB,1000x500,2:1,Prime Rainbows.png)

Hey Topol! Good evening! Can I get your eyes on this? We need a cool ass VQC logo with the Rainbow Primes behind it. Q logos are starting point, make it fabulous! Can you help?

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

15bf90 No.1586

File: 4e6401bdc7689c3⋯.png (139.93 KB,500x300,5:3,Rod Ring Triangle.png)

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

3520dc No.1587

File: c148692c5e5e073⋯.png (2.65 MB,2901x2036,2901:2036,VQCNotes.png)

>>1541

What on earth is IOTA?

I came across that doing my translation games with ta.io (Dooooon't ask.)

>>1584

Seeeeeeeee… I keep seeing Capsule Corp which is more C C… C^2… Verde Q Code, the Green Q… hold on… besides the money reference… kikes… an oven… I think a chef's hat with a … i've already started drawing this out a day or two ago while I was working on ALL THE THINGS.

Gimme a bit.

Also, no one worry about this being an ELE.

We're fine. Everyone's fine. Everything's fine.

Faith. You can haz.

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

15bf90 No.1588

>>1587

I love seeing written notebooks. Path to the mind of your friend(s). No pressure, no rush. Just seeing a little bit higher on the planes of existence over here. Know you care about this quest. That's all. Love your input. Your intuition is usually right on. Appreciate your badass style of memes and knowledge. Love ya, Topol!

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

15bf90 No.1589

File: 5db46b0d205615f⋯.png (1.43 MB,1000x500,2:1,Rainbow Primes.png)

This.

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

3520dc No.1590

File: 57616a314a91660⋯.png (15.78 KB,999x666,3:2,VQCLogos.png)

>>1588

I mean… I'm fine with a Q… it's just Number Muncher Green.

Also, I'm not a graphic designer.

I make graphic designers want to plunge their exacto knives through their eyes. I use papyrus, on purpose, with a thick black stroke.

Somewhere, a graphic designer just had an emotional breakdown because I made this.

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

3520dc No.1591

>>1590

Also it satisfies my deez eye aur for Q, C2, and the V is kinda sideways, but Verde=Green

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

3520dc No.1592

>>1591

Either, or, neither… -shrug-

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

15bf90 No.1593

>>1589

Is this really just numbers? Beauty.

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

3520dc No.1596

>>1593

Did you just unintentionally reply to yourself or are ya still admiring the general glory of it all?

Also, there's a thing involving C2 in the EZ bake.

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

3f145c No.1597

>>1596

Unintentional. Just loving that prime rainbow. My bad, lol! Thanks Topol!

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

99edb0 No.1598

Hey, so since I'm the BO I feel obliged to mention that while I haven't really been posting much for the last week, I am very much still here every day. Considering the ramifications of what we're doing, I'm sure it's important to all of you to know that the person responsible for the board hasn't abandoned it. Even before I became aware of this I had far more that I needed to do than I had the time for, and that's still the case. I've got a bit of time now, so (since I haven't seen anyone else doing it - if they have it would be handy to know) I'm going to try to conglomerate all of VQC's hints since the start and as much of the findings as I can understand over the next couple hours and turn them into something hopefully easy to understand.

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

a2017c No.1599

He didn't reply to himself - his alter ego slipped up! Muahahaha!

If you all somehow reach post limit while I'm asleep, bake it however you want. Not people here have already read what I have right now.

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

a2017c No.1600

>>1599

Most!

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

99edb0 No.1601

>>1574

There are code tags: (without spaces obviously) [ c o d e ] then your text then [ / c o d e ]

Like so:

public static void Main(string[] args) {
CreateTheEnd();
Output();
}

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.
Post last edited at

99edb0 No.1602

File: 0ebe69411d71a9f⋯.pdf (258.67 KB,vqc hints.pdf)

Here's every hint VQC has given thus far in one convenient location (apologies that it's a pdf again; I know why people are paranoid of them but I can't really think of any other way to do it). I didn't do much formatting so it may look bad in places but I was just copying and pasting text.

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

01b9f7 No.1603

>>1535

You forgot ab*ab

There are 5 ways

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

e34200 No.1604

File: fd50f261ca0f993⋯.gif (5.18 MB,1000x500,2:1,BVals.gif)

File: d2cdd5f373d3a1d⋯.gif (9.74 MB,1000x500,2:1,AVals.gif)

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

e34200 No.1605

File: c93f5ad02b7baf2⋯.gif (10.37 MB,1000x500,2:1,DVals.gif)

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

78c979 No.1606

>>1604

>>1605

Fuck me CA!

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

e34200 No.1607

File: 9bec1583966dbae⋯.gif (3.08 MB,1000x500,2:1,AsAndNearAs.gif)

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

e34200 No.1608

>>1607

This one is actually B's. Ignore the text

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

e34200 No.1609

>>1587

IOTA (MIOTA) is a crypto I think developed by

…microsoft…

so they will still be in control with it, BUT I'll have more money so thats neat

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

e34200 No.1610

>>1589

This is all the prime A values I think. My original file is named DiffAs.bmp so I think that is what this is. White would be A = 1 or 2, then yellow would be the next prime etc. If we can somehow generalize this then we could have a set of lines for any prime A to show all the products of it.

Also if you look at my AVals you can notice that there are parabolas that slide down the graph that do not move. These dots are all probably integer selections on the parabola. I'm going to try and generalize these into equations because I've wanted to do it for a while but I've been lazy.

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

e34200 No.1611

9………………..+………………………..

0…………….+….+..++……………………

1………………..+….+..++………………..

2……………..+……+….+………………..

3…………+……..+……+….+…………….

4…………….+……..+……+……………..

5………………..+……..+………………..

6………….+……….+……..+…………….

7……………..+……….+……..+…………

8……..+…………+……….+……………..

9…………+…………+……….+………….

0…………….+…………+………………..

Copy and past into same width text file.

The end is saying there is a record divisible by 2 at -5,-1. Also it said there is one divisible by 3 at -7,-1 and one divisible by 4 at -9,-1. Could this N = -1 be a key entry???

Also I'm planning to do a code dump later today. Hit me with some (you)'s if you guys are interested. I have code to generate the pictures (even gifs!) but you'll need to modify some of the code (its easy though). I also have a way to generate these outputs above (I could generalize this for anything) because these are easier to look at than bitmaps to really find patterns. Also I have code to generate any (0,n) cell and any (e,1) cell. Also I have code to (I'm not sure if the function is surjective, but it could be helpful) to generate any (-(q^2), n) column.

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

c02904 No.1612

>>1582 Yeah I have strong pessimistic tendencies. It is usually a good balance for highly optimistic people though. I have regularly been the one to catch small stuff that turns into big problems throughout my life. I guess I have spent too much time too close to many bad people so I tread carefully.

Don't take my ideas as negativity take them more as risk mitigation or even insurance. It is good to take a little pessimism early on and use it as protection.

Without knowing what is coming its good to be ready for rough times. That said I don't think they will last unless the bad guys get their hands on this thing. That is one of my biggest worries at this point. The bad guys get this and lock it up and it is used against good people.

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

e34200 No.1613

>>1611

I also have a bunch of shit typed out in .txt files that are different series and patterns and notes

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

c02904 No.1614

>>1598

Thanks for making this place happen BO!

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

c02904 No.1615

>>1604

A couple ideas when I look at your GIF's. FIrst it almost seems like a good random number generator. Next, here I am again, looking at a pyramid. Just like on the dollar bill or a picture of Antarctica. No coincidences right?

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

c02904 No.1616

>>1606

Nice to see someone get some real value out of a college degree right? I like watching CA's gif's.

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

e34200 No.1617

File: e6bfc0b8058cc04⋯.png (1.43 MB,1000x500,2:1,output0.png)

File: 012873ed2f50dcc⋯.png (1.43 MB,1000x500,2:1,xModPisBase.png)

>>1615

Entries for A = 2

(-5,-1)

(-9,0), (-4,0), (-1,0), (0,0)

(-5,1), (0,1), (3,1), (4,1)

(-8,2), (-1,2), (4,2)

(-13,3),(-4,3), (3,3), (8,3)

From any value of A at (e,n) if we go to the cell(e+4, n+1) we will (probably) get another entry.

Also if at (e,n) we have A.

The centers of any line are going to be on the (0,q^2) cell where

Also, the generation seems to be independent of the (0,0) and (0,4) cell (4=2^2)

So our start is at (0,1). We can then do the pattern twice to the right and once to the left.

n: cells where A = 2

1^2: (-4,0) <1< (0,1) >2 (4,2) (5,3)

From here, to get to the next line we can take all of our cells and shift them by:

(e,n) -> (e-1,n+[1]) and then add another cell to the left side of the line to get:

(added to left)

(-9,0), (-5,1), (-1,2), (3,3), (7,4)

We can also get to the previous line (but you remove the last entry on the right before doing this)

(e,n) -> (e-1,n-1) to get

(-5,-1), (-1,0), (3,1), *[(6,3)] gets removed

Then to get the next 3 lines we have to do

2^2, so we start at (0,4) and we use our pattern to go to the left twice (2) and to the right 3 times (2+1).

So we get

(-8,2),(-4,3) <2< (0,4) >3> (4,5), (8,6), (12,7)

Then, like before, if we want to go to the next line we do

(e,n) -> (e-1, n+[2]) and add an entry to the left

(added)

[(-13,3)],(-9,4),(-5,5),(-1,6),(3,7),(7,8), (11,9)

And the previous is the pattern

(e,n) -> (e-1, n-[2]) and you remove an entry on the right to get:

(-9,0), (-5,1), (-1,2), (3,3), (7,4) [(11, 5) would be removed]

This is info on how to calculate the coordinates for any cell where a = 2.

It is very simple to calculate them. I am going to try and generalize to higher a.

>>1615

No coincidences at all. Here is a pic that looks real cool. with pyramidal stuff.

Also this one look at the LITERAL 3D SPIRAL GOING DOWN THE CENTER. This is where X mod P is base [ i think base = (a+b)/a ]

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

e34200 No.1618

File: 9e155c15490b12e⋯.png (1.43 MB,1000x500,2:1,AvalIs2.png)

>>1617

Also this is pic related for the series.

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

c02904 No.1619

>>1586

So I am guessing this pic refers to "The rod and the ring will strike" from the 4chan prophecy? If you have not seen that then check it out. Pretty fun to try to figure out. I think they are all done with the exception of just 1 or 2

Belly of the dragon will drip water: Dragon Capsule?

Star will gorge itself on clay: Israel taking land?

Rod and the ring will strike: Rods from god? Maybe we are part of it. :)

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

e34200 No.1620

>>1617

A = 3

2 up from origin of parabolas is (-7,-1), (-1,0), (5,1)

For this we can notice that the origins of the parabolas are:

(-3,1), and (3,2), and (9,3), (15,4) (idk how this pattern is formed)

From these origins we can calculate anything on the parabola. You can go up N like:

(e,n) -> (e-1,n+1) -> (e-2,n+1) -> (e-4,n+1)

and down like:

(e,n) -> (e-1,n-1) -> (e-2,n-1) -> (e-4,n-1)

From any cell in (e,n) where a = 3 we know the cell (e+6,n+1) and (e-6,n-1) contains another a=3.

Only inside this huge parabola, but I suspect the pattern continues for really high values that our theend didn't generate. Moreover, if we do this to get to (e+/-6, n+/-2) then the entry on that parabola is SAME entry in the parabola shape.

x x*x

1 1

2 4

3 9

4 16

5 25

(0,0)(1,1),(2,4)

So generally if we have a cell (e,n) that is divisible by 3 and is the origin of the parabola, then the entries (e-(y^2), n+y) that are also divisible by 3 for all y.

So if we are at a cell (e1,n1) divisible by 3, then it is equal to (e0 - (y^2), n0 + y) for another e0,n0 where e0 != e1, and n0 != n1. Also, (e0,n0) is the origin on the parabola these line up on. If we go to (e+6,n+1), we can call this (e2,n2). Then we have that (e2,n2) is equal to (e3-y^2, n3+y) which are the SAME Y VALUES. So here we can get coords for any a=3

Also, if we have 2 cells at (e,n) and (e-1,n-w) we can generate more cells by doing the following:

(e,n) -> (e-1,n-w)

-> (e-4,n-2w)

-> (e,9,n-3w)

And also the reverse

(e,n) -> (e-1,n+w)

-> (e-4,n+2w)

etc..

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

e34200 No.1621

>>1620

Big if Huge.

Also if we have a n origin cell at (e*,n*) and to to (e* -(2^2), n* - 2*w) = (E,N),

that cell is equivalent to (e0 - (1^2), n0 - 2(w+1)) where (e0,n0) is another parabolic origin.

A = 4

For this, the pattern is similar. The third [4-1] above the origin is:

The difference is the function goes from (e,n) to (e+8,n+1) and the relation between two parabolas is

(e*,n*) [origin of paraobola] to (e* -(2^2), n* - 2*w) = (e0 - (1^2), n0 - 2(w+1))

where (e0,n0) is another parabolic origin.

It seems that we can generally say the following:

For any A

If you are at a parabolic origin cell (e,n) with the parabola being (e-(j^2),n+(w*j)) for any cell, then if you go to the entry by plugging in this j

j = {j/2 if A even OR (j+1)/2 if A odd}

you reach a new cell that is equivalent to (e* - (i^2), n* +(w*i))

where (e+(2*A) , n+1) = (e*,n*)

and i = {A/2 if A even, and (A-1)/2 if A odd}

Now, if we can find a pattern to get these initial entries then we can generate every entry with factor A.

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

78c979 No.1622

File: fc7f7b87d142631⋯.png (82.18 KB,468x375,156:125,ChrisRootODavid-2017.12.29.png)

He's Baaack… Such odd numbers and display.

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

ad654f No.1623

>>1622

I'm guessing that's not a feature of twitter?

Slow day today. I just spent hours troubleshooting a bug where I was copying a reference of an old object rather than cloning it into a new object.

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

e34200 No.1624

>>1621

So through this method for (e,n,d,x,a,b):

We know E,N,A and can shift along the parabola

aa + 2ax + 2an = c (a,x,n,c)

b = a + 2x + 2n (b,a,x,n)

a * b = c (a,b,c)

(d+n)(d+n)-(x+n)(x+n) = c (d,n,x,c)

x = d - a (x,d,a)

d * d + e = c (d,e,c)

Have E,N,A:

(b,a,x,n)

(a,b,c)

(d,n,x,c)

(x,d,a)

(d,e,c)

So now we have relations between:

(b,x) .

(b,c) .

(d,x,c)

(d,c)

(x,d)

(b,x) and (b,c) -> (x,c)

(x,c) and (x,d) -> (c,d)

(d,c) and (c,d) -> c or d!!

b = a + 2x + 2n

a * b = c

-> c/a = a + 2x + 2n

c/a = a + 2x + 2n

x = d - a

-> c/a = a + 2(d - a) + 2n

c/a = a + 2(d - a) + 2n

d * d + e = c

c = aa + 2a(d-a) + 2an

dd + e = aa + 2a(d-a) + 2an

d = sqrt( 2ad - aa + 2an - e )

then

c = dd + e

x = d - a

so we can generate any (e,n,d,x,a,b) for a constant a by

shifting along this parabola and using this equation.

DO WE HAVE A WINNER?

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

945313 No.1625

>>1624

Been following along. Great insights. Are you assuming we know a?

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

a2017c No.1626

>>1624

What are you talking about? I don't see how you would know a anywhere in there.

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

a2017c No.1627

File: 7dbf37205b25878⋯.jpg (50.45 KB,564x663,188:221,hmm.jpg)

>>1624

If you knew a you could just divide c by a and it'd be over.

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

e34200 No.1628

>>1626

>>1625

>>1621

This is to generate other entries with the same A. I checked and it works for A=2,3,4,5 (1 was linear so I skipped it, also its lame) so I think it might work for more. I'll write code to check it later.

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

e34200 No.1629

File: f748554f626fde1⋯.png (1.43 MB,1000x500,2:1,AvalIs3.png)

File: ba404af1744aa20⋯.png (1.43 MB,1000x500,2:1,AvalIs4.png)

>>1628

>>1618

This is pic related for A=2. I'll post a couple more.

I haven't necessarily figured out how to figure out how long the lines are, but it seems like they start with 3 and add 1 on the right and then 1 on the left each time or something like that. I had it figured out for A=2.

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

e34200 No.1630

>>1629

Seems that for each number a, there exists an origin for the parabola at cell (0,2*a). So for any a We can generate every other cell with value a.

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

99edb0 No.1631

File: 6180df5e311281d⋯.png (41.36 KB,2048x1024,2:1,output (i, j) when a&b are….png)

Thinking out of my ass here: we can calculate any of the variables by applying math to i and j. If we could magically calculate i and j from c, we'd be able to calculate a and b from c. Here's a plot with i as the x axis and j as the y axis every time a and b are primes. This might be useless but I only wasted a couple minutes on it.

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

e34200 No.1632

>>1630

Moreover if you go from (0,2*a) and add or subtract 2*a to e, you generate another origin for the parabola.

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

e34200 No.1633

>>1624

Fucked up the math on this one sorry guise. Trying to fix it (quadratic eqn)

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

e34200 No.1634

>>1624

I incorrectly had this as the equation

>dd + e = aa + 2a(d-a) + 2an

>d = sqrt( 2ad - aa + 2an - e )

d = a +/- sqrt(8an - 4e)/2

So, believe it or not, for any E,N,A, we can generate TWO records for d.

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

e34200 No.1635

>>1634

We know E,N,A

aa + 2ax + 2an = c (a,x,n,c)

b = a + 2x + 2n (b,a,x,n)

a * b = c (a,b,c)

(d+n)(d+n)-(x+n)(x+n) = c (d,n,x,c)

x = d - a (x,d,a)

d * d + e = c (d,e,c)

dd = c - e

dd + 2dn + nn - (x+n)(x+n) = c

c - e + 2dn + nn - (x+n)(x+n) = c

2dn - e + nn - (xx + 2xn + nn) = 0

2dn - e + nn - xx - 2xn - nn = 0

2dn - e - xx - 2xn = 0

2n(d-x) = xx + e [x = d-a => a = d-x]

2na = xx + e

xx = 2na - e

x = math.sqrt(2na-e)

Then d = x + a

c = dd + e

b = c/a

This might be an easier way to calculate. Pls verify if you're following along

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

99edb0 No.1636

Why do we have records for negative e? Why are they put into the graph? The numbers we're trying to find are only going to be positive.

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

5b6878 No.1637

>>1598

>>1602

Thanks AA! We appreciate you putting this board together. Also, thanks for the helpful summary.

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

e34200 No.1638

>>1636

Just remember dd+e = c. For negatives D isn't necessarily the side of the largest square less than c it could just be any square and e is what you add to it to make it c.

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

99edb0 No.1639

>>1638

That does make sense, but if e is ever going to be negative, it's because d is larger than c (like you said). d is the floor of the square root of c, so how could it ever be bigger than c?

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

ad654f No.1640

>>1639

-E is the F side, and is the difference C is under the ceiling of it's square root. ie, d+1

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

e34200 No.1641

>>1639

VQC made the grid by multiplying and doing that stuff. He said this grid is practically effective everywhere so I'm trying to shed my preconceptions about what all the values are because they can probably be calculated in many different ways.

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

e34200 No.1642

File: 53fef26758b08d3⋯.png (1.43 MB,1000x500,2:1,AvalIs40.png)

pic related:

For 40 we have parabolic origin cells at

(0,20), (0,80), (0,180), (0,320)

Notice: (vg = vertical gaps)

(0,20) = (0, (40/2) * 1) (vg = 0)

(0,80) = (0, (40/2) * 4) (vg = 1)

(0,180) = (0, (40/2) * 9) (vg = 2)

(0,320) = (0, (40/2) * 16) (vg = 3)

So for any value A (if A is even) you have parabolic origin cells at ( 2AH, (A/2) * T^2 ) for any integers H,T.

Then from those cells (say (e,n)), (depending on what T you chose), you can get another cell (with the same a) by the following:

(e,n) -> (e+2A*J, n-J) (for any J)

(e,n) -> (e-J^2, n + J*T) (for any J)

I may have posted someting earlier, which said that you could go (e,n) -> (e+2a, n) which is wrong, this above is the correct formula.

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

e34200 No.1643

>>1642

Now for 41 (odd number) we get origin cells at:

(-41,20), (41,21)

(0,82)

(-41,184), (40,185)

(0,328)

(-41, (41*1-1)/2), (41, (41*1+1)/2)

(0, (41*4)/2)

(-41, (41*9-1)/2), (41, (41*9

(0, (41*16-1)/2)

So in general for an odd A, we will have parabolic origin cells at (indexed by t):

Odd t:

(-A, (A*(t^2)-1)/2), (A, (A*(t^2)+1)/2)

Even t:

(0, (A*(t^2))/2 )

Then, obviously, we can still use the pattern

(e,n) -> (e+2AJ, n+J*t) for any J

to move along the parabolas. Previously, I had written a way to traverse to and from parabolas from the origin cells.

>>1621 (here)

So now this is a way to generate the origin cells for any A

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

e34200 No.1644

File: f9509b4b7358ac0⋯.png (1.43 MB,1000x500,2:1,AvalIs41.png)

>>1643

Pic for 41

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

e34200 No.1645

>>1643

Just tested this out. It works.

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

e34200 No.1646

def ENA(E,N,A):

X = int(math.sqrt(2 * N * A - E))

D = X + A

C = D * D + E

B = C / A

return (E,N,D,X,A,B,C)

#This will give coords for parabolic origins and also P is the shifter for N for the parabola

def originForP(A,P):

if(A%2 == 0):

return ENA(0,(A/2)*P*P,A)

else:

if(P%2 == 0):

return ENA(0, (A*(P*P))/2,A)

else:

return ENA(A, (A*(P*P)+1)/2, A)

def shiftFromOrigin(origin, P, t):

E = origin[e] - (t * t)

N = origin[n] + t * P

A = origin[a]

return ENA(E,N,A)

Python code if you guys want it.

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

99edb0 No.1647

File: 9b05b63e9fc2974⋯.png (10.41 KB,2048x1024,2:1,output c * i prime a and b.png)

File: a59e47baf2ac9d6⋯.png (12.57 KB,2048x1024,2:1,linear probably.png)

I don't know if anyone figured this out before me or found a better method for finding genesis cells, but here's a thing.

In order to find the genesis cell for a given product of two primes c, we need to use c to calculate e and n. e is easy, since it's derived directly from c.

e = c - ((floor(sqrt(c))) * (floor(sqrt(c))))

In order to calculate n from c, we need to know i, since

n = i - d

n = i - (floor(sqrt(c)))

That's trickier to calculate. That's the obvious stuff. Now here's an image (the first one) with c as the x axis and i as the y axis. A point is drawn every time c is the product of two primes. It creates what looks like a bunch of linear lines. In the second image, I used the straight line tool in Paint to be completely sure they were linear, although I only did it for a few lines. I'm not sure if each new line start every time the i loop starts again or if it's something else, but if we could figure it out and separate each of the lines, we could use simple gradient maths (rise/run) to calculate i from a given c. That would allow us to find the genesis cell for a given c (I haven't gotten into generating the rest of the cells from the genesis cell yet).

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

9fb75d No.1648

>>1647

Agreed! Unfortunately, VQC mentioned that i and j are only used to generate the grid, but in a real RSA case, we are only given c.

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

a2017c No.1649

>>1648

Yep. It's fascinating—

All you need to encrypt is their public large composite, and they decrypt by knowing the factorization.

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

9fb75d No.1650

>>1649

So where the heck are we at? PMA seems to have a good handle on column 0, moving thru records using c,cc, aa, bb, etc. How does increasing n value change a var and related x var values? Also, how do we tie together our knowledge of row rules and column rules? We’re kinda stalled here at the moment. Thoughts, Anons?

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

99edb0 No.1651

>>1648

If we weren't meant to care about i or j after the fact, why are we using them to calculate n? I don't think VQC was implying that we should just completely ignore i and j. VQC has been telling us to look for patterns. I found a pattern. What I'm saying is that if we can use only c to find i, we can use only c to find n. We can already use only c to find e. If we can find n from c, like we've been trying to do, we can find the genesis cell for a given c. Why would this not be worth looking into?

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

a2017c No.1652

>>1651

Generating genesis cell is easy.

Finding n gives you the whole factorization.

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

99edb0 No.1653

>>1652

So are you saying someone already figure out how to find n from c, or does "generating" mean something else?

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

15bf90 No.1654

>>1651

Agreed! Your idea is worth pursuing, to find the underlying formulas. Not trying to be a downer, or to dismiss your idea. Let's pursue it, Anon!

I asked VQC about i and j, and his response was "they are necessary to generate the grid, but remember that in a real case, you won't be given i or j, only c." I'll look thru the archives and see if I can find his post about this.

Here's another tasty crumb from VQC:

>>>/cbts/53615

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

15bf90 No.1655

File: f8092df4151e60a⋯.png (250.55 KB,610x408,305:204,Milo VQC.png)

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

a2017c No.1656

>>1653

Not sure what you mean by genesis cell, but it used to mean (e,1). Which can already be created.

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

99edb0 No.1657

>>1656

We really need some kind of jargon dictionary at this point. A few threads ago someone said that "genesis cell" meant the first cell of an infinite set (so t = 1 regardless of (e, n)). That's what I was referring to.

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

15bf90 No.1658

File: 7ca3942a8c80bb3⋯.jpeg (47.46 KB,625x401,625:401,Boondock Saints.jpeg)

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

99edb0 No.1659

Further from this >>1647

If there is a way to find the gradient of each of these lines, we don't actually need to do anything with t/setSize. We'll have e, n, d, c and i, and we can use those to calculate a and b.

c = a*b

c = (i-j)(i+j)

c = i^2 - j^2

j^2 + c = i^2

j^2 = i^2 - c

j = sqrt(i^2 - c)

I also saw a far simpler method of calculating j somewhere else. With i and j we can calculate a and b regardless of any of the other infinite possible cells for a given (e, n). All we have to do is figure out how these lines are generated in terms of i and use gradients to calculate n from c.

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

15bf90 No.1660

>>1657

Well, this relates to the main problem we're trying to solve right now. Baker is correct, and you are correct too. Agreeing on terms would be helpful. With higher values of n, you could consider the first cell the "genesis cell". The only issue is we don't yet know n, and we're trying to solve for it starting only from c.

(e,1) or row one is "The one row to rule them all" according to VQC. We can generate all elements for any value of e in row one, using (for odd e at t=1) a=(e+1)/2 and (for even e at t=1) a=e/2. At (0,0) a=2. Then we solve for b and n at t=1, (e,1). Then we can build "Jacob's Ladder" or "Stairway To Heaven" in row one using the pattern of b at t=1 dropping to become a at t=2. So for row 1, we can create all elements into infinity. VQC said that "cells at (e,1) contain all factors for that entire column." So row one is our "Catalog of var a Values"? (Help me here if I'm wrong, anons.)

For column 0, my understanding is that as c increases to huge RSA numbers, n is also likely to increase to huge (but less than c) numbers. Our pattern of jumping up using c, cc, aa, bb , etc is to help us find the correct row of n for the c we are factoring. (help me here if I'm wrong, Anons). PMA, can you give us the Meta Idea of what c^2 factoring in Column 0 is hoping to accomplish? I think what I've stated is correct, but could be wrong too.

Thoughts, Anons?

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

e34200 No.1661

File: 45337148f1e9181⋯.png (58.05 KB,1156x828,289:207,Screen Shot 2017-12-29 at ….png)

I think I have found a pattern for any x value.

X:

Start with (e,-1) = (-x^2, -1).

Then we can generate a line from this point by doing the pattern

(e,-1) -> (e + 2J, -1 + J). This is the line that goes down and to the right.

Then from any of these cells, (e,n), we can find the next cell where X is

the same value by doing

(e,n) -> (e+2n, n)

Or we can start at our (e,-1) = (-x^2,-1) cell and shoot lines out from it with:

(e,-1) -> (e + 2*d*t, -1 + t) for any integers d,t

Similar to the constant A values, we need to generate an entry by having (e,n,x) values.

Here are our equations:

aa + 2ax + 2an = c (a,x,n,c)

b = a + 2x + 2n (b,a,x,n)

a * b = c (a,b,c)

(d+n)(d+n)-(x+n)(x+n) = c (d,n,x,c)

x = d - a (x,d,a)

d * d + e = c (d,e,c)

x = math.sqrt(2na-e) (x,n,a,e)

From this we can get

xx = 2na - e

a = (xx + e)/2n

Then we have

d = x + a

b = a + 2x + n

c = a * b

to generate a new cell.

So now given any value X we can generate every cell with the same X.

Pic related is an example of this.

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

e34200 No.1662

>>1661

INSTEAD OF STARTING AT (-x^2,-1) this pattern starts at (-x^2, 0). Sorry

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

15bf90 No.1663

>>1661

Nice pattern and work CA! So, starting from only c, are we able generate x so we can follow the pattern? Or, saying it another way, given c, d, and e how do we generate x? We need var a to do it I think??? VQC keeps telling us to find factors of var a, since that is the key to deriving x. Thoughts?

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

15bf90 No.1664

>>1661

Also, there is a clear pattern between n values and x values in column 0. Wanna take a crack at writing a formula for it, CA? PMA and I got n(1-6) figured out, and there is a clear pattern for odd n, and a clear pattern for even n. After (0,6) the pattern morphs, but there is still a clear relationship from n to x.

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

e34200 No.1665

>>1663

No this is starting at X we can generate any other cell with the same X. Given our C, we can generate (for a=5,b=23, a*b = 115):

Our entry for C is

(15,48,10,9,1,115) or (15,48,10,-105,115,1)

and our destination cell is:

(15,4,10,5,5,23)

So our C gives us the correct D value. We need a way to calculate these other values from our original cell.

>>1664

I think I've already solved all the (0,n) columns. Look at this code (I'm pretty sure I've already tested it and it works) but give it a look over.

(index is basically the t value)

def zeroN(N,index):

if(N == 1):

return zeroOne(index)

if(N == 2):

return zeroTwo(index)

if(N % 2 == 0):

#Even

factor = N/2

baseRec = zeroTwo(index)

else:

#Odd

factor = N

baseRec = zeroOne(index)

E = baseRec[e] * factor

D = baseRec[d] * factor

X = baseRec[x] * factor

A = baseRec[a] * factor

B = baseRec[b] * factor

C = A * B

return (E,N,D,X,A,B,C)

#Generates any entry in the (0,1) cell

def zeroOne(index): #index starts at index = 1

A = index * index * 2

D = 2 * index * (index + 1)

X = index * 2

E = 0

N = 1

B = A + 2 * X + 2 * N

C = A * B

return (E,N,D,X,A,B,C)

#Generates any entry in the (0,2) cell

def zeroTwo(index):

X = index * 2

A = index * index

B = (index + 2)**2

C = A * B

D = X + A

E = C - D*D

N = ((X * X) + E)/(2 * A)

return (E,N,D,X,A,B,C)

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

ad654f No.1666

>>1665

Take the E, N, and X you get from your method, and use it to regenerate a new cell with this method. >>1579

How many of them are actually good?

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

e34200 No.1667

>>1666

Yeah I had that too. They all are good I'm pretty sure. I've tested like the first 10 of the first 10 rows of the first 10 whatever so I'm just assuming it works forever because its infinitely long ya know

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

ad654f No.1668

>>1667

I mean, in the past handful of posts, you've posted like a hundred lines of code and formulas, and you're pretty sure it's good? And you can't even be bothered to check it with the RSA100 values? But we're supposed to?

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

e34200 No.1669

>>1668

I can't check it with RSA values I don't know what to even do with that. Currently I'm trying to find relationships between entries with the same (x,d,a,b) values. I've already found a pattern to get all cells for any x value. Also all the cells for any A value. I'm trying to find patterns in the grid and learn the grid. We haven't even come up with a method to find the factors yet, so plugging in RSA values wouldn't be worthwhile. Also VQC said the patterns in the first few cells extend to the entirety of the grid, so I see no point in doing these values. Also I don't have BigInt for my python and I don't feel like downloading it. My computer isn't that fast I run the thing and every record it goes through (sometimes I was going pretty deep into each cell) prints True for whether or not its a valid record and I kill the program when I'm tired of watching it print True. I'll say with 98% confidence all this is true.

I'll post my Python code. Give me a minute.

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

a2017c No.1670

>>1669

It's easy to check RSA numbers.

Search for a list of large prime numbers.

Copy them into a calculator and multiply them together.

Congratz, you now have an RSA-type c value.

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

e34200 No.1671

>>1668

pastebin .com/d8xZZnm0

Here is my code. It's verified enough to me. I only post stuff on here if I haven't found any holes in it. The imaging stuff is in another file and I would have to reformat it and change some variables around. You'd also have to download a whole package which is a pain in the ass so I left it out. This is my freshest file that I've been working with.

Some of the stuff doesn't work when you start with 0. (Like the A stuff for A=0). If you get an error that would probably be it. Otherwise I think it's pretty error free code.

>>1670

Okay. Then what? I can multiply the primes together then do what? Thats where I don't get the point of using the RSA. I'm generating these values through E,N,X or E,N,A so the C is kind of a byproduct of those. I'm trying to analyze the grid so I can understand all the patterns so that I can eventually figure out an algorithm to factor the large products of primes, I don't see the point of just throwing bigger numbers at it if we don't even know how we are going to factor it.

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

ad654f No.1672

>>1671

The problem with what you're doing is this. We know C, and thus D, and thus E. If we knew X, then A=D-X. Then, B=C/A; RSA factored in literally two operations.

You're working with a pattern that definitely exists, but is exactly what we're trying to avoid doing.

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

15bf90 No.1673

>>1672

Agreed, MA. We've been banging our heads against the wall for two weeks or so. We have exhausted SO MANY possible incorrect solutions. We've honed the focus to generating var a for row 1, and also to understanding how c^2 values in column 0 multiply. CA, glad you're back! Here's VQC's recent posts about where to focus. TBH, we haven't figured it out yet. We're bonked, but still working to understand.

>>1099

>>1380

>>1447

MA is correct when he said we are given c, d, and e. Next step is finding a. Then we can derive x, t, and b. Along with n as well, I think. The hard part is starting only from c. We need a way to tie together columns and rows.

Anons, what do you think about the n and x patterns in (0,n)? After n=6 they change, but still clearly related. Can we put all eyeballs on this pattern and try to find the equation?

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

a2017c No.1674

Oven's warming up. I'll add your stuff to the bread. And the VQC post list.

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

15bf90 No.1675

>>1673

And, since x is derived from d-x=a, we could also look for n*a patterns in (0,n), since these will tie directly to d and x patterns in (0,n) as well. Thoughts, Anons?

>>1674

Baker, thank you. I think in the next few days I'll rework the archives i posted to include all rt's, just for proper records. Then in the following bread everything will be accurate. I was trying to keep it to math rt's but there are more goodies that I missed.

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

15bf90 No.1676

Sorry lads *d-a=x* fucking tired out over here. Too many late nights this week working on math(s). Yawn. Can't even post basic equations to make my point, lol!

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

e34200 No.1677

File: 588951b4c24376b⋯.png (333.57 KB,914x800,457:400,Screen Shot 2017-12-30 at ….png)

MORE FOR A:

If we have an origin cell(e,n) and the P value (the vertical jump size it takes to get to the next part on the parabola, also the root of the square value multiplied by a/2 to get origin cell) then we go from an entry for

(e,n,d,x,a,b,c) to (e, n+P, d2, x2, a+1, b2, c2)

(just another cell to be made from E,N,A, which we already have code for.)

This can also be reversed to yield:

(e,n,d,x,a,b,c) to (e, n-P, d2, x2, a-1, b2, c2)

Also for a cell on a parabola with a certain p (EVEN P) value and a certain t value (t is which spot it is on parabola. t=0 is origin, t=-1 is where n = originN-t*P etc.)This is can be derived from the same pattern above with prior rules that I found out.

Remember parabola origins are of the form for even p:

(2aH, (a/2) * p^2)

If our entry is on the parabola from this origin we can do

[n+(p*p)/2 is not verified my pictures were not large enough I'll test it later sue me]

(e,n,d,x,a,b,c) -> (e+2H, n+(p*p)/2,d?,x?,a+1,b?,c?)

(e,n,d,x,a,b,c) -> (e-2H, n-(p*p)/2,d?,x?,a+1,b?,c?)

both are from (e,n,a) so we can calculate them.

If these patterns are true, then we would have, for each entry:

e,n,d,x,a,b,c,p,t,h

(shit dats a lot of variables batman!)

where we already know what (e,n,d,x,a,b,c) are and

p = the value such that n = (a/2) * p^2 for the origin of parabola

t = the entry on the parabola started by the origin

h = the number of parabolic shifts to the right you've taken to get to the origin from (0,n)

I like to think of p as the parabola depth (they all are same pattern at same depth). t as in the entry along the parabola. if you shift t along the same parabola the p value won't change. H will not change unless you do the function (e-2a, n-1, a, H-1) -> (e,n,a,h) -> (e+2a, n+1, a,H+1).

More on the T, if we have parabolic origin value (t=0)

(e,n,d,x,a,b,c,p,0,h) then we can generate values along the same parabola by changing t.

(e,n,d,x,a,b,c,p,0,h) -> (e-p*(t^2), n+p*t, d?,x?,a,b?,c?,p,t,h) for any t.

Pic related for a = 34

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

e34200 No.1678

>>1677

>(2aH, (a/2) * p^2)

Should be

(2aH, (a/2) * p^2 - H)

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

a2017c No.1679

>>1675

>>1676

I hate that feeling.

When you just want to keep working no matter what the hell the time it is.

>>1677

You are a madman going crazy with maths. I see those numbers.

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

15bf90 No.1680

Also, good thing AA moved us over here. CBTS main is nuts. Alex Jones show interviewed PamphletAnon and Baruch today, and millions of new truth seekers just found out about Q and the chans. CBTS is full of newfags and shills, and the Judicial Watch link for the Huma Abedin emails can't be reached, either under DDOS or too many requests. Q just went mainstream, lads!!! Victory To The Light!!! Let's keep our spirits up lads, and keep working for a solution. These evil fucks are gonna get justice. Let's do our part.

http:/ /www.judicialwatch.org/wp-content/uploads/2017/12/JW-v-State-Huma-Weiner-emails-00684-2.pdf

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

15bf90 No.1681

>>1677

CollegeAnon ripping it up parabola style! I'll put fresh eyes on this tomorrow. So to clarify, you're saying var a moves in parabola form, and you've figured out how to calculate individual a values using your formulas? If so, that's dope as shit. Thanks for all your work!

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

e34200 No.1682

>>1681

What I can do is generate any valid cell for any a value. What I can't do (yet) is figure out how to calculate a given t from (e,n,d,x,a,b,c) but maybe someone could figure that out. If we could do that, then starting from our cell (e,n,d,x,1,c,c), (with t) we could ride up and down our parabola. Then with t we could ride it down to t=0 or the origin, which would give us our h value. Then from there we could ride h back home to h=0 the (0,n) column to figure out that parabola we are on by getting the value p. Once we have that value p, we can go back to our original cell and potentially shift a up until we find something?? I'm not exactly sure how we'll use this, but this is certainly a way to index and navigate these cells.

So if I had to say to do anything it would be to find out how to get t from an entry. This will probably be tough.

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

a2017c No.1683

>>1680

>>1681

>>1682

They're famefags.

They think they're special for creating a board and a thread.

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

15bf90 No.1685

>>1683

Agreed, Baker. No love for famefags. I'm just tripping out that Q is going mainstream. My lady is talking with friends on FB about who Q is, ie Barron, Don Jr, etc. WTF!!! When 60 million eyes get put on Q's posts, the world will redpill itself. AJ is talking openly about Q, chans, etc. Time to FIRE UP THE MEME CANNONS, LADS! I can't believe I'm alive to be seeing this. WHEN we solve this (with Senpai help, of course! Thx Senpai) we are going to help fundamentally change the course of human history. We have green light to go mainstream and fucking blast FB, Twatter, et al. I've been waiting for this moment my whole life, never thought it could really happen. Truth and Justice. Make Earth Great Again!

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

e34200 No.1686

>>1684

Whoops I thought you were chirping us baker sorry I misinterpreted who you were calling famefags.

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

15bf90 No.1687

>>1684

Yeah, thanks Baker! Can we get some more Victory ponies up in this??

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

a2017c No.1688

>>1684

I'm not like you. I can't synthesize different areas of maths. I don't know what parabola's and roots are. I haven't had to brush up on them for this.

>>1685

Shame about Baruch. I guess they were right about him. I was in contact with him too.

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

71e1c0 No.1689

>>1685

Indeed VA, just waiting for those Gitmo announcements! And for MSM to completely crumble.

Ok fags, here are some test cases and challenges for you:

RSA Test Cases and Challenges

https://pastebin.com/f5Km9K8H

RSA-100 (c) =

1522605027922533360535618378132637429718068114961380688657908494580122963258952897654000350692006139

(100 decimal digits, 330 bits)

RSA-100 (a x b) =

37975227936943673922808872755445627854565536638199

×

40094690950920881030683735292761468389214899724061

(2 50 decimal primes)

RSA-100 (c^2) =

231832607105497859450453971149782249091397152352980773038383827802126335737279486733598563928061275517976566803851888280780332815207688528004235456616576727168746464977139224636030180916664018563207

(198 decimal digits)

RSA-129 (c) =

114381625757888867669235779976146612010218296721242362562561842935706935245733897830597123563958705058989075147599290026879543541

(129 decimal digits, 426 bits)

RSA-129 (a x b) =

3490529510847650949147849619903898133417764638493387843990820577

×

32769132993266709549961988190834461413177642967992942539798288533

(with a 64 and 65 decimal prime)

RSA-129 (c^2) =

13083156311017746081229837780584604971789185572322940113554957177463495238823718363789678158885976884237362181609103528581150260013472809482392451812847672930017596579807933662233072087386335238374806414971531141586419217198046250532235073881640972514818681

(257 decimal digits)

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

71e1c0 No.1690

>>1689

RSA-190 (c) =

1907556405060696491061450432646028861081179759533184460647975622318915025587184175754054976155121593293492260464152630093238509246603207417124726121580858185985938946945490481721756401423481

(190 decimal digits & 629 bits)

RSA-190 (a x b) =

31711952576901527094851712897404759298051473160294503277847619278327936427981256542415724309619

×

60152600204445616415876416855266761832435433594718110725997638280836157040460481625355619404899

(with (2) 95 decimal primes)

RSA-190 (c^2) =

3638771438488087985574274106795079635808387100084863940611975142846520895542297425531641157043983476619993374723043826429566267790036775257657139728945914322148154407595065259459214885711856214268244428701532653022789206595392004837865259854410326840170456159370131034294156696408886672161241549375876666598321636136763746229426218477864974486848489396416573764495046083098157361

(379 decimal digits)

RSA-640 (c) = 3107418240490043721350750035888567930037346022842727545720161948823206440518081504556346829671723286782437916272838033415471073108501919548529007337724822783525742386454014691736602477652346609

(193 decimal digits, 640 bits)

RSA-640 (a x b) =

1634733645809253848443133883865090859841783670033092312181110852389333100104508151212118167511579

×

1900871281664822113126851573935413975471896789968515493666638539088027103802104498957191261465571

(with (2) 97 decimal primes)

RSA-640 (c^2) =

9656048121330239196485739047236872733132646152415265572749839063571416858087801139297436736668535657942544532834166699749756556831546825766219543494478915395505001388433032706122580727561545005466558578465273868089134810944324056030967838960018632090507727101247760897728632535169583227345646104139213934877983671194311248207350399320919897813580637534250460303641423529457084273798881

(385 decimal digits)

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

a2017c No.1691

>>1690

>>1689

Thanks for putting those together. Wikipedia has down syndrome so when I try to copy the RSA numbers it inserts a bunch of newlines.

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

71e1c0 No.1692

>>1689

>>1690

And for some challenges, find a & b:

RSA-240 (c) =

124620366781718784065835044608106590434820374651678805754818788883289666801188210855036039570272508747509864768438458621054865537970253930571891217684318286362846948405301614416430468066875699415246993185704183030512549594371372159029236099

(240 decimal digits & 795 bits)

RSA-1024 (c) =

135066410865995223349603216278805969938881475605667027524485143851526510604859533833940287150571909441798207282164471551373680419703964191743046496589274256239341020864383202110372958725762358509643110564073501508187510676594629205563685529475213500852879416377328533906109750544334999811150056977236890927563

(309 decimal digits & 1,024 bits)

RSA-2048 =

25195908475657893494027183240048398571429282126204032027777137836043662020707595556264018525880784406918290641249515082189298559149176184502808489120072844992687392807287776735971418347270261896375014971824691165077613379859095700097330459748808428401797429100642458691817195118746121515172654632282216869987549182422433637259085141865462043576798423387184774447920739934236584823824281198163815010674810451660377306056201619676256133844143603833904414952634432190114657544454178424020924616515723350778707749817125772467962926386356373289912154831438167899885040445364023527381951378636564391212010397122822120720357

(617 decimal digits & 2,048 bits)

https://pastebin.com/f5Km9K8H

Godspeed PATHanons.

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

15bf90 No.1693

>>1689

PMA?

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

71e1c0 No.1694

>>1693

mr. spice and everything nice.

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

427741 No.1695

>>1694

We gotta get to n from c. Wanna hop a Sandworm and cruise on over? ;)

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

5f522a No.1696

Is anyone in touch with Inner/Outer Heaven?

I have a fresh angle to explore tomorrow, which has been looking me the face this entire time.

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

427741 No.1697

>>1696

Do tell, MA. Inner/outer Heaven? What’s your intuition saying?

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

5ba563 No.1698

>>1696

>Is anyone in touch with Inner/Outer Heaven?

>>1697

>Do tell, MA. Inner/outer Heaven? What’s your intuition saying?

It appears VA has outed himself as a newfag?

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

3520dc No.1699

Ignore your squabbles.

You can watch the entirety of Star Trek: The Next Generation in the Q episodes alone.

VQC isn't "Albino Morpheus".

He's PICARD.

AS A Q!

I'm not even done with the episode, i've been through voyager… DS9 (999) is the ending.

Calling it now.

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

3520dc No.1700

File: d8ff792f3e2d394⋯.jpeg (301.75 KB,1155x2048,1155:2048,-pOXiIgp.jpg-large.jpeg)

File: a109620c40b4143⋯.jpeg (203.89 KB,1677x943,1677:943,4fn_-ftr.jpg-large.jpeg)

File: 4be2cf2fd7a7d1c⋯.jpeg (41.52 KB,702x315,78:35,DSQcLXdUEAAHond.jpg-large.jpeg)

File: e67a9412bac3dde⋯.jpg (71.91 KB,540x496,135:124,2a7bbe4b2073c0e0a3e7c83eb3….jpg)

File: 4d407062ca2382f⋯.jpg (64.64 KB,720x720,1:1,26112349_10214939484786801….jpg)

>>1699

dubs aside, i meant all of star trek after Qirq (Xerxes) landed us some attention.

I'll be back.

On a thing.

I'm….

Thing…

It's…

You know how I do.

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

3520dc No.1701

>>1700

oh this is getting gooooooooood….

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

3520dc No.1702

>>1701

pffffffffft

As if that wasn't already commented on where I'm seen elsewhere.

Love this.

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

99edb0 No.1703

Oh fuck man I found a very important pattern. I need a minute.

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

a2017c No.1704

>>1703

Share you faggot. We make progress by banging our heads on this wall together.

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

99edb0 No.1705

>>1704

Do the words "I need a minute" mean nothing to you?

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

3520dc No.1706

>>1704

FINE!

Linear progression applies, but if you have "the time"…

Tapestry:

Voyager

TNG

DS9

<;3=Q

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

3520dc No.1707

File: a8a5d581f5c03df⋯.jpg (26.03 KB,737x588,737:588,q-less1.jpg)

File: c11a851335e47e3⋯.jpg (28.12 KB,400x400,1:1,tumblr_nft6iv5Dnj1r0h23jo1….jpg)

File: 029a931863feea1⋯.jpg (36.97 KB,475x364,475:364,ds9-qless9.jpg)

File: 53c042659908f5b⋯.png (486.47 KB,1187x893,1187:893,q-and-the-grey10.png)

File: 7bdd1174fa1fed4⋯.jpg (6.4 KB,200x160,5:4,Q_and_Vash.jpg)

>>1706

Janeway and Vash…

Personal Matter…

Also, halfway through memfarming I got cheeky so you fucking figure it out.

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

3520dc No.1708

File: 25662d1999ad863⋯.jpg (7.14 KB,200x191,200:191,Picard_and_Vash.jpg)

And for you fucking nerds who noticed.

https://youtu.be/byl0BLtO7UE

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

99edb0 No.1709

File: 5cc2746230d4606⋯.png (10.48 KB,2048x1024,2:1,output c * i prime a and b….png)

Okay. As I mentioned here >>1647 (even though apparently I used the term genesis cell wrong; I was referring to the first cell of an infinite set), one way I was thinking we could find n from c was by finding i from c, since then we use n = i - d or n = i - (floor(sqrt(c))). Instead of spending half an hour turning this into something really easy to understand I'll just type out the process I took and hope everyone gets it and doesn't mind a whole bunch of text.

In order to figure out how to calculate i from c, since we can't do it with the variables we get from c alone, I tried to find a visual relationship between them. I made an image with a white pixel every time c is the product of two primes but instead of (e, n) as the axes it's (c, i). That's pic related. It shows the relationship between c and i, and it looks like a bunch of linear lines.

If these were linear, and we could figure out the relationship between these lines, we could use them to find i for a given c, couldn't we? All we'd need to do is find the correct line that our c is on and use simple gradient maths (rise / run). In order to confirm that these were linear lines, since it's a bit haphazard doing it in this Paint program I have, I changed the code around a little bit to plot each (c, i) as points in a big grid, much like the original {e, n, d, x, a, b} grid, but again with axes (c, i). I then highlighted from one point in each line to the next a few times in order to figure out the gradient. By the way, if anyone doesn't know, in whatever your spreadsheet software is, you can change the formula syntax to R1C1 and it'll change the x axis from letters to numbers, which is very handy (instead of something like BD24 it'll be something like R42C52, as in (42, 52)). In the next post I'll paste my calculations, since it'll break up the text a bit, and it'll show what the relationship is between these lines.

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

99edb0 No.1710

>>1709

Lowest line

R121C52:R277C130

(121, 52) to (277, 130)

Rise is 156, run is 78, gradient is 2 (6/3)

R133C58:R265C124

(133, 58) to (265, 124)

Rise is 132, run is 66, gradient is 2 (6/3)

R337C160:R457C220

(337, 160) to (457, 220)

Rise is 120, run is 60, gradient is 2 (6/3)

Next line upwards

R169C116:R217C156

(169, 116) to (217, 156)

Rise is 48, run is 40, gradient is 1.2 (6/5)

R253C186:R289C216

(253, 186) to (289, 216)

Rise is 36, run is 30, gradient is 1.2 (6/5)

R289C216:R313C236

(289, 216) to (313, 236)

Rise is 24, run is 20, gradient is 1.2 (6/5)

Next line upwards

R217C204:R229C218

(217, 204) to (229, 218)

Rise is 12, run is 14, gradient is 6/7 (0.857142 repeat)

R229C218:R265C260

(229, 218) to (265, 260)

Rise is 36, run is 42, gradient is 6/7

R265C260:R301C302

(265, 260) to (301, 302)

Rise is 36, run is 42, gradient is 6/7

Next line upwards

R181C210:R205C254

(181, 210) to (205, 254)

Rise is 24, run is 44, gradient is 6/11 (0.545454545454)

Next line up

R181C222:R193C248

(181, 222) to (193, 248)

Rise is 12, run is 26, gradient is 6/13 (0.461538 repeat)

Next line up

R205C290:R217C324

(205, 290) to (217, 324)

Rise is 12, run is 34, gradient is 6/17

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

a2017c No.1711

>>1601

Thanks, didn't notice until now. Will use those.

Oven is HOT.

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

99edb0 No.1712

>>1709

>>1710

I did the next one too and it was 6/19. The thing you should all be taking away from this is that the denominators are all primes, and from the lowest line to the highest line they increase in order with 6 as the constant numerator.

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

3520dc No.1716

>>1711

Vibe=Felt

Happening=It's

https://youtu.be/Qk449uj2jgU

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

a2017c No.1717

>>1713

>>1713

>>1713

>>1713

>>1713

>>1713

Migrate when this thread is over. Good night.

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

3520dc No.1718

oooh hoo hooo

This feels good, too

https://youtu.be/FJo6ipm7HqY

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

99edb0 No.1720

>>1712

I didn't realize until now but setSize was 12. That means that while those gradient rules still work the numbers are slightly different. I'm currently trying to figure out the mathematical relationship between each line that determines where the next one starts each time.

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

71e1c0 No.1723

File: e67a9412bac3dde⋯.jpg (71.91 KB,540x496,135:124,memeResponsibly.jpg)

>>1700

'What you realize becomes truth'

'Meme responsibly anons"

^^^THIS; works on several levels.

All-night digger. Layers deep, sauce within sauce. Perhaps more indictments / counts from this. Think the first class seat grabbing cunt was setup and blackmailed for control, affecting the homeland and our security. Tangled webs and boomerangs. More work to do, carry on anons.

>>1713 some tasty looking bread, tnx.

>>1531

Good oh Great Hobo. Define excession plz.

Unfamiliar w/ responsibilities associated with new threads, proposing a 'Disclosure, Ramifications, and Rebuilding' perhaps?

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

01b9f7 No.1724

Tested!

For all records {0, n, c, c-aa, aa, bb}

A Goal record!

There is m such that n=2mm

and …

b-a = 2m

{0, 24200, 669, 660, 9, 49729)

m=110

b=223 a=3 a - b = 2m = 220

{0, 8, 77, 28, 49, 121}

m=2

b=11 a=7 a - b = 2m =4

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

e34200 No.1725

Same as what I've been doing for constant D values (because for C record we already have correct D, so this could help us navigate through the D's:

pastebin. com/5cd4k2rz

Graph. (+ = from the end, *= extrapolated from pattern).

For any d, we can start off and say there will be an entry at

(e,n) = (-d^2,-d+1)

We can call this our origin cell for D. Now, to navigate along this graph we would need to generate cells from their (e,n,d) values, which I do not think we can do yet. However this pattern is still notable.

Starting at our origin cell (the Zeroth origin cell), (e,n) I THINK we can generate any cell for this pattern:

(e0,n0) -> (e0,n0+u) for any u [I'll go 70% on this step, cuz I can't generate to test, the other ones are pretty certain though]

Then, from our origin cell, if we go to the right one cell we get a second origin cell (origin cell 1). (e0,n0) -> (e0+1,n0) = (e1,n1) From this cell we can do

(e1,n1) -> (e1+2u, n1+u) to navigate down the line as many times as we want

Then, if we go down the line once (e1+n1)->(e1+2,n1+1) and then shift to the right (e1+2+1, n1+1) we get the third origin cell (e2,n2).

From the third origin cell, we can do:

(e2,n2) -> ( e2 + 4u, n2+u ) to generate more cells for any u.

Generally:

The zeroth origin cell for D can be found at:

(-d^2, 1-d).

For the zth origin cell, (e*,n*) we can generate any other entry with the same d by this equation:

(e*,n*) -> (e* + 2zu, n* + u)

Also, from any origin cell we can generate the next origin cell.

( z to z+1), which boils down to going down the line once and then adding 1 to e.

(e*,n*) -> (e* + 2z + 1, n* + 1)

So now we have a method to determine all the entries (e,n) with the same d. Also, this may be an impossible task, but if anyone can generate an entry just given the (e,n,d) values that would be sweet, but I don't think we can.

This may be the biggest thing I've discovered. This path for valid d values is the same for every d. As in, the only difference between entries for certain d values is the zero origin for d. Other than that you use the same exact steps to figure out what other cells have the same d. Knowing that, if we have a valid d, we can say, WITH SUPREME CONFIDENCE, that.

origin cell is at (-d^2, 1-d)

the origin cell for d-1 is at ( - (d-1)^2, 1-(d-1)) = (-dd +2d -1, -d) (same formula)

So if we have a cell we know for certain we can navigate to a valid cell by:

(e,n,d,x,a,b) -> (e+2d-1, n-1, d-1, x?, a?, b?)

to go down a d value.

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

e34200 No.1726

>>1725

>>1725

The pattern for the origin cells is more consistent if the zero origin is calculated at (-d^2, -d) because that way you can still do the same pattern (go down the line once, then shift e by 1) to get the next origin cell. Before it was that pattern for all origins not equal to 0, now it is consistent.

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

ac6203 No.1727

>>1725

>Also, this may be an impossible task, but if anyone can generate an entry just given the (e,n,d) values that would be sweet, but I don't think we can.

public static TheEndRecord CreateForEND( BigInteger e, BigInteger n, BigInteger d ) {

BigInteger c = d * d + e;

BigInteger x = ( Lib.Sqrt( ( d + n ) * ( d + n ) - c ) ) - n;

BigInteger a = d - x;

BigInteger b = a + 2 * x + 2 * n;

return new TheEndRecord( e, n, d, x, a, b );

}

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

e34200 No.1728

>>1727

*holy fuck thanks for this code i would have been at a dead end without you*

a bit of output

>((-36, 0, 6, 6, 0, 12, 0), 'a=0')

>((-36, 1, 6, 6, 0, 14, 0), 'a=0')

>((-36, 2, 6, 6, 0, 16, 0), 'a=0')

>((-36, 3, 6, 6, 0, 18, 0), 'a=0')

>((-36, 4, 6, 6, 0, 20, 0), 'a=0')

>((-36, 5, 6, 6, 0, 22, 0), 'a=0')

Okay so I tested this code and and it only gave me values of A where A = 0. I used to have that a=0 meant an invalid cell, but heres the thing: For A=0, you can have ANY value for (e,n,d) that you want and they all could still be valid entries right? Like 0 is a number so why couldn't it be in entry a? Maybe these are all valid entries.

Suppose they are, our output from AB and C fun

C(21) = (5,7,4,3,1,21,21) = start

AB(3,7) = (5,1,4,1,3,7,21) = goal

So for this we have the correct E and D right off the bat. We may be able to iterate through these n values and search things from there, because these are valid cells, but we cannot do END(5,7,4) because I think it takes root of -1. But for this remember we have the correct D. So we can go to the (-d^2) column, which is basically the root for d ((-d^2,-d) would be the seed I guess). From that column, we can expand out and generate any cell for the same (correct) d. We could do this and iterate through the cells from each D origin cell and go down until we either hit or pass e. Then I think we may have our correct cell at that point.

Tada!

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

ac6203 No.1729

>>1728

Iterating to find the solution isn't going to work.

See a couple of my previous posts:

>>1342

>>1487

>>1509

VA - thanks for reposting this. Am thinking this through a bit more.

We've been one variable or formula away from a solution for some time now.

The "Use Y on C at X" from >>>/cbts/75435 needs more attention.

I think we know what C and X are. And we know how to create a small square from t. What is Y? y axis? is that n?

CA got me thinking a bit more about the END formula.

c = (d+n)^2 - (x+n)^2

This can be solved a couple of ways. And given that we know c, d, and e for our target aa*bb and a*b records, perhaps if we can identify just the small square movement, we can solve for n.

For example:

Solving for x given n, d and c.

x = ( Lib.Sqrt( ( d + n ) * ( d + n ) - c ) ) - n;

Solving for n given e, d, and (x+n):

c = d*d + e;

n = Lib.Sqrt( c - (x+n)^2 ) - d

Maybe all we have to do is figure out the "small square" movement?

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

13a210 No.1730

>>1729

When you're talking about the small square and the big square, do you mean X+N and D+N?

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

ac6203 No.1731

>>1730

yes. I'm focusing specifically on the small square (x+n). It's relationship to t is simple. And it remains constant when you change e at (e,1,t).

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

ac6203 No.1732

>>1731

forgot trip.

Also, if anyone can help explain "Use Y on C at X".

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

a92e07 No.1733

Hey guys, its been a while between posts, but I've been following along with the progress.

I've been focused on my own theories mostly, and none have been fruitful.

>>1731

Hey PMA, the size of the small square has been where my attention has been lately.

I've also been spending some time going through reading for ECC.

I want to point out something that I've realized too…

n = (x^2 + e) / 2(d - x)

This is just a simple rewrite of x^2+e=2na.

But what I like about this representation, is that d and e are constants and so we have a relationship between n and x for any c.

I'm trying to use this equation to figure out the possible sizes of the small square.

Anyway, how is everyone?

Also welcome back CollegeAnon! How were your exams?

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

ca62e5 No.1734

>>1731

>>1732

I like the idea. How do we deal with erratic t vars as n increases? Maybe we need a rewrite of t equations for larger n, or maybe the t vars are accurate in later n are accurate because the d,a,x vars create t? Basically, does t represent small square values as n increases and t begins to jump upward in patters rather than linear growth?

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

ac6203 No.1735

>>1733

>I've also been spending some time going through reading for ECC.

I tried to read some of those documents… realized I'm not that smart.

>n = (x^2 + e) / 2(d - x)

I like the concept. After all, this seems to be an exercise in taking a really small square to it's perfect middle size.

>>1734

I believe this get's solved in the (e,1) space where there aren't any gaps in t. Remember, looking for one more variable or formula. t is just an indexer on values of x. Don't think we want to start changing it's definition based on n.

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

8961b2 No.1736

>>1733

All is good, not posted much either since I'm little out of ideas and none of my attempts have gone anywhere. Still here banging my head against the grid with you!

Pretty sure I solved it in a dream already but not sure how. Doh.

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

a92e07 No.1737

>>1735

I was having a really hard time with understanding what VQC meant when he said:

>At the correct element in the grid at (e,1) where the value of a at that element equals the na we want, if you subtract 2d+1 from na then you are in the negative half of the grid in terms of e and the value at the same element in the first row will be (n-1)a

I believe the "na" that we want refers to the na in the 2na = x^2 + e.

This is why I think the equation is important.

I'm trying to work out what the (n-1)a cell means now.

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

537a7c No.1738

>>1733

Teach! Nice to see you!

>>1736

Nice to see you too, Anon!

>>1735

Well, if we’re able to solve for the small square using the t equations in row one that’s great! How do we tie that together with the column 0 knowledge? Or is it needed? If we know c, d and the small square, are we back to solving for n with the quadratic we derived? Column 0 still needs to get tied in? Thoughts, Anons?

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

ac6203 No.1739

>>1737

Teach - likewise. I'm not sure I fully understand, but here's where my head is by way of an example:

c=145

1 x c => (1,61,6) = {1:61:12:11:1:145} = 145; (x+n)^2=72x72=5184; (d+n)^2=73x73=5329;

1 x c na => (1,1,6) = {1:1:72:11:61:85} = 5185; (x+n)^2=12x12=144; (d+n)^2=73x73=5329;

In the first record, calculate (n-1)*a = (61-1)*1 = 60.

If you look at the differences in the n, d, and a values between (1,61,6) and (1,1,6) you will notice:

n = 1

d = d + 60

a = a + 60

So essentially the amount you take off of n gets added into the d and a.

This "transform" enables us to move from any (e,n) into the (e,1) space, and explains what's happening to d and a along the way.

I have played with this attempting to take off different values from n. (n-2), 2(n-1), etc. Haven't had much luck there.

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

537a7c No.1740

>>1733

Ah, nice Teach! There’s that clear relationship between n and x we’ve been looking for. Nice rewrite on the formula! We’ve been banging our heads on that for a while, I think you just made it crystal clear.

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.



[Return][Go to top][Catalog][Nerve Center][Random][Post a Reply]
Delete Post [ ]
[]
[ / / / / / / / / / / / / / ] [ dir / random / 93 / biohzrd / hkacade / hkpnd / tct / utd / uy / yebalnia ]