ID: add73d RSA #9 Jan. 25, 2018, 3:41 p.m. No.3361   πŸ—„οΈ.is πŸ”—kun   >>3576

RSA General

 

 

Crumbs to focus on

 

In the (e,1) solution, d[t] = na+x

and a[t] = na

Therefore, if you can find the t value of this element, you can factor all semiprimes.

 

>Which column has NO gaps? [0]

>What is the pattern in COLUMN ZERO?

>One Row to Rule them All.

>A column that contains ALL and is the KEY to ALL the patterns.

>What are the patterns in COLUMN ZERO?

>If c is a semiprime, how many times does its square (c^2) appear in column zero? [5]

 

Why are there gaps?

 

The reason for the gaps may be because the VQC does not include decimal numbers. That is, because cells with gaps are the cells where the midpoint of a and b would not be a whole number. Or, worded another way, the difference between a and b would be an odd number.

 

There is a repeating pattern of gaps as you move horizontally from (0, n) to the right.

The pattern of gaps repeats every 2n if n is even.

The pattern of gaps repeats every n if n is odd.

 

>If first appearance of factor p is element t, second appearance will be at (p+1-t)

>p will be a factor of a in elements: t+p, t+2p, t+3p,…

as well as in elements:

>p+1-t, 2p+1-t, 3p+1-t,…

 

take d from all values of d[t] at (e,1) and there is a known pattern of (n-1) as factor in these values of d[t]-d that is different (increasingly) from the pattern of factors of n in a[t]

Why do the values in row one determine all the values in the columns below them?

 

Let me break that down.

 

Find every value of d - d[t]

There is a pattern of (n-1) being a factor.

 

Find every value of a[t].

There is a pattern of n being a factor.

 

The pattern in the first group of values is "increasingly different" from the second. We must catalogue these patterns.

ID: add73d Jan. 25, 2018, 3:42 p.m. No.3362   πŸ—„οΈ.is πŸ”—kun

Code

 

C#

BigInteger Square Root β€”β€” https://pastebin.com/rz1SdACZ

Generate Bitmap within original code β€”β€” https://pastebin.com/hMTtJF6E

More on generating a bitmap with the original code β€”β€” https://pastebin.com/JUdtehb4

Generate the large square for e and t β€”β€” https://pastebin.com/nbjs2kz4

Original VQC code β€”β€” https://pastebin.com/XFtcAcrz

How to run VQC code on Linux β€”β€” https://pastebin.com/6HnN7K5X

Unity Script β€”β€” https://pastebin.com/QgAXLQj3

Unity Script 2 β€”β€” https://pastebin.com/Y38nVWgT

 

Java

VQCGenerator w/ Bitmap β€”β€” https://pastebin.com/Dgu9aP1h

VQCGenerator β€”β€” https://pastebin.com/VMRnkXFP

Traverse the VQC cells in real-time β€”β€” https://anonfile.com/TeH6q3d8bd/VQCGUI_v2.7z

 

NodeJS

BigInteger Library and Sqrt β€”β€” https://pastebin.com/y8AXtFFr

 

Python

College Anon's code β€”β€” https://pastebin.com/d8xZZnm0

Create the VQC β€”β€” https://pastebin.com/NZkjtnZL

3D VQC β€”β€” https://pastebin.com/vdf8SpYt

3D VQC (v2) β€”β€” https://pastebin.com/wZM5Thzu

Fractal cryptography β€”β€” https://pastebin.com/XuN4U7Dv

Generate cells for a (and more) β€”β€” https://pastebin.com/iAizgLFF

Generate any cell in (0,1) and (0,2) β€”β€” https://pastebin.com/gRTYpdMU

Generate genesis cell β€”β€” https://pastebin.com/GKzcCpMF

Generate positive AND negative genesis cells β€”β€” https://pastebin.com/9ixjRyxt

Calculate variables based on e and t β€”β€” https://pastebin.com/4s6McdbN

Get A and B from C and N example β€”β€” https://pastebin.com/s0SZ9BNF

VQC + t β€”β€” https://pastebin.com/Lgufk0db

 

Rust

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

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

Create Bitmap using the VQC Generator [V2] β€”β€” https://pastebin.com/zGSusyz5

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

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

 

Factorization methods (Java)

Binary search for i β€”β€” https://pastebin.com/TAt5bDsR

Count down from t of 1c element β€”β€” https://pastebin.com/xxYa946V

Mirrors 1c until e=(-x+n^2) β€”β€” https://pastebin.com/WJBqPM4P

Calculate factors using -x jumps β€”β€” https://pastebin.com/gKX9GW9r

 

Previous Threads

RSA #0 β€”β€” https://archive.fo/XmD7P

RSA #1 β€”β€” https://archive.fo/RgVko

RSA #2 β€”β€” https://archive.fo/fyzAu

RSA #3 β€”β€” https://archive.fo/uEgOb

RSA #4 β€”β€” https://archive.fo/eihrQ

RSA #5 β€”β€” https://archive.fo/Lr9fP

RSA #6 β€”β€” https://archive.fo/ykKYN

RSA #7 β€”β€” https://archive.fo/v3aKD

 

Videos on cryptography β€”β€” https://pastebin.com/9u3hwywe

Anonymous ID: 7fa95d Jan. 26, 2018, 12:34 p.m. No.3390   πŸ—„οΈ.is πŸ”—kun   >>3391 >>3392

Repost

>>3385

>"The solution is a decision tree. The first decision is whether remainder is zero. The second decision is whether the remainder is odd or even. What's the third decision?"

When did he say that? Link?

>What's the third decision?

At the top of the decision tree, if e = 0, it's a square, so it's not an RSA number (right?). If e != 0, we need to find n or x, which apparently relies on whether it's odd or even. In the second decision, whether it's even or odd determines what t is, but then to calculate t you need to know x, and if you knew x you'd know a. So do we know any other calculations that require knowing if e is even or odd? Otherwise, should we be using this to find relationships?

CollegeAnon !LAbIRp9cT. ID: ae181d Jan. 26, 2018, 6:18 p.m. No.3393   πŸ—„οΈ.is πŸ”—kun   >>3394 >>3413 >>3493

>>3392

The even E and odd E have to do with where you start your X value. For even E, you start with X=0, and with odd E you start with X=1. You calculate your first D by the equation:

D = (X*(X+2) + E)/2

Also this E even or odd has to do with how much you shift D by each successive entry. If E is even, then your shift starts at 4, if you're at an odd E, it starts at 6. With each successive entry in the cell, you increase the shift by 4.

Ex: (odd E)

D1 = D0 + 6

D2 = D1 + 10

D3 = D2 + 14

 

So those are your decisions

CollegeAnon !LAbIRp9cT. ID: ae181d Jan. 26, 2018, 6:46 p.m. No.3395   πŸ—„οΈ.is πŸ”—kun   >>3396

>>3394

You just iterate through the values in the e,1 cell so I guess it's a search. The thing is it works with every D value (including D=0) so I've been thinking that we may be able to cancel out D entirely from the equation or generating a system of equations for multiple D's to then simplify it but I haven't figured out exactly what I'm doing with that

Anonymous ID: aeeab0 Jan. 26, 2018, 9:28 p.m. No.3404   πŸ—„οΈ.is πŸ”—kun   >>3405 >>3406

>>3402

def getGCD(A, B):

if B == 0:

return A

else:

return getGCD(B, A % B)

 

def factor(number):

C = number

D = int(math.sqrt(C))#can be any number s.t. d^2 < C

E = C - D*D

 

newX = E%2

if(newX == 1):

dShift = 6

else:

dShift = 4

newD = int((newX*(newX+2)+E)//2)

newA = newD - newX

GCD = 1

dCand = newD - D

while(GCD == 1):

newX += 2

newD += dShift

dCand += dShift

dShift += 4

newA = newD - newX

GCD = getGCD(dCand, newA)

 

print(D-newX, GCD)

#return GCD

#newA = D - newX

#If we switch up the D value, one of these might be negative but it will still be a factor

return newA

 

This is all the Python code. I switched up the loop to make it fewer calculations but there may be a better way.

 

>>3403

Yes

ID: add73d Jan. 26, 2018, 9:59 p.m. No.3406   πŸ—„οΈ.is πŸ”—kun   >>3408

>>3404

GCD is the only one this is always a factor of c.

D-NewX and NewA at the end are only sometimes factors.

 

So, got it to work for every number, but it may not fast enough.

 

Took too long on

856005528343335436096708147408503565008227

and

111086395036901246938296321

 

Factored 4447786245211932229 in a few seconds. Still have it running on rsa300 if it makes you feel better.

ID: add73d Jan. 26, 2018, 11:48 p.m. No.3410   πŸ—„οΈ.is πŸ”—kun   >>3411 >>3417

>>3409

Even with that cold hard fact that we haven't beaten GNFS (though with proper use of our research one could most likely develop a faster algorithm), I still have faith that we'll find the solution, because once we make the jump from search algorithm to complete solution, it will go from exponentially slow to O(1).

 

Calculation would have the same number of operations for every c, or just about. Amazing thought. (Because the only time complexities lower than log n are log log n and O(1)), and Chris said LOWER than log n.

 

It's going to be a miraculous jump when it goes from searching to calculation. So hold out.

Anonymous ID: 7fa95d Jan. 27, 2018, 1:41 a.m. No.3413   πŸ—„οΈ.is πŸ”—kun   >>3416 >>3460 >>3461

>>3393

>you increase your D by 4

Are you sure that 4 is constant or do you think maybe the reason it's not working yet for big numbers is that the offset (maybe this is what Chris was talking about) changes depending on the cell? How did you get 4? I noticed last thread when I was analyzing c^2 in the 0 column (nobody else seemed to care about what I was doing so I don't know if anyone will know what I'm talking about) that when c is the square of a semiprime (so the square of what we want to factor), the infinite set starting from (a, b) = (1, c^2) has a beginning d value and it increases at a constantly increasing rate throughout the infinite set (i.e. for (0, 200), d = 21, 44, 69, 96, 125 - this is +23, +25, +27, +29), but the start values and increase values change depending on the cell. The value of x in these sets increases just with the one increase value for each set (same example, x = 20, 40, 60, 80 etc) and the start value and increase changes from cell to cell too. I don't know how the beginning value or the increase values are determined, but if we're using a decision tree instead of iterating through an infinite set's values, perhaps the next decision in the decision tree relates to finding the beginning value and increase values or either d or x. Of course I say this without knowing how you found those original values. If I'm right about this, I have a feeling it has something to do with the relationship between (a, b) = (1, c) and (a, b) = (1, c^2) and something to do with the relationship between t and x. Maybe it would be worth graphing a few. That's a little bit of an educated shot in the dark though.

 

>>3411

>(1)

Looks like you have some secret admirers, baker. I'm actually personally surprised at how many of us are still here. I thought more of us would have given up. As unrelatedly fitting as Q's message a couple hours ago about nobody being asleep tonight is considering how much progress we seem to suddenly be making, I'm off to bed.

IseePatterns !kIkD/SqZ4s ID: 316b0b Jan. 27, 2018, 6:06 a.m. No.3415   πŸ—„οΈ.is πŸ”—kun

I'm not making heads or tails of these latest crumbs from VQC. So I've been looking at something else.

 

I noticed how we can "climb" down the n's from a given record. As we increase the a and b monotonically we will jump between different e's and the n will at certain times lower by one until it hits 1.

 

For (e, 2) (where applicable) this follows a simple equation of d - floor((e - 1)/2).

 

Meaning to go from (3, 2, 3), which is {3:2:12:5:7:21} you add 11 to both 7 and 21.

 

d here is 12, 12 - (3 - 1)/2 = 11. The record for 7 + 11, 21 + 11 is (0, 1, 24, 6, 18, 32) which is also the first record that has n = 1 for 7 + k, 21 + k for k < 11. For these records the x in the record (e, 1) will always be the (e, 2) x + 1.

 

No idea if this is useful, but it was interesting. For n 2 I haven't spotted an obvious pattern yet.

Anonymous ID: 2ae1e5 Jan. 27, 2018, 8:31 a.m. No.3417   πŸ—„οΈ.is πŸ”—kun

>>3409

>>3410

Thank you for the replies. Thanks to the glorious US education system I find it hard to follow along sometimes. This is the coolest thing ever though and I encourage you all to keep up the good work!

Anonymous ID: d6f59c Jan. 27, 2018, 9:39 a.m. No.3418   πŸ—„οΈ.is πŸ”—kun

>>3416

Good luck with an RSA sized number and GCD

Here is an example of two miniscule numbers relative to RSA.

D(t)-d E N D X A B

28 32 61 38 23 163

47 28 1 14 0 14 16

43 28 1 18 2 16 22

35 28 1 26 4 22 32

23 28 1 38 6 32 46

7 28 1 54 8 46 64

-13 28 1 74 10 64 86

-37 28 1 98 12 86 112

-65 28 1 126 14 112 142

-97 28 1 158 16 142 176

-133 28 1 194 18 176 214

-173 28 1 234 20 214 256

-217 28 1 278 22 256 302

-265 28 1 326 24 302 352

-317 28 1 378 26 352 406

-373 28 1 434 28 406 464

-433 28 1 494 30 464 526

-497 28 1 558 32 526 592

-565 28 1 626 34 592 662

-637 28 1 698 36 662 736

-713 28 1 774 38 736 814

-793 28 1 854 40 814 896

-877 28 1 938 42 896 982

Anonymous ID: d6f59c Jan. 27, 2018, 9:45 a.m. No.3419   πŸ—„οΈ.is πŸ”—kun

>>3416

Try again

D(t)-d E N D X A B

28 32 61 38 23 163

47 28 1 14 0 14 16

43 28 1 18 2 16 22

35 28 1 26 4 22 32

23 28 1 38 6 32 46

7 28 1 54 8 46 64

-13 28 1 74 10 64 86

-37 28 1 98 12 86 112

-65 28 1 126 14 112 142

-97 28 1 158 16 142 176

-133 28 1 194 18 176 214

-173 28 1 234 20 214 256

-217 28 1 278 22 256 302

-265 28 1 326 24 302 352

-317 28 1 378 26 352 406

-373 28 1 434 28 406 464

-433 28 1 494 30 464 526

-497 28 1 558 32 526 592

-565 28 1 626 34 592 662

-637 28 1 698 36 662 736

-713 28 1 774 38 736 814

-793 28 1 854 40 814 896

-877 28 1 938 42 896 982

Anonymous ID: 950189 Jan. 27, 2018, 9:49 a.m. No.3420   πŸ—„οΈ.is πŸ”—kun   >>3423

for CONTEXT of >>3414

>>>cbts/42019

https://8ch.net/cbts/res/34072.html#38114

 

Anon wrote:

β–ΆAnonymous 12/05/17 (Tue) 23:30:18 f03740 No.41094>>41110 >>41997

Or the golden ratio is like, our denominator. Like our universes calling card or something?

A % Golden Ratio = Prime is fucking crazy!!!What is up with this equation?! My mind is being continuously blown! What the hell is this? VQC! Tell me! Tell me my duderino famalam!

A % Golden Ratio = Prime

>A % Golden Ratio = Prime

A % Golden Ratio = Prime

>A % Golden Ratio = Prime

A % Golden Ratio = Prime

>A % Golden Ratio = Prime

A % Golden Ratio = Prime

>A % Golden Ratio = Prime

A % Golden Ratio = Prime

>A % Golden Ratio = Prime

A % Golden Ratio = Prime

>A % Golden Ratio = Prime

A % Golden Ratio = Prime

>A % Golden Ratio = Prime

Whhhhhhaaaaaaaaaaaaaaaaaaaaat theeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeee fuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuckkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkk

 

which was a response to VQC:

β–ΆVQC!!Om5byg3jAU 12/06/17 (Wed) 04:58:10 ecb64b No.41997

>>41094

This is where the fun really begins.

"I'm not a Monster, I'm just ahead of the CURVE"

Well done.

 

VQC responded to this >>3414

with:

β–ΆVQC!!Om5byg3jAU 12/07/17 (Thu) 04:19:54 ecb64b No.47800

>>42019

Yes and only a small, finite number of dimensions are required to utilise the properties of the whole.

It's all about CONTEXT.

Anonymous ID: 950189 Jan. 27, 2018, 9:51 a.m. No.3421   πŸ—„οΈ.is πŸ”—kun   >>3423

re: Decision Trees

>>3386

>Is this something VQC has said?

 

β–ΆVQC!!Om5byg3jAU 12/06/17 (Wed) 15:59:38 12c5d9 No.44171

Integers are also related into families that you have noticed.

Like fractals.

They repeat.

They GROW.

Sea shells grow.

Establishing which patterns govern which level of the fractal and which part of the branch of that fractal, will help identify the factors of c.

Think decision trees too.

Anonymous ID: 7fa95d Jan. 27, 2018, 12:42 p.m. No.3427   πŸ—„οΈ.is πŸ”—kun   >>3428 >>3429

>>3425

Where did you notice it, so I can look into it?

 

>>3426

Whoever that was did it when we were blindly looking for patterns by changing the colours and criteria for bitmap generation. It isn't necessarily going to help exactly the way it looks, but obviously Chris did reply to it saying that it was "where the fun really begins". Isn't there some formula for calculating the golden ratio exactly instead of just rounding to 1.618?

Anonymous ID: 079d4f Jan. 27, 2018, 1:01 p.m. No.3428   πŸ—„οΈ.is πŸ”—kun   >>3432

>>3427

>>> from math import sqrt

>>> sqrt(5) / 2 + 0.5

1.618033988749895

 

>>> from decimal import *

>>> getcontext().prec = 100

>>> Decimal(5).sqrt() / Decimal(2) + Decimal(0.5)

Decimal('1.618033988749894848204586834365638117720309179805762862135448622705260462818902449707207204189391138')

>>>

VeritasAequitas !!Nf9AmQNR7I ID: 3a9068 Jan. 27, 2018, 5:15 p.m. No.3432   πŸ—„οΈ.is πŸ”—kun   >>3433

>>3426

Good Question CA! I didn't know the formula for the golden ratio. Glad someone else did!

>>3428

Thanks Anon!

 

I have to say, I've taken a few days break from intense work here, and I feel refreshed, rested, and ready to dig in again. If anyone else out there is feeling worn out, make sure to take good care of yourself, rest, and get comfy. We will work more efficiently over the long haul if we make sure to care for our bodies. I exercised today, and am now drinking a beer and getting even more comfy. Glad to be here, fellow MathFags.

VeritasAequitas !!Nf9AmQNR7I ID: 3a9068 Jan. 27, 2018, 5:32 p.m. No.3437   πŸ—„οΈ.is πŸ”—kun

>>3433

_All_wings_Report_IN#go_Faggots_Math-Time

RED5_RED6_Anons_op_MEGAMATH

D_CsTBA_YES[AUTH_H7^pZBVTZ7302-]

##FLY##

[OWLS] and_Reptilians_GO-BTFO.

HOT-1_pre_D

AS THE WORLD TURNS.

HAPPY HUNTING.

P_PERS: WRWY [N1LB][FG&C]

Jeremiah 29:11

Q

 

>>3436

Bantz + Shitz?? :)

VeritasAequitas !!Nf9AmQNR7I ID: c14c81 Jan. 27, 2018, 6:03 p.m. No.3443   πŸ—„οΈ.is πŸ”—kun

>>3434

>>3439

HA! Good to see you baker! Thanks for the delicious new bread. I DID thank the anon who posted the GR formula. "Looked up first Anon, I did."

VeritasAequitas !!Nf9AmQNR7I ID: 32324c Jan. 27, 2018, 6:27 p.m. No.3450   πŸ—„οΈ.is πŸ”—kun   >>3451

This meme is one of Topol's finest, created on the fly back in RSA 3 or 4. Posting for posterity.

 

>>3447

It was SUPER fun! When you start questioning everything you've ever been taught, Agartha, hollow earth, etc. doesn't seem implausible. At this time, I just want facts to validate truth. A is A. Cause and Effect. Since I have no facts (personally validated) on those specific issues, my mind remains open to new solutions.

 

>>3448

What's up Topol!

"That's a nice global government you have there.

Would be a shame if someone

broke the conditioning."

Anonymous ID: 7fa95d Jan. 27, 2018, 6:33 p.m. No.3451   πŸ—„οΈ.is πŸ”—kun   >>3452

>>3449

>>3450

As someone who has always thought Flat Earth was bullshit but could see there was some weird shit going on (like planes not being allowed to fly over the poles, the heavy protection around the poles and Joe Biden etc going there after the US election) I think Agartha makes perfect sense. Since something like this would be provable with video etc when the time comes, and Q said the 40,000ft view would be too much for 99% of people who would just outright deny it if it was told to them, imagine how crazy the 40,000ft view really is and where this would even fit into it.

ProgramMathAnon !dSvrkhSLR6 ID: 82ada7 Jan. 27, 2018, 10:47 p.m. No.3456   πŸ—„οΈ.is πŸ”—kun   >>3457

Still working on the d[t] and a[t] analysis. I have been looking at quite a bit of data, trying to make heads or tails of this. Would appreciate anyone taking a look and letting me know if I have gone too deep down the rabbit hole. (or not deep enough.)

 

Latest version of d[t] and a[t] analysis with a new "summary" at the top is attached. This is again for c=145.

 

The negative t records have been removed to save space. The results I am showing are mirrored in negative t.

 

The summary at the top is an attempt to condense relevant information and make it easier to review multiple test cases.

 

Which will follow in separate posts.

 

The summary columns are as follows:

 

(d[t]-d)/(n-1): values where n-1 is a factor.

(d[t] diffs): difference between values.

(x diffs): difference between x values where n-1 is a factor.

(t diffs): difference between t values where n-1 is a factor.

(d[t] diff)/t: Only shows where t is a factor of d[t] diff. (An attempt to find a common basis.)

 

(a[t]/n): values where n is a factor.

(a[t] diffs): difference between values.

(x diffs): difference between x values where n is a factor.

(t diffs): difference between t values where n is a factor.

(a[t] diff)/t: Only shows where t is a factor of a[t] diff. (An attempt to find a common basis.)

 

(1/4)

ProgramMathAnon !dSvrkhSLR6 ID: 82ada7 Jan. 27, 2018, 10:48 p.m. No.3457   πŸ—„οΈ.is πŸ”—kun   >>3458

>>3456

Pics attached are d[t] and a[t] summaries for different values of e, odd and even n.

 

c=441

an example at e=0 for a=3^2, b=7^2.

 

c=143 and c=145

examples at even and odd e where n is odd.

 

c=115 and c=481

examples at even and odd e where n is even.

 

(2/4)

ProgramMathAnon !dSvrkhSLR6 ID: 82ada7 Jan. 27, 2018, 10:48 p.m. No.3458   πŸ—„οΈ.is πŸ”—kun   >>3459 >>3463

>>3457

Pics attached are side by side comparisons of the d[t] and a[t] analysis for various values of c and their prime solutions.

 

Samples are for c=145, 533, 785, and 901.

 

Results are run over the same list of records. All starting from (e,1,1) and up to t=c.t + c.n.

 

(3/4)

ProgramMathAnon !dSvrkhSLR6 ID: 82ada7 Jan. 27, 2018, 10:49 p.m. No.3459   πŸ—„οΈ.is πŸ”—kun   >>3460 >>3463

>>3458

If you've made it this far, following are my current thoughts:

 

1) We can accurately identify 3 records in each of the (d[t]-d) and (a[t]) sequences. This applies only to the initial 1,c record. Don't know the value of this yet, but it is there.

 

For (d[t]-d): 1, xx-f, and c.

For a[t]: 1, xx-f+4, and c.

 

2) For the initial 1,c records, some records have t as valid factors of the d[t] diff or the a[t] diff. When these factors exist, the pattern appears to be:

 

For even n:

 

d[t] diff / t are even (2,4,6,etc)

a[t] diff / t are sequential (1,2,3,4,etc)

 

For odd n:

 

d[t] diff / t are sequential (1,2,3,4,etc)

a[t] diff / t are even (2,4,6,etc)

 

Don't know if this is important or not.

 

3) One of the sequences of values in a[t]/n uses x.

4) One of the sequences of values in (d[t]-d)/(n-1) uses (x+1).

 

Still have no clue what offset we are looking for.

 

(4/4)

Anonymous ID: 7fa95d Jan. 28, 2018, 1:51 a.m. No.3461   πŸ—„οΈ.is πŸ”—kun

>>3460

I'm the one who posted >>3413 and I think it would pay to mention that I looked at the places CA was talking about in (e, 1) and they seem to always follow the pattern he mentioned (for whatever unknown reason). That said, I actually don't completely understand what CA is doing, so what I said is possibly still important, just in a different context than calculating an infinite set of ds and xs given (e, 1). We just don't know what that context is yet, and I don't really have the time to do anything other than lurk for the rest of the day. If we're using a decision tree rather than iteration then it potentially becomes important when we link (e, 1) to (e, n). Currently, from what I understand (and I might be wrong), CA's method iterates through (e, 1) to find the correct x for (e, n).

Anonymous ID: add73d Jan. 28, 2018, 2:49 a.m. No.3462   πŸ—„οΈ.is πŸ”—kun   >>3464 >>3564

I was comparing a[t] and d[t]-d values for 91, 123, 133, and 145 and some profound discoveries hit me.

 

Since d[t]-d values always seem to have the opposite parity (odd or even) of the a[t] values, then that means that for any e, we already know the parity of the d[t] - d values.

The n values for a given c appear to all have the same parity. EX:

 

n for 145 = {5, 61}

n for 147 = {2, 62}

n for 287 = {8, 128}

 

It'd be great if we could confirm these, because if we knew the parity of n that would be a huge improvement to our algorithms. Remember when Chris said Decision Tree? DECISIONS IMPLY A BINARY CHOICE. ODD AND EVEN!

 

True or false tree.

Boolean tree.

 

1 β€” is e = 0

2 β€” parity of e (is odd or even)

3 β€” ???

ID: add73d Jan. 28, 2018, 3:05 a.m. No.3463   πŸ—„οΈ.is πŸ”—kun

>>3459

>>3458

It has to be parity. That's what jumps out to me.

 

But I haven't yet related the parity of a[t] and d[t]-d's with e (not an obvious pattern), so I haven't yet been able to come up with a good idea of what the third decision is. Though if we are able to know for certain the parity of the n we want that would be HUGE.

Topolanon +++ !!!ZjI4YmE4MzE5Yjlm ID: 8e44f0 Jan. 28, 2018, 3:14 a.m. No.3465   πŸ—„οΈ.is πŸ”—kun

Hey nerds, I've been doing my thang over at the red triangle group of also coding nerds.

 

I have a feeling that the RR from the Vortex Math is the same RR that's leading them through an ARG. Also kinda points to the Zodiac Killer murders being the "cover" for the Skull and Bones initiatory sacrifices. They're supposed to flaunt it because the occult likes to brag… hidden in plain site… thus the letters. "Come on! Catch me, peasants/pissants!"

 

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

https://www.thefreedictionary.com/meson

 

Also a photo of ATLAS

Anonymous ID: 7fa95d Jan. 28, 2018, 4:27 a.m. No.3466   πŸ—„οΈ.is πŸ”—kun   >>3467 >>3473 >>3493

Some of Chris' clues directly relate to (e, 1), and since we're working on that at the moment, I'll point a few out:

 

>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

So does that mean either the next or one of the next parts of the decision tree relates to na?

 

>You're going to use column e=1 to show whether the conjecture about Fermat primes is true during this

Has anyone looked for the Fermat numbers in (e, 1) yet?

 

>A prime 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.

We already know most of this with (a, b) = (1, prime) etc, but this sounds like it's part of the decision tree based on how sequentially Chris describes it.

 

>How many times does the product of three distinct primes appear?

I looked up the phrase "three distinct primes" and I found this: https://en.wikipedia.org/wiki/Sphenic_number

He wouldn't have mentioned it if it wasn't important, so does anyone know anything about Spehnic numbers? I haven't seen anyone discussing them. He said this right after the above two lines about the product of two primes, so maybe if we can find one prime and we can find the product of three primes we can use those methods to find the product of two primes.

 

>The relationship between cells 2n to the left or right in (e, 1)

Has this come up in relation to the decision tree yet?

 

>Extend the cells at (e, 1) into negative x

Has anyone done that yet? He's said a bunch of times that listing everything we know (every rule, every positive and negative value of every integer, etc) would make the answer obvious.

 

>REMEMBER, take d from all values of d[t] at (e,1) and there is a known patter of (n-1) as factor in these values of d[t]-d that is different (increasingly) from the pattern of factors of n in a[t]. It is THIS that gives the offset that is used to solve the problem and thus get the cell at (e,1) to do all the work for you.

This seems like the most important of all things to focus on based on where we are right now.

 

Also this might be a stupid thing to consider but has anyone tried contacting Motti Milgrom and asking if he remembers emailing with a guy called Chris Curtis 10 years ago?

ID: add73d Jan. 28, 2018, 5:10 a.m. No.3467   πŸ—„οΈ.is πŸ”—kun   >>3493

>>3466

Glad you read the crumb map. I don't think I've ever felt this close to the solution. I feel like I'm only lines of code away from it. If you've read all the crumbs you'll see he said he might not even exist (which I'm guessing is referring to his name), as well as when he asked "who is CC" as if it refers to someone other than himself.

ID: add73d Jan. 28, 2018, 5:13 a.m. No.3468   πŸ—„οΈ.is πŸ”—kun   >>3469

>>3464

Yeah, but the 2 decisions he listed are booleans. One or the other. And I've been iterating through so many instances of binary in my head. And like I said, knowing the parity of n AT LEAST halves your search space.

IseePatterns !kIkD/SqZ4s ID: 316b0b Jan. 28, 2018, 5:24 a.m. No.3469   πŸ—„οΈ.is πŸ”—kun

>>3468

 

Of course, my intention wasn't to discourage, but simply to point it out. It's also a good thing to keep in mind, if some branches might require more than binary splits.

IseePatterns !kIkD/SqZ4s ID: 316b0b Jan. 28, 2018, 6:09 a.m. No.3470   πŸ—„οΈ.is πŸ”—kun   >>3471

>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'm trying to wrap my head around this one. I'll try with an example and if you guys understand it in another way let me know:

 

We use c = 145. This is a=5,b=29 so the correct na in our case is 25.

 

The d is 12, so we do 25 - (2 * 12 + 1) which equals 0.

 

We are now supposed to be in the negative half of the grid with regards to e, which I then assume, we are going after: e - (2 * 12 + 1) =-24. The first record in -24 is {-24:1:28:8:20:38}.

 

Here a is (5 - 1)5 which is correct, but the crumb states "the value at the same element in the first row will be (n - 1)a". I interpret that as the same record at t (1, 1), where a[t] = 25 should also be the t in (-24, 1) where a = 20. However, this doesn't match, since 20 appears in t=1 in (-24, 1) and 25 appears at t = 4 in (1, 1).

 

So does that mean that na - (2*d + 1) doesn't reference the same e, as e - (2 * d + 1)?

IseePatterns !kIkD/SqZ4s ID: 316b0b Jan. 28, 2018, 6:15 a.m. No.3471   πŸ—„οΈ.is πŸ”—kun   >>3472

>>3470

Now, I'm not sure if we know but from what I've seen, if we do e - (2 * d + 1) then (n - 1)a will appear in (e - (2 * d + 1), 1) at some point.

 

Could it be that we have to use these two together? Somehow combine (e, 1) and (e - (2 * d + 1))?

IseePatterns !kIkD/SqZ4s ID: 316b0b Jan. 28, 2018, 6:27 a.m. No.3473   πŸ—„οΈ.is πŸ”—kun   >>3474

>>3466

 

>>You're going to use column e=1 to show whether the conjecture about Fermat primes is true during this

Has anyone looked for the Fermat numbers in (e, 1) yet?

 

I haven't looked into it myself, not sure if someone else has, but we know that they will always be in (1, n) for greater than 3, and this makes sense since Fermat Primes are all perfect squares + 1. All perfect squares will occur in (0, n) and since we add 1, we will give it a remainder of 1 shy from a perfect square.

IseePatterns !kIkD/SqZ4s ID: 316b0b Jan. 28, 2018, 6:56 a.m. No.3474   πŸ—„οΈ.is πŸ”—kun

>>3473

 

This probably won't work for large numbers, but what we do when we compute f (2*d + 1) is that we are actually increasing by one square.

 

Now, I'm thinking out loud again. We can do e + (2 * d - 1) and here we will find (n + 1)a. But we can generalize it to k * (2 * d - k), where k is the number of squares to add to e.

 

This means that the (n + k)a will be in (e + k * (2 * d - k), 1) and it will occur at a lower t. I don't know if we can guarantee it to exist as t = 1, though. I mean if we could then we would have found (n + k)a which would be amazing. Then we would be even closer to the actual answer.

 

Take our beloved example of c = 145. We know the record we want is (1, 5, 12, 7, 5, 29).

 

If we then do 1 + (2 * d - 1) we will get 24. Here we will find 5 * 6 (30) at t=4 (same t as an btw, but probably not something that holds true for every number).

 

But let's add more squares to it: e + 4*(2 * d - 4) =1 + 4*(2 * 12 - 1) => 81.

 

This is the same as (n + 4)5 which is (5 + 4)5 which is 45.

 

For e = 81, we have the following records:

(81, 1, 42, 1, 41, 45)

(81, 1, 48, 3, 45, 53)

(81, 1, 58, 5, 53, 65)

(81, 1, 72, 7, 65, 81)

(81, 1, 90, 9, 81, 101)

 

Thus we've "moved" a(n+4) up to t=1. This works fine for c = 145, though. It probably won't work smooth for big numbers.

IseePatterns !kIkD/SqZ4s ID: 316b0b Jan. 28, 2018, 7:17 a.m. No.3475   πŸ—„οΈ.is πŸ”—kun   >>3476

Someone want to take a look at this and see if it make sense?

 

def genesis_block(e): if e 0: return (0, 1, 4, 2, 2, 8) x = e % 2 a = int(e/2) + x n = 1 b = a + 2x + 2n c = math.fabs(a*b) d = math.floor(math.sqrt(c)) return (int(e), int(n), int(d), int(x), int(a), int(b)) def factorize(c): e, n, d, x, a, b = rowForAB(1, c) dd = d/2 if dd % 2 1: dd -= 1 ee,nn,dd,xx,aa,bb = genesis_block(e + dd * (2 * d - dd)) print(math.gcd(c, aa*bb))

IseePatterns !kIkD/SqZ4s ID: 316b0b Jan. 28, 2018, 7:27 a.m. No.3477   πŸ—„οΈ.is πŸ”—kun

>>3476

Actually, thinking more about it I just got caught up with low numbers. The big numbers multiplied by (n + k)*a will diverge too far from the genesis cell. I don't think this is a the direction to the solution.

 

Although I am interested in what you guys think about the (n + ..) angle, though.

IseePatterns !kIkD/SqZ4s ID: 316b0b Jan. 28, 2018, 10:46 a.m. No.3484   πŸ—„οΈ.is πŸ”—kun

Aren't all negative x's simply the next records x * -1?

 

For (1, 1) we have the following records:

(1, 1, 2, 1, 1, 5)

(1, 1, 8, 3, 5, 13)

(1, 1, 18, 5, 13, 25)

(1, 1, 32, 7, 25, 41)

(1, 1, 50, 9, 41, 61)

(1, 1, 72, 11, 61, 85)

 

Isn't the negative x for (1, 1) these:

(1, 1, 2, -3, 5, 1)

(1, 1, 8, -5, 13, 5)

(1, 1, 18, -7, 25, 13)

(1, 1, 32, -9, 41, 25)

(1, 1, 50, -11, 61, 41)

(1, 1, 72, -13, 85, 61)

 

Which are the same records, except the x refers to the next records x multiplied by negative 1 (or simply negated)?

Teach !!UgZAPoSXEk ID: 68a051 Jan. 28, 2018, 11 a.m. No.3485   πŸ—„οΈ.is πŸ”—kun   >>3487 >>3493

Hey guys, sorry I've been busy for a bit with work and haven't been able to post.

 

But this problem has still been on my mind, and I've made some more observations in patterns:

 

ab = dd + e

2an = xx + e

 

a is a factor of both dd+e and xx+e. This is the tree growth I believe that we were guided with.

 

2ab = 2(dd + e)

In this case our n for c = c becomes our original b.

 

4ab = 4(dd + e)

4ab = (2d)(2d) + 4e

 

In this case n = 2b.

 

I think these could be the key to unlocking this thing.

 

β€”-

 

1 more pattern i've observed that I think is linked:

 

a + b = 2(d+n)

a - b = 2(x+n)

 

Still trying to put this all together. But I think with these 2 tips we should be able to get it done.

 

How's everyone else?

 

There have been many posts since I've been here last, anything in particular I should look into?

MinecraftAnon !!QXqSZ2ev8. ID: a67aa4 Jan. 28, 2018, 11:20 a.m. No.3487   πŸ—„οΈ.is πŸ”—kun   >>3488 >>3493

>>3485

a + b = 2(d+n) is correct, but a - b = 2(x+n) is not. In the original grid, A < B is always true, therefor a - b < 0, and 2(x+n) 0.

 

Also been gone a bit, safe to ignore everything other than VQC posts.

Anonymous ID: d6f59c Jan. 28, 2018, 11:47 a.m. No.3489   πŸ—„οΈ.is πŸ”—kun

New useless solution record corrected.

For {E, N, D, X, A, C}

Increase N by X

Decrease D and X by X so X=0 and D=A

A and B stay the same

Record is:

{ 2*(NA+XA), N+X, A, 0, A, B}

Teach !!UgZAPoSXEk ID: 68a051 Jan. 28, 2018, 12:04 p.m. No.3491   πŸ—„οΈ.is πŸ”—kun

>>3490

Can you give me an example of it working for invalid cells?

In our c, a and b are both odd. So they're separated by an even distance. That's the 2 in 2na.

CollegeAnon !LAbIRp9cT. ID: 69c043 Jan. 28, 2018, 12:05 p.m. No.3492   πŸ—„οΈ.is πŸ”—kun

Negative X would mean that the factor A is greater than D, which means that the other factor would need to be less than D. This is how you have B < A.

 

If you have a record in (E,1)

D X A B

then there is another cell

D -X-2 B A

Anonymous ID: 7fa95d Jan. 28, 2018, 12:07 p.m. No.3493   πŸ—„οΈ.is πŸ”—kun   >>3495

>>3467

It would surprise me if he was using his real name to give people on 8ch the knowledge necessary to crack RSA. I tried looking in various places on the internet for someone called Chris Curtis from Auckland, New Zealand out of curiosity at one point and while I didn't put much effort in, I didn't find anything.

 

>>3485

>>3487

CA found a way to calculate any d and x in (e, 1) cells >>3393 although it doesn't work as it's meant to because to find the correct x value at the moment we're iterating.

There's a newer version of the map >>3453

Chris hasn't been here and said anything in a while. Someone messaged him on Twitter, though, and he pointed out some things about the decision tree. The first question in the decision tree is whether e = 0. The second is whether e is odd or even (which relates to CA's thing). We're looking for the third decision at the moment. There are a lot of things you'll see in the map that seem like they relate to decisions on a decision tree, possibly some of the ones I pointed out >>3466 here, but we don't know what the third decision is yet. Other than that, there have been lots of discoveries that didn't go anywhere. I might have missed something but that's what happened last thread and this thread so far off the top of my head.

Teach !!UgZAPoSXEk ID: 68a051 Jan. 28, 2018, 12:09 p.m. No.3494   πŸ—„οΈ.is πŸ”—kun   >>3496 >>3524

Also, is everyone aware that the distance between each 2 consecutive squares is the set of odd numbers?

 

Another way to think about what we're doing is that we're summing a sequence of consecutive odd numbers.

 

Example for c=145.

c = 25 + 27 + 29 + 31 + 33.

The middle of the sequence is b, the number of terms is a. And:

25 = 13^2 - 12^2

27 = 14^2 - 13^2

29 = 15^2 - 14^2

31 = 16^2 - 15^2

33 = 17^2 - 16^2

Teach !!UgZAPoSXEk ID: 68a051 Jan. 28, 2018, 12:11 p.m. No.3495   πŸ—„οΈ.is πŸ”—kun   >>4100

>>3493

For n = 1, the series of d's, a's, and x's are easily calculable from t. Here's my function, all in terms of t:

 

if (e == 0) {

x = 2*t;

a = 2tt;

d = 2tt + 2*t;

} else if (e % 2 == 1) {

x = 2*t - 1;

d = 2tt + (e-1)/2;

a = 2tt + (e-1)/2 - 2*t + 1;

} else if (e % 2 == 0) {

x = 2*t - 2;

d = 2tt + e/2 - 2*t;

a = 2tt + e/2 - 4*t + 2;

}

MinecraftAnon !!QXqSZ2ev8. ID: a67aa4 Jan. 28, 2018, 12:14 p.m. No.3496   πŸ—„οΈ.is πŸ”—kun   >>3497

>>3494

Renders done with two different isValid checks. Both use A != 0.

 

First image if (c - (d * d) e && d - a x){return true;},

second image if (a + b 2 * (d + n) && b - a 2 * (x + n)) {return true;}

Teach !!UgZAPoSXEk ID: 68a051 Jan. 28, 2018, 12:25 p.m. No.3499   πŸ—„οΈ.is πŸ”—kun   >>3500

>>3498

Gotcha, so you're trying all combinations of e x and n?

 

And in the grid where there are empty cells, the formula still holds is what you're saying?

 

If so, then yes, that makes sense, but it doesn't hinder us by holding true for non-grid cells.

 

The a's & b's in the grid are always the same parity, otherwise, n would not be a whole number. And as I mentioned before, a & b in our case for semi-prime c will always be odd.

MinecraftAnon !!QXqSZ2ev8. ID: a67aa4 Jan. 28, 2018, 12:38 p.m. No.3500   πŸ—„οΈ.is πŸ”—kun   >>3501 >>3502

>>3499

Checked again. Yes, this is all combinations of E, X, and N using my bruteforce cell creation method.

 

And correct again, I'm saying formula applies in cells that aren't valid but I can also say the formula always applies in cells that are valid. At least where E>=0, but for any X (positive or negative) and any N < 0.

MinecraftAnon !!QXqSZ2ev8. ID: ab147f Jan. 28, 2018, 2:08 p.m. No.3503   πŸ—„οΈ.is πŸ”—kun   >>3504

1st pic, the front of the end, with +E left, +F right, +X up, -X down.

 

2nd, at E=0, looking towards +E.

 

3rd, at E=0, towards +F (-E).

 

4th, at E=0, X=0, looking up towards +X.

 

5th, at E=0, X=0, looking down towards -X.

MinecraftAnon !!QXqSZ2ev8. ID: ab147f Jan. 28, 2018, 2:10 p.m. No.3504   πŸ—„οΈ.is πŸ”—kun

>>3503

I'm a little shaky on the -X values, I don't have anything to check them against, and I lost my code to put the signs on the front of the blocks. Will validate -X next by re-coding the sign process.

ID: add73d Jan. 28, 2018, 2:32 p.m. No.3507   πŸ—„οΈ.is πŸ”—kun

Topol was right. My phone could hardly render that whole image and it took some major tweaking to work. Perhaps I could split it into parts or something.

MinecraftAnon !!QXqSZ2ev8. ID: ab147f Jan. 28, 2018, 2:32 p.m. No.3508   πŸ—„οΈ.is πŸ”—kun

There are patterns in plus X that seem to be mirrored but rotated in minus X. -X appears to be much more compact across N space. I think the signs will show something interesting.

Teach !!UgZAPoSXEk ID: 68a051 Jan. 28, 2018, 3:23 p.m. No.3509   πŸ—„οΈ.is πŸ”—kun

>>3502

My pythagorean triplets equations are wrong, sorry.

 

hypotenuse = b^2+a^2

side1 = b^2 - a^2

side2 = 2ab

 

This makes it a little trickier.

But it may be related to the mod 4 = 2 set of numbers.

MinecraftAnon !!QXqSZ2ev8. ID: ab147f Jan. 28, 2018, 3:50 p.m. No.3510   πŸ—„οΈ.is πŸ”—kun

Here's something else, this is the same bruteforce view, but plotting by D instead of X. -X has positive D's as well, so they're inverted for the purpose of the render. It would seem that -X is a perfect mirror in terms of E,D,N.

Anonymous ID: add73d Jan. 28, 2018, 4:01 p.m. No.3511   πŸ—„οΈ.is πŸ”—kun   >>3512 >>3556 >>3571

So, it looks like we can know the parity of the n we want for semiprimes who do not contain 2 as a factor. (Basically the numbers we need to know how to factor.) I have attached both n values to a list of these numbers. You will see that both n values have the same parity.

 

cβ€”β€”{N, n}

9β€”β€”{2,0}

21β€”β€”{7,1}

25β€”β€”{8,0}

33β€”β€”{12,2}

35β€”β€”{13,1}

39β€”β€”{14,2}

49β€”β€”{18,0}

51β€”β€”{19,3}

55β€”β€”{21,1}

57β€”β€”{22,4}

65β€”β€”{25,1}

69β€”β€”{27,5}

77β€”β€”{31,1}

85β€”β€”{34,2}

87β€”β€”{35,7}

91β€”β€”{37,1}

93β€”β€”{38,8}

95β€”β€”{39,3}

106β€”β€”{43,17}

111β€”β€”{46,10}

115β€”β€”{48,4}

119β€”β€”{50,2}

121β€”β€”{50,0}

123β€”β€”{51,11}

129β€”β€”{54,12}

133β€”β€”{56,2}

141β€”β€”{60,14}

143β€”β€”{61,1}

145β€”β€”{61,5}

155β€”β€”{66,6}

159β€”β€”{68,16}

161β€”β€”{69,3}

166β€”β€”{71,30}

169β€”β€”{72,0}

177β€”β€”{76,18}

183β€”β€”{79,19}

185β€”β€”{80,8}

187β€”β€”{81,1}

209β€”β€”{91,1}

221β€”β€”{97,1}

247β€”β€”{109,1}

253β€”β€”{112,2}

287β€”β€”{128,8}

 

So, what is n for rsa617? I don't know but it is an even number!

Anonymous ID: 7fa95d Jan. 28, 2018, 4:11 p.m. No.3512   πŸ—„οΈ.is πŸ”—kun   >>3513 >>3559

>>3511

Sounds like another decision for the decision tree. It also cuts the time in half if we were to iterate. Nice work. If n is even and d is even, that means (a+b) % 4 == 0, right? Because it means (a+b)/2 is an even number too. That means if n is even and d is odd that (a+b) % 4 != 0. Vice versa for odd n values. Chris said something about mod 4, right? I don't remember what it was so I don't remember if it applies to this situation.

Anonymous ID: add73d Jan. 28, 2018, 4:45 p.m. No.3518   πŸ—„οΈ.is πŸ”—kun

n's for rsa100 (same parity theory):

 

761302513961266680267809189066318714859034057480651323757098846024549192056136964455981270339102876

14387588531011964456730684619177102985211280936

Anonymous ID: add73d Jan. 28, 2018, 5:07 p.m. No.3519   πŸ—„οΈ.is πŸ”—kun   >>3522

I find it interesting that his purported initials are CC and he referred to c^2 as cc.

 

"What did Einstein say about co-In(c)iden(c)e???"

God's way of staying anonymous is what he said.

 

"I might not EVEN exist."

"No fear for EXPRESSION."

Even, expression? Math words.

 

"C root of D"

 

Read THIS carefully.

IT is important and will be my LAST message on 8ch but NOT my last message.

You can follow ME on Twitter.

What you have ABOVE and HERE is over 95% of what You need.

Over 95%

The rest of what MATTERs is You and (you)

My name here is VQC.

Victory means Peace,

Questions mean Release,

Chris is my name,

God+/-speed

ID: add73d VQC crumb from my Twitter DMs. Jan. 28, 2018, 5:24 p.m. No.3520   πŸ—„οΈ.is πŸ”—kun

>Yes, Fermat's Last Theorem can be proved using the closure of the product of the sum of two squares. If higher dimensions existed, the product of the sum of two squares would not be closed.

Topolanon +++ !!!ZjI4YmE4MzE5Yjlm ID: 8e44f0 Jan. 28, 2018, 6:36 p.m. No.3522   πŸ—„οΈ.is πŸ”—kun

>>3519

Frickin' double c again…

Sight beyond Site!

Blasting off faster than the speed of light.

 

c^2… c squared… a squared open circle…

Planes of Light?

VeritasAequitas !!Nf9AmQNR7I ID: 32324c Jan. 28, 2018, 6:49 p.m. No.3524   πŸ—„οΈ.is πŸ”—kun   >>3525 >>3528

>>3455

Thanks for putting the new Map together Baker! Read it and expanded my thinking again.

 

>>3494

Hey Teach! Good to see you, and thanks for this great explanation.

 

Decision Trees:

I think step 3 is finding t and x for na (1,c) in (e,1).

Thoughts?

ID: add73d Jan. 28, 2018, 7:02 p.m. No.3528   πŸ—„οΈ.is πŸ”—kun   >>3529

>>3523

>>3524

>>3525

Look at these. I think this may be related to the decision.

 

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

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

 

I don't know who derived these, I had them in the batter at one point.

 

if (e is even) n = (floor_sqrt(c + (2 * t)^2)) - (d)

if (e is odd) n = (floor_sqrt(c + (2 * t - 1)^2)) - (d - 1)

 

if (e is even) (d + n)^2 = (2t)^2 + c

if (e is odd) (d + n)^2 = (2t - 1)^2 + c

 

if (e is even) (x + n)^2 = (2t)^2

if (e is odd) (x + n)^2 = (2t - 1)^2

VA !!Nf9AmQNR7I ID: c00f3b Jan. 28, 2018, 7:06 p.m. No.3529   πŸ—„οΈ.is πŸ”—kun

>>3525

Wondering the same thing, Anon. It's not binary tho. Here's what I have so at the moment: "Choose Your Starting Point." Find na (1,c) in (e,1) and complete the element (x,t now known). Then use that knowledge to find the element that has matching d[t], x[t], and has the "Prime Solution". LOL, Baker should make us some Hitler memes with the Prime Solution.

 

>>3528

I derived those, with PMA's help. Pic relevant.

VA !!Nf9AmQNR7I ID: c00f3b Jan. 28, 2018, 7:12 p.m. No.3530   πŸ—„οΈ.is πŸ”—kun   >>3531

PMA found that in (e,1) the small square was tied to t, this part was all his work:

 

if (e is even) (d + n)^2 = (2t)^2 + c

if (e is odd) (d + n)^2 = (2t - 1)^2 + c

if (e is even) (x + n)^2 = (2t)^2

if (e is odd) (x + n)^2 = (2t - 1)^2

 

T equations verified by Chris, see pic.

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

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

 

These were my work, based on using t to solve for the small square:

if (e is even) n = (floor_sqrt(c + (2 * t)^2)) - (d)

if (e is odd) n = (floor_sqrt(c + (2 * t - 1)^2)) - (d - 1)

 

The quadratics are derived easily by subbing out PMA's t solution for small square, and then using algebra to isolate n.

Topolanon +++ !!!ZjI4YmE4MzE5Yjlm ID: 8e44f0 Jan. 28, 2018, 7:22 p.m. No.3532   πŸ—„οΈ.is πŸ”—kun   >>3534

>>3531

Tree have ROOTS, a main trunk/body (the genesis cell?), and branches/twigs/leaves that GROW toward THE LIGHT.

 

So what's being mapped out with the VQC may be all the points where the roots, trunk, branches, twigs, and leaves "are". Are those the primes?

 

Wasn't there talk about - and going backwards to move forward or something? If y'all know where to find m'discord, you can see all the direction I've been pulled in throughout the Q A.R.G. Phenomenon.

Topolanon +++ !!!ZjI4YmE4MzE5Yjlm ID: 8e44f0 Jan. 28, 2018, 7:26 p.m. No.3533   πŸ—„οΈ.is πŸ”—kun

Hmmm… this is where the square root of primes and… something someone hit me up with but I'm not finding the conversation…. maybe it was this?

 

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

VA !!Nf9AmQNR7I ID: c14c81 Jan. 28, 2018, 7:41 p.m. No.3534   πŸ—„οΈ.is πŸ”—kun   >>3535

>>3531

Sheeeit. Good question, Anon. Trying to figure out how to put it in binary decision form. (I'll take Step 3 in Binary for $1000, Alex?)

 

>>3532

Great visual projection Topol! This is where I have to keep my spiritual and emotional focus. If I let myself get frustrated by "lack of progress", I lose my joy. TREES ARE GOOD AND BEAUTIFUL! I love trees and math. This is an abstract math tree that exists in the source of all knowledge. We have been called here (self-selected perhaps?) to help reveal this beautiful tree to the world. We never give up, we just keep going. How do you say that in Latin?? That shit should be our motto here.

VA !!Nf9AmQNR7I ID: c00f3b Jan. 28, 2018, 9:09 p.m. No.3545   πŸ—„οΈ.is πŸ”—kun   >>3546

>>3542

Topol, you wonderful faggot! We all know you are Chris' shitpost account. You and Chris "Had a little talk" (between yourself(s)) about not blessing us with TOO many Math LSD memes. Fess up.

ID: add73d Jan. 28, 2018, 9:14 p.m. No.3547   πŸ—„οΈ.is πŸ”—kun

Just wanna say these are probably erroneous. Google can hardly get living languages right so it's probably taking a shot in the dark when it comes to a dead language.

VA !!Nf9AmQNR7I ID: fba0a4 Jan. 28, 2018, 9:50 p.m. No.3549   πŸ—„οΈ.is πŸ”—kun   >>3550 >>3551

>>2974

>>3031

>>3131

 

Let's focus again on c=145 for a minute.

We never made the connection between c and p records. This is where we gotta focus. na=a at (e,1) for c solution. Then d[t] x[t] for n are the same in the prime solution. The only (e,1) difference was the lesser t value for the prime solution.

 

Side Note: There's gotta be some Golden Ratio / Fib Sequence to how d,x,a,b tie together. All Nature and Growth are governed by these same rules, We're just helping uncover them.

VA !!Nf9AmQNR7I ID: c14c81 Jan. 28, 2018, 10:03 p.m. No.3550   πŸ—„οΈ.is πŸ”—kun

>>3549

Error Correction:

>Then d[t] x[t] for n are the same in the prime solution.

Should be:

Then d and x for (prime n) are the same in the prime solution as they are in (e,1)

ID: add73d Jan. 28, 2018, 10:03 p.m. No.3551   πŸ—„οΈ.is πŸ”—kun   >>3552 >>3553

>>3549

For any semiprime the t value of the c record is bigger than the t value of the prime solution in e,1. So the straight path to factorization is to generate (e, n, t) for 1*c and then go to (e, 1, t) and iterate downwards (by lowering t) until you reach the solution record where x is the x that gives the factors of c.

 

So, a solution would be finding a way to make that fast enough/skip it entirely.

VA !!Nf9AmQNR7I ID: fc4336 Jan. 28, 2018, 10:14 p.m. No.3552   πŸ—„οΈ.is πŸ”—kun

>>3551

Thanks for understanding my idea, Baker. It's so nice to be with your minds who can do the things I like to do. Most people around me can't even begin to understand how excellent this forum is.

Just doing Math(s) is/are? improving my life.

 

The relationship between d, x, and a is amazing. I'm wondering if there's a pattern between [delta]t for (1,c) and t for (Prime Solution). Can we run those numbers, programAnons? Let's take known c's from the basic grid so everyone can follow. Let's do the (1,c) and (Prime) for each c value. If willing, PMA, would you please pick some c values starting at c=145 and greater? Just a few examples needed to examine this [delta]t idea between na=a for (1,e) and (e,n). Thoughts welcome.

VA !!Nf9AmQNR7I ID: 06387b Jan. 28, 2018, 10:41 p.m. No.3553   πŸ—„οΈ.is πŸ”—kun   >>3554

>>3551

>So the straight path to factorization is to generate (e, n, t) for 1*c and then go to (e, 1, t) and iterate downwards (by lowering t) until you reach the solution record where x is the x that gives the factors of c

 

Exactly. But if [delta]t is known (or patterns of [delta]t are known) can we then lower t to the proper integer using a known formula? Asking for a friend.

IseePatterns !kIkD/SqZ4s ID: 316b0b Jan. 28, 2018, 10:57 p.m. No.3557   πŸ—„οΈ.is πŸ”—kun   >>3558 >>3559

>>3556

  1. Check if d is odd or even?

 

Parity of d will give us parity of x, right?

 

We can't deduce parity of d from e alone, as you can see in (4, 2).

 

Of course, I'm now assuming we CAN figure out the parity of x by looking at d. Not sure if we can / haven't looked enough to see if it's possible.

VA !!Nf9AmQNR7I ID: fc4336 Jan. 28, 2018, 11:03 p.m. No.3558   πŸ—„οΈ.is πŸ”—kun

>>3555

Checked!!

 

Agreed. But if we can go from (1,c) to (prime) using a formula based on t in (e,1), then that gives us our x and t values, which are supposed to be the same in (e,n)?

 

>>3556

>>3557

Looks like this could be next steps for decision tree?

Anonymous ID: 7fa95d Jan. 28, 2018, 11:14 p.m. No.3559   πŸ—„οΈ.is πŸ”—kun   >>3560

>>3557

If we know the parity of d and n then we know the parity of (a+b) too, as explained >>3512 here. a = d - x. If d and x are both odd or both even, a is even. If d is either odd or even and x is the opposite, a is odd. If a is even and (a+b) is odd, b is odd. If a is even and (a+b) is even, b is even. If a is odd and (a+b) is odd, b is even. If a is odd and (a+b) is even, b is odd. If (a+b) is odd then c is even (oddeven or evenodd). If (a+b) is even then c could be odd or even (oddodd=odd or eveneven=even). So if we know the parity of x, we know the parity of every variable. I'm too tired to remember if we know how to find the parity of x yet.

Anonymous ID: 7fa95d Jan. 28, 2018, 11:16 p.m. No.3560   πŸ—„οΈ.is πŸ”—kun

>>3559

Okay I don't know if we actually do have the parity of d and n yet just rereading my post from earlier. As I said I'm a bit sleep-deprived. But if we do, all the logic in this post still checks out.

ID: add73d Jan. 28, 2018, 11:23 p.m. No.3561   πŸ—„οΈ.is πŸ”—kun   >>3562 >>3586

What follows is a similar list, but of their t values, to attempt to illustrate our pattern. Similar to N vs n, I'll refer to the t value from our start point as T, and the one we want as t, and add their differences. The starting point and factors will also be added, so a pattern can be deduced.

 

Example:

(1,1,6) starting point for 145

(1,1,4) solution element

 

cβ€”β€”{T, t, T-t} {E:N:D:X:A:B} a*b

 

9β€”β€”{2, 1, 1} {0:2:3:2:1:9} 3*3

21β€”β€”{2, 1, 1} {5:7:4:3:1:21} 3*7

25β€”β€”{3, 1, 2} {0:8:5:4:1:25} 5*5

33β€”β€”{3, 2, 1} {8:12:5:4:1:33} 3*11

35β€”β€”{3, 1, 2} {10:13:5:4:1:35} 5*7

39β€”β€”{3, 2, 1} {3:14:6:5:1:39} 3*13

49β€”β€”{4, 1, 3} {0:18:7:6:1:49} 7*7

51β€”β€”{4, 3, 1} {2:19:7:6:1:51} 3*17

55β€”β€”{4, 2, 2} {6:21:7:6:1:55} 5*11

57β€”β€”{4, 3, 1} {8:22:7:6:1:57} 3*19

65β€”β€”{4, 2, 2} {1:25:8:7:1:65} 5*13

69β€”β€”{4, 3, 1} {5:27:8:7:1:69} 3*23

77β€”β€”{4, 1, 3} {13:31:8:7:1:77} 7*11

85β€”β€”{5, 3, 2} {4:34:9:8:1:85} 5*17

87β€”β€”{5, 4, 1} {6:35:9:8:1:87} 3*29

91β€”β€”{5, 2, 3} {10:37:9:8:1:91} 7*13

93β€”β€”{5, 4, 1} {12:38:9:8:1:93} 3*31

95β€”β€”{5, 3, 2} {14:39:9:8:1:95} 5*19

106β€”β€”{5, 4, 1} {6:43:10:9:1:106} 3*51

111β€”β€”{5, 4, 1} {11:46:10:9:1:111} 3*37

115β€”β€”{5, 3, 2} {15:48:10:9:1:115} 5*23

119β€”β€”{5, 2, 3} {19:50:10:9:1:119} 7*17

121β€”β€”{6, 1, 5} {0:50:11:10:1:121} 11*11

123β€”β€”{6, 5, 1} {2:51:11:10:1:123} 3*41

129β€”β€”{6, 5, 1} {8:54:11:10:1:129} 3*43

133β€”β€”{6, 3, 3} {12:56:11:10:1:133} 7*19

141β€”β€”{6, 5, 1} {20:60:11:10:1:141} 3*47

143β€”β€”{6, 1, 5} {22:61:11:10:1:143} 11*13

145β€”β€”{6, 4, 2} {1:61:12:11:1:145} 5*29

155β€”β€”{6, 4, 2} {11:66:12:11:1:155} 5*31

159β€”β€”{6, 5, 1} {15:68:12:11:1:159} 3*53

161β€”β€”{6, 3, 3} {17:69:12:11:1:161} 7*23

166β€”β€”{6, 5, 1} {22:71:12:11:1:166} 3*81

169β€”β€”{7, 1, 6} {0:72:13:12:1:169} 13*13

177β€”β€”{7, 6, 1} {8:76:13:12:1:177} 3*59

183β€”β€”{7, 6, 1} {14:79:13:12:1:183} 3*61

185β€”β€”{7, 5, 2} {16:80:13:12:1:185} 5*37

187β€”β€”{7, 2, 5} {18:81:13:12:1:187} 11*17

209β€”β€”{7, 2, 5} {13:91:14:13:1:209} 11*19

221β€”β€”{7, 1, 6} {25:97:14:13:1:221} 13*17

247β€”β€”{8, 2, 6} {22:109:15:14:1:247} 13*19

253β€”β€”{8, 3, 5} {28:112:15:14:1:253} 11*23

287β€”β€”{8, 5, 3} {31:128:16:15:1:287} 7*41

 

7463β€”β€”{43, 35, 8} {67:3646:86:85:1:7463} 17*439

93801β€”β€”{153, 152, 1} {165:46595:306:305:1:93801} 3*31267

940683β€”β€”{485, 484, 1} {1722:469373:969:968:1:940683} 3*313561

2611447β€”β€”{808, 2, 806} {3222:1304109:1615:1614:1:2611447} 1613*1619

44231413β€”β€”{3325, 544, 2781} {8913:22109057:6650:6649:1:44231413} 5563*7951

173648257β€”β€”{6589, 740, 5849} {14928:86810952:13177:13176:1:173648257} 11699*14843

6867225401β€”β€”{41434, 4805, 36629} {119977:3433529833:82868:82867:1:6867225401} 73259*93739

10967535067β€”β€”{52363, 2, 52361} {209442:5483662809:104725:104724:1:10967535067} 104723*104729

867072408247β€”β€”{465584, 22940, 442644} {426358:433535272957:931167:931166:1:867072408247} 885289*979423

15778598254603β€”β€”{1986114, 257299, 1728815} {2970619:7889295155074:3972228:3972227:1:15778598254603} 3457631*4563413

81311001417221β€”β€”{4508631, 64212, 4444419} {5475100:40655491691350:9017261:9017260:1:81311001417221} 8888839*9147539

215303158862641β€”β€”{7336606, 385003, 6951603} {8465697:107651564758109:14673212:14673211:1:215303158862641} 13903207*15485863

237051716747561β€”β€”{7698242, 19017, 7679225} {27978272:118525842977298:15396483:15396482:1:237051716747561} 15358451*15434611

 

Added some huge semiprimes just to give an idea of how far t is from T in a practical setting.

ID: add73d Jan. 29, 2018, 12:44 a.m. No.3565   πŸ—„οΈ.is πŸ”—kun   >>3586

So, in the starting point in (e,1), the d[t]-d value is (N-1)1, and the a[t] is N1.

 

And at the solution record, the d[t]-d value is (n-1)a, and the a[t] val is na.

 

We have a new way to iterate.

Find first appearance of factor of the factor of our N.

Calculate formulae for appearances of its multiples.

Iteration from t=1 becomes a tree instead of blind iteration.

Anonymous ID: 70f5db Jan. 29, 2018, 1:25 a.m. No.3568   πŸ—„οΈ.is πŸ”—kun   >>3570

>>3564

This essentially states that 5 as a factor accumulates over t's.

 

And since this holds for 5 and 25, it also holds for 85, 145 etc. So 5 will continue to grow as a factor of a in (1, 1). So will 25, 85 etc.

ID: add73d Jan. 29, 2018, 1:27 a.m. No.3569   πŸ—„οΈ.is πŸ”—kun

Working pretty nice so far will improve tomorrow. If you want the algorithm it basically calculates d[t]-d for (e,1,1) (then takes absolute value of it) and then iterates over the formulae described in the crumb, and tests the x values produced.

 

End result are negative values of a and b.

ID: add73d Jan. 29, 2018, 1:42 a.m. No.3570   πŸ—„οΈ.is πŸ”—kun

>>3568

Yep, it GROWS exactly like he said. It's still a search algorithm but it's exactly the kind of improvement I was looking for - it's able to skip many of the elements we don't want when iterating t.

Anonymous ID: 15411f Jan. 29, 2018, 5:59 a.m. No.3576   πŸ—„οΈ.is πŸ”—kun   >>3586

>>3361

>>3564

>https://archive.fo/RgVko (RSA#1)

 

VQC:

Anonymous 12/05/17 (Tue) 09:34:37 ID: ecb64b No.36154

I'll work through RSA100. If you're using C# the BigInteger namespace is handy.

c = 1522605027922533360535618378132637429718068114961380688657908494580122963258952897654000350692006139

d = 39020571855401265512289573339484371018905006900194

e = 61218444075812733697456051513875809617598014768503

n = 14387588531011964456730684619177102985211280936

x = 1045343918457591589480700584038743164339470261995

a = 37975227936943673922808872755445627854565536638199

b = 40094690950920881030683735292761468389214899724061

In the element at (Rsa100e,1) you find that the element where x = Rsa100x, you will find a = Rsa100n x Rsa100a

If you find a that is Rsa100n elements further down, then that a will equal Rsa100n x Rsa100b

Then at grid cell (Rsa100e, Rsa100n) which is obviously in the same column, you'll find the product c.

In summary, the factors in any cell in the first row govern ALL the behaviour in the column below in a pattern or, if you perfer, in MANY patterns.

A member of Pink Floyd said in an interview during a documentary on MUSIC PRODUCTION that the GAPS are absolutely as important as where there are NO gaps.

Let the VQC take the strain. The more you c it's beauty, the more it will give you (back).

You all amaze me.

 

Can't find the crumb, but VQC mentioned we can take a prime of our CHOOSING. The crumb you pulled is an example of this, using 5.

VQC !!Om5byg3jAU ID: 5f2245 Jan. 29, 2018, 8:21 a.m. No.3580   πŸ—„οΈ.is πŸ”—kun   >>3581 >>3582 >>3583 >>3586 >>3591 >>3596 >>3597 >>3775 >>3788 >>3841

Thank you for your patience.

The decision tree has parts.

The decision tree terminates upon finding a factor.

Pre-factorisation, trim trailing zeros (in binary) or equiv is to divide by two until odd.

This is 1 and c for primes.

This is the square root for squares.

This is the pair of factors that are not 1 and c for the product of two primes that are not the same numbers (not a square).

This is the pair of factors closest to the square root for products of more than two factors (not including 1 and c as factors).

The first part.

Determine if a square.

Find the square root d and remainder e.

First decision, if e is 0, return d.

Second decision, if(GCD(e,d)!=1) return GCD(e,d);

That is the end of part one.

 

Part two.

Part two is recursive (since the grid is effectively an overlay of the fractal nature of integers).

A recursive part should immediately make sense in hindsight or will come as less of a shock in due course, considering that the complexity claim was at most big oh of the natural log of the length of c in bits.

The inputs into part two are to factorise d and e.

The end result of part two is a tree, descending from c with branches d and e, then branches descending from d and e or each of their square roots and remainders.

Anonymous ID: 15411f Jan. 29, 2018, 8:44 a.m. No.3581   πŸ—„οΈ.is πŸ”—kun

>>3579

What changes? Is there a branch in the binary tree? Does the growth pattern remain the same?

 

>>3580

Oh, hello VQC! Wow, that is a lot to digest, but makes perfect sense. Please provide a moment for the 'in due course' bit to hit. Feels YUUGE. Much gratitude.

 

>New inputs! factorise d and e!

Excellent, was digging into the d-primes. Hadn't thought about the e-primes. ok!!

 

Question please? With the Einstein crumb.(and 2 c's), was going down the path of Eisenstein and Conway and Gaussian and Eisenstein integers. Wrong turn for Part 1?

Anonymous ID: dda169 Jan. 29, 2018, 9:07 a.m. No.3583   πŸ—„οΈ.is πŸ”—kun

>>3580

Welcome back! These hints are great

 

First stab at part one (using gmpy2 for fast bignums)

from gmpy2 import mpz, isqrt_rem, t_div, gcddef one(c): # Determine if a square if t_div(c, 4) 2: # Make it square? c = t_div(c, 2) # Find the square root d and remainder e d, e = isqrt_rem(c) # First decision, if e is 0, return d if e 0: return d # Second decision, if(GCD(e,d)!=1) return GCD(e,d) tmp = gcd(e, d) if tmp != 1: return tmp return None

ID: add73d Jan. 29, 2018, 9:34 a.m. No.3585   πŸ—„οΈ.is πŸ”—kun

O(log n) is still less than a second, or a few seconds, so it doesn't really matter.

 

So, I'm probably going to make a replica of this tree soon. Until then, here's the code I had. I really have no idea why it worked for the numbers it did.

 

https://pastebin.com/nD4F7AFa

 

This tree is actually an amazing idea, though.. Just keep going through the remainders and square roots until you hit a factor.

VA !!Nf9AmQNR7I ID: fc4336 Jan. 29, 2018, 9:45 a.m. No.3586   πŸ—„οΈ.is πŸ”—kun

>>3561

>>3562

>>3563 Factor Trees Crumb

>>3565 (N-1)a and na combined with Factor trees crumb? How to combine?

 

Thanks Baker for crunching the numbers for [delta]t. Seeing some very interesting patterns. You're right about the distance from T and t being too large in the RSA setting. Good progress on the (N-1)a and na ideas tho, and how they combine with the factor tree crumbs.

 

>>3576

Great find on this crumb!

 

>>3580

All right! Just saw this, VQC is back! Good to see you.

Anonymous ID: add73d Jan. 29, 2018, 10:09 a.m. No.3587   πŸ—„οΈ.is πŸ”—kun   >>3588 >>3633

Let's see if we can get to a factor of 145 by going down this tree shape.

 

145 = 12^2 + 1

 

12 = 3^3 + 3

3 = 1^2 + 2

 

1 = 0^2 + 1

 

Hmm, add 12's remainder and its remainder's remainder? That would give you five. Let's try another.

 

287 = 16^2 + 31

 

16 = 4^2 + 0

 

31 = 5^2 + 6

6 = 2^2 + 2

2 = 1^2 + 1

1 = 1^2 + 0

 

41 = 31+6+2+1+1, so this COULD work..

IseePatterns !kIkD/SqZ4s ID: 316b0b Jan. 29, 2018, 10:20 a.m. No.3590   πŸ—„οΈ.is πŸ”—kun   >>3592 >>3692 >>3697

Some preliminary work:

 

def rowForAB(a, b): c = ab d = int(math.floor(math.sqrt(c))) e = int(c - dd) n = int(((a + b)/2) - d) x = int(d - a) return (e, n, d, x, a, b)def recurse(c): e, n, d, x, a, b = rowForAB(1, c) if e == 0: return [d, c//d] if gcd(e, d) != 1: return [gcd(e, d), c//(gcd(e, d))] return [[e, recurse(e)], [d, recurse(d)]]

 

This can be used to study the branching.

Anonymous ID: dda169 Jan. 29, 2018, 10:31 a.m. No.3592   πŸ—„οΈ.is πŸ”—kun   >>3593

>>3590

Thanks. Reminds me how much I hate recursive programming too :)

If you're lazy like me and want to see the tree immediately you can cheat a bitprint(json.dumps(recurse(c), indent=4))This needs to go in OpenGL for the larger numbers!

Anonymous ID: dda169 Jan. 29, 2018, 10:46 a.m. No.3594   πŸ—„οΈ.is πŸ”—kun   >>3598 >>3603

>>3593

Filtering out some useless formatting, this is what I get for RSA100 61218444075812733697456051513875809617598014768503 13204334350125320769126278 2 6602167175062660384563139 7824221627472775882440665 1915100302336 1357695 5 271539 1383871 895 54 5 1 1 1 2 1 1 1 1 1 1 7 3 2 1 1 1 1 1 1 1 1 1 2 1 1 1 1 1 1 29 4 2 2 5 1 1 1 2 1 1 1 1 1 1 1176 2 588 2797181014427 1698898 1089 33 33 1303 7 3 2 1 1 1 1 1 1 1 1 1 2 1 1 1 1 1 1 36 6 6 1672477 628 3 2 1 1 1 1 1 1 1 1 1 25 5 5 1293 68 4 17 35 5 7 39020571855401265512289573339484371018905006900194 2 19510285927700632756144786669742185509452503450097

Anonymous ID: 15411f Jan. 29, 2018, 12:19 p.m. No.3598   πŸ—„οΈ.is πŸ”—kun   >>3599

>>3597

Good to see you Teach!

Exactly! Been picturing this, including ordering of the factors.

When we look up at the tree, we see primes. If there is something behind, obstructed, then what we are seeing can factor that integer.

>>3594

Nice. Thanks.

VA !!Nf9AmQNR7I ID: 06387b Jan. 29, 2018, 1:05 p.m. No.3601   πŸ—„οΈ.is πŸ”—kun   >>3603

>>3597

Great diagrams, Teach! Thanks.

 

>>3600

>teach, why d_2? Shouldn't they all be sqrt(d) and e?

I was wondering the same thing. Chris did say you could pre-factorize by dividing by 2 until odd. Then you take d and e and repeat until those branches terminate in a factor.

Anonymous ID: 15411f Jan. 29, 2018, 1:24 p.m. No.3603   πŸ—„οΈ.is πŸ”—kun   >>3604 >>3605

>>3602

Keep going anon!!

Was looking at your 'screencap', >>3594

playing a bit in Wolfram Alpha. Then you drop this.

What a big week.

 

etetoolkit.org

Title:ETE Toolkit - Analysis and Visualization of (phylogenetic) trees

Description:The ETE toolkits is Python library that assists in the analysis, manipulation and visualization of (phylogenetic) trees.

 

>>3601

>I was wondering the same thing. Chris did say you could pre-factorize by dividing by 2 until odd. Then you take d and e and repeat until those branches terminate in a factor.

That recursive part is starting to make sense, using the power of the VQC (on d and e).

Anonymous ID: dda169 Jan. 29, 2018, 1:45 p.m. No.3606   πŸ—„οΈ.is πŸ”—kun

>>3604

I screwed up the filename on the last one, both of those are RSA100. The 2048 one is apparently too large to post. You can have 1536 instead.

>>3605

I love these, just need to figure out how to change the background color! Tons of possibilities for layout too

Teach !!UgZAPoSXEk ID: 68a051 Jan. 29, 2018, 1:52 p.m. No.3608   πŸ—„οΈ.is πŸ”—kun   >>3612 >>3618

Good to see you all too!!!

Hello VA, Topol, PMA, CA, MA, Baker, (am i missing anyone).

 

>>3605

d_2 is the divide repeatedly by 2 like VA assumed.

I have one in js you could port:

 

function sqrt(c) {

if (c.isZero()) {

return c;

}

if (c.lesser(4)) {

return BigInt(1);

}

 

var n, p;

var high = c.shiftRight(1);

var low = BigInt.zero;

 

while (high.greater(low.add(1))) {

n = high.add(low).shiftRight(1);

p = n.square();

if (c.lesser(p)) {

high = n;

} else if (c.greater(p)) {

low = n.equals(1) ? n.add(1) : n;

} else {

break;

}

}

if (c.equals(p)) {

return n;

} else if (c.equals(high.square())) {

return high;

}

return low;

}

Anonymous ID: dda169 Jan. 29, 2018, 1:58 p.m. No.3611   πŸ—„οΈ.is πŸ”—kun   >>3697

>>3609

Hadn't heard of it either till your post inspired me to look for better options. There is an interactive viewer too!

 

The code I used (after changing dicts in IseePatterns code to tuples) is this. There are probably better waysdata = (c, recurse(c))t = Tree(str(data) + ";")ts = TreeStyle()ts.mode = "c"ts.arc_start = 0ts.arc_span = 360nstyle = NodeStyle()nstyle["shape"] = "sphere"nstyle["size"] = 3nstyle["fgcolor"] = "red"for n in t.traverse(): n.set_style(nstyle)t.show(tree_style=ts)#t.render("image.png", tree_style=ts)

Teach !!UgZAPoSXEk ID: 68a051 Jan. 29, 2018, 2:08 p.m. No.3615   πŸ—„οΈ.is πŸ”—kun   >>3616

>>3612

Sure is! I freaked out when I saw that Chris had posted.

Even in the tree diagrams there are patterns.

 

Considering we can ultimately express any c breaking it down to its most smallest pieces, then what are those pieces… 1 & 2 I think.

 

Example:

c = 145

c = 12^2 + 1

c = (223)^2 +1

c = (22(1^2 + 2))^2 + 1

c = (22(1^2 + 2*1))^2 + 1

 

Trying to figure out what this means now. But any number can be expressed as a recursive equation in the for:

2^j * (recursive part) + (recursive part)

where each recursive part starts from the root of 1,1.

Moving backwards towards a (or x) though, still unclear.

ProgramMathAnon !dSvrkhSLR6 ID: d1075e Jan. 29, 2018, 2:14 p.m. No.3616   πŸ—„οΈ.is πŸ”—kun   >>3617

>>3615

>we can ultimately express any c breaking it down to its most smallest pieces

I spent quite a bit of time over the weekend breaking down the (0,1) space for d[t] and a[t] changes. Didn't post the results as it seems a bit unnecessary, and I might be stating the obvious, but all the movements between records look like they be described by prime numbers.

 

At it's most basic, the numbers seem to work together in very obvious patterns.

AA/BO ID: 7fa95d Jan. 29, 2018, 2:35 p.m. No.3618   πŸ—„οΈ.is πŸ”—kun   >>3620 >>3621 >>3627

I might put a program together that takes in a public key and outputs the equivalent private key. I'll have a gap where the decision tree code will eventually go. That way, once we're there, we don't have to figure out how keys work in code at the last minute (and so far it seems quite complicated). Nobody has any objections to Java still, yes?

 

>>3608

>(am I missing anyone)

hi

Teach !!UgZAPoSXEk ID: 68a051 Jan. 29, 2018, 2:43 p.m. No.3623   πŸ—„οΈ.is πŸ”—kun   >>3626

Will do, let me fix it - might be a couple of hours sorry (gotta check in with the real world occasionally).

In the meantime, here's some slides from my security lecture, not that its nothing you won't already find on wikipedia or stackoverflow.

Teach !!UgZAPoSXEk ID: 68a051 Jan. 29, 2018, 2:51 p.m. No.3625   πŸ—„οΈ.is πŸ”—kun

RSA:

Steps to produce private key (n,d) from public key (n, e).

 

1) factor n into 2 primes, p, q

2) compute phi = lowest_common_multiple(p-1,q-1) // euclid algo

3) compute d = modular_inverse(e, phi) // use ext. euclid algo

 

Private key is (n, d).

Anonymous ID: 7fa95d Jan. 29, 2018, 2:53 p.m. No.3626   πŸ—„οΈ.is πŸ”—kun   >>3627

>>3623

Oh I already know that stuff. I was the one who wrote those guides for the lurkers who didn't know anything several threads ago and then stopped because I didn't understand the grid well enough at the time myself. I'm just talking about how you're meant to import keys into Java and get the modulus and exponent out of them. If you've already got that working I won't need to, but I think I can figure it out if you haven't.

Anonymous ID: dda169 Jan. 29, 2018, 3:18 p.m. No.3627   πŸ—„οΈ.is πŸ”—kun   >>3628 >>3635

>>3618

>>3621

>>3622

>>3626

Ok so I've had this ready to go since december… Good time to drop! Please keep it safe and don't go destroying the internet

 

Presenting sonic_rainboom.py

https://pastebin.com/vNqnPRJR

 

Full support for PEM certificates and certificate requests, armored PGP public keys, SSH public keys, and verification of results before outputting private key. And ECC of course.

Ponies not included

 

Have fun

Anonymous ID: dda169 Jan. 29, 2018, 3:34 p.m. No.3630   πŸ—„οΈ.is πŸ”—kun   >>3631

>>3628

Yep. Solution goes in the factors function.

If you generate your own keys you can test it with the private keys like this

class FakeVQC: def _load(self, key): f = open(key, 'rb') key = serialization.load_pem_private_key(f.read(), None, default_backend()) return key.private_numbers() def factors(self, c): priv = self._load('rsa/key.pem') return priv.p, priv.q def ecpoint(self, curve, x, y): priv = self._load('ecc/key.pem') return priv._private_value

Anonymous ID: dda169 Jan. 29, 2018, 4:15 p.m. No.3637   πŸ—„οΈ.is πŸ”—kun   >>3638

>>3635

No, this is just boring wrapper code to directly read the most common types of public keys, and output correctly formatted private keys. For some reason most crypto libraries have no way to just add private numbers to a public key (since its considered impossible, who needs functions for it). Just so we don't have to code it later!

The final ingredient is missing

ID: add73d Jan. 29, 2018, 4:18 p.m. No.3638   πŸ—„οΈ.is πŸ”—kun   >>3639

>>3637

Glad I didn't have to implement that. And you're right, it's so asinine that they wouldn't have functions for that. There are also ways to crack public keys due to noobs not configuring stuff right. If they have a bad RNG you can test some factors from similar keys that have been cracked against them to see if they are a factor. There was a professor who did this and he cracked a ton of them.

Anonymous ID: dda169 Jan. 29, 2018, 4:32 p.m. No.3639   πŸ—„οΈ.is πŸ”—kun   >>3640

>>3638

Yeah and its tedious to do by hand even when you have the factors (especially PGP, the keys this spits out can be used right away). I wanted this available for when shit hits thef fan, and its a good way to verify our factoring algorithm against real keys as well (this could be considered illegal if they are not yours, fyi). This is the most obvious proof I can think of, right after solving all RSA numbers in a few minutes.

The "keep it safe" bit was serious too, please create backups!

Anonymous ID: dda169 Jan. 29, 2018, 4:38 p.m. No.3641   πŸ—„οΈ.is πŸ”—kun   >>3642 >>3643 >>3682

>>3640

I am not a lawyer. Hence the "could be". I'm betting someone will make the argument that cracking the Verisign root key shows malicious intent or something, DMCA laws and all. Would rather not be the one to defend that in a courtroom claiming "but mathematics!". Not disagreeing, just saying.

ID: add73d Jan. 29, 2018, 4:47 p.m. No.3642   πŸ—„οΈ.is πŸ”—kun   >>3644

>>3641

I have no problem with starting some shit. Cryptocurrency needs to be shown as the house of cards that it truly is. Do you think bitcoiners will become distrustful of the genuine security of crypto when we get a working algorithm of this tree, or do you think they will go even further into their delusion?

Anonymous ID: dda169 Jan. 29, 2018, 4:48 p.m. No.3643   πŸ—„οΈ.is πŸ”—kun

>>3640

>>3641

Just to clarify, cracking RSA is completely fine, and can be proven without using keys you do not own as proof. Posting "someone elses" private keys, even if they are just numbers is a grey area imo. What you do is none of my business, but am pointing it out anyway.

Anonymous ID: dda169 Jan. 29, 2018, 4:58 p.m. No.3644   πŸ—„οΈ.is πŸ”—kun   >>3645

>>3642

Obviously the proof will spread like wildfire and everything based on broken crypto will have a bad time. Nothing can stop that.

The tree we're working on now is not gonna put a dent in any cryptocurrencies until we get the crumbs on how elliptic curves are the same as prime numbers (or something). When that happens and ECC is broken as well, everyone will shit their pants, including bitcoiners, as there are no implemented alternatives ready to go, anywhere.

Anonymous ID: 7fa95d Jan. 29, 2018, 5:17 p.m. No.3645   πŸ—„οΈ.is πŸ”—kun   >>3676

>>3644

I can't wait for the crazy shit Chris said we would do when we're ready to turn this into a company or whatever he called it, but, I've got to be honest, causing mass world hysteria sounds quite entertaining too, even if we're also affected ourselves. I bet CNN etc will try to act like they have any idea what they're talking about and act like they're super smart while saying absolutely nothing of substance (like the "hacker known as 4chan" thing), and all those YouTubers will try to make sense of it while the ones who use their accounts to teach people math will fumble around with it for a while.

 

Actually, now that I think about it, people might actually kill themselves over this when crypto goes under. A few did when it tanked recently. Fuck. I'm definitely still on board because this is inevitable and if anyone should do it it should be people like us who have good intentions, but I point this out because it should hopefully discourage anyone from taking credit for it publicly.

VA !!Nf9AmQNR7I ID: c14c81 Jan. 29, 2018, 6:19 p.m. No.3647   πŸ—„οΈ.is πŸ”—kun   >>3648

>>3602

So I have a question for everyone: I'm looking at these factor trees (nice job, Anon!) and seeing all the smaller factors (the leaves?) medium size factors (branches) and larger factors (main trunks). Are these larger factors all prime?

VA !!Nf9AmQNR7I ID: fc4336 Jan. 29, 2018, 6:48 p.m. No.3650   πŸ—„οΈ.is πŸ”—kun   >>3651

>>3649

I see where you're going Baker. Sum of (1,c) factors can be used to create all the remaining factors? However, checking your math wouldn't it be 12/2 = 2 and 6. Then 6 = 3 and 2? So the termination points would be 1, 2, 2, 3? Could be wrong here, just trying to make sure I understand what you're hinting at. Can you elaborate on your idea?

Anonymous ID: dda169 Jan. 29, 2018, 7:50 p.m. No.3657   πŸ—„οΈ.is πŸ”—kun   >>3658

>>3655

Checked! I will cook up some more tomorrow if the whole thing isn't broken already. Seem to have made more art during this adventure than actual breakthroughs, hope they're inspirational

>>3653

>>3654

You're just killing it with these, did you make them by hand? I might steal your color scheme. Awesome stuff

VA !!Nf9AmQNR7I ID: fba0a4 Jan. 29, 2018, 7:52 p.m. No.3659   πŸ—„οΈ.is πŸ”—kun   >>3660

>>3654

So are you saying we can find one of the prime factors by adding up the "leaves" or "outer ring" of smaller factors and then use that to find the other prime factor? That would be cool!

ID: add73d Jan. 29, 2018, 7:55 p.m. No.3660   πŸ—„οΈ.is πŸ”—kun   >>3661 >>3662 >>3675

>>3659

If you find one factor, you win.

 

c/a = b

 

But yeah, generally it seems adding up the leaves on the bottom gives a.

 

Algorithm would basically generate the entire tree, and if it doesn't find a factor, it needs to trim the zeroes in different places until the leaves at the end add up to the factor.

ID: add73d Jan. 29, 2018, 7:57 p.m. No.3661   πŸ—„οΈ.is πŸ”—kun   >>3664

>>3660

Given how fast square roots are, I'd say there's hardly an optimization issue in generating the tree.. so once the algorithm is smart enough, it's over.

 

>>3648

Say, just how long did it take you to generate the rsa100 tree? And what language?

Anonymous ID: dda169 Jan. 29, 2018, 8:20 p.m. No.3664   πŸ—„οΈ.is πŸ”—kun   >>3665 >>3666 >>3667

>>3656

Just for you

>>3661

Its stupidly fast, even with unoptimized python code on a single core. Generating the images takes way longer

RSA100 tree without removing trailing zeroes (binary) is 0.3ms

RSA100 tree with all trailing zero bits removed on every branch is ~1ms (can probably cut this in half compared to my current code)

RSA2048 tree with zero bits removed is about 2.4ms…

 

The full RSA2048 circular image which is 18673x18723 and too large to post takes about half a minute.

 

Will see what happens if we need to remove one bit at a time and try all combinations of every branch though

VA !!Nf9AmQNR7I ID: fc4336 Jan. 29, 2018, 8:38 p.m. No.3667   πŸ—„οΈ.is πŸ”—kun   >>3668 >>3669

>>3664

Thanks Anon!

 

>>3666

Interesting Malicious Digits, Checked!

 

So we sum all the "leaves" (termination points) in the whole circle/tree to find one prime factor? That should be easy to verify for you programAnons. Is that your idea Baker?

Anonymous ID: dda169 Jan. 29, 2018, 8:57 p.m. No.3672   πŸ—„οΈ.is πŸ”—kun

>>3670

Yeah but thats even more annoying when dealing with recursive problems. Easier to write it with recursion and refactor it with tail-calls and accumulators and shit afterwards, which says a lot.

Anonymous ID: dda169 Jan. 29, 2018, 9:14 p.m. No.3674   πŸ—„οΈ.is πŸ”—kun   >>3676

>>3673

Good point. Have to wait till its public knowledge or obscure it really well. Tree-based procedural generation of landscapes from random RSA keys or something.

Wouldn't call myself a musician, I just mess around with synths tbh

Anonymous ID: 7fa95d Jan. 29, 2018, 9:40 p.m. No.3676   πŸ—„οΈ.is πŸ”—kun   >>3678

>>3666

Man, you keep getting trips all the time. Were you working on a Java version or did you want someone else to?

 

>>3674

Yeah, I don't know if you've thought about it much, but consider >>3645 this. Once it's all over the media and everything people might be able to get away with it. I've been trying to think of ways to use the grid to create music, too.

>Wouldn't call myself a musician, I just mess around with synths tbh

There are people who consider themselves musicians who don't even know how to mess with synths, so I hope you don't say that out of pessimism. I'm a little more invested in it than that. I have a thing recorded and mixed professionally, and one of the song names is a subtle reference to Q. It's not out yet, but hopefully it's subtle enough that all 5 people who will ever hear it don't think I'm an evil internet hacker nazi who masturbates to anime.

Anonymous ID: dda169 Jan. 29, 2018, 9:56 p.m. No.3678   πŸ—„οΈ.is πŸ”—kun

>>3676

There is all kinds of applications for this that we can't even imagine yet. Guess its called the tree of knowledge for a reason… can't wait to se where we're going, now that the tree is taking shape my mind is already going crazy with possibilities

No pessimism here, just a fun hobby I hope to get good at someday, if not its still fun! Good luck with your album/EP!

 

>evil internet hacker nazi who masturbates to anime.

Did I forget how deep this rabbit hole is again? Yay for reminders

ProgramMathAnon !dSvrkhSLR6 ID: 82ada7 Jan. 29, 2018, 9:59 p.m. No.3680   πŸ—„οΈ.is πŸ”—kun

>>3677

Also added prime factors for d[t] and a[t] analysis. See pic attached for c=481.

 

The d[t]-d primes column really clarified for me where the values are we are searching for.

 

Also, if you look at the (40,1,209) record, the d[t]-d value can be calculated by (xx-f)*(n-1). Perhaps the tree factors are a way to simply remove certain factors from the value?

Teach !!UgZAPoSXEk ID: 68a051 Jan. 29, 2018, 10:17 p.m. No.3684   πŸ—„οΈ.is πŸ”—kun

Btw, here's my algorithm for calculating private key from 2 primes, written in js, not using BigInts yet. Its very simple.

 

var p = 61;

var q = 53;

var e = 17;

 

var p1q1 = (p-1)*(q-1);

var lcm = (p1q1)/xgcd(p-1, q-1)[2]

var mi = xgcd(e, lcm);

var d = lcm + mi[0];

 

console.log(d)

 

function xgcd(a,b) {

if (b == 0) {

return [1, 0, a];

} else {

temp = xgcd(b, a % b);

x = temp[0];

y = temp[1];

d = temp[2];

return [y, x-y*Math.floor(a/b), d];

}

}

Anonymous ID: dda169 Jan. 29, 2018, 10:25 p.m. No.3686   πŸ—„οΈ.is πŸ”—kun   >>3687

>>3685

>>3681

My only thought so far is adding every possibility (no division, divide once, twice etc.) as a separate branch and summing the leaves for every case. It should still be pretty quick considering how small the trees are, but a pain to code.

Topolanon +++ !!!ZjI4YmE4MzE5Yjlm ID: 8e44f0 Jan. 29, 2018, 11:25 p.m. No.3691   πŸ—„οΈ.is πŸ”—kun

>>3683

You see, your honor, if I may call you that, I was LARPing so hard as someone with a clue that I ended up getting one. I didn't mean to have such a raging clue and showing it to the other boys, who then got super excited about my clue but then got their own clues so we followed theirs. Also, why are there two of you and who took my rum?! WHY IS IT GONE?!

Anonymous ID: dda169 Jan. 29, 2018, 11:39 p.m. No.3692   πŸ—„οΈ.is πŸ”—kun   >>3694

>>3689

The credit goes to >>3590. The only addition is removing all trailing zero bits (divide number by two for as many times as needed until it is odd). This is one tree. Using the numbers as is and not dividing at all is another (original code). I posted both. There are lots of possibilities in between.

If >>3654 is right, we don't know which numbers have to be divided, and how many times, so this a bounded logarithmic number of possible trees. Since the trees are small (computationally speaking), generating all of them and checking if the sum of all leaf nodes are a factor of c should still be pretty quick (seconds.. ish). One of these trees is the solution. This is the part that is hard to code.

If we do that, we may find ways to decide how many times and when to divide each number, and not have to try every tree.

Anonymous ID: dda169 Jan. 29, 2018, 11:57 p.m. No.3695   πŸ—„οΈ.is πŸ”—kun   >>3696

>>3694

So… my code has a bug, I have been removing zeros from only the e values so far.

 

Here are trees with trailing zeros removed from both e and d, just e, and just d (third image is the one you asked for). I haven't added up the leafs and checked these yet

Anonymous ID: dda169 Jan. 30, 2018, 12:06 a.m. No.3697   πŸ—„οΈ.is πŸ”—kun   >>3773

>>3696

Combination of >>3590 and >>3611. With some divide by two code added (actually just stripping off zero bits in binary by shifting right) for e and d. And some coloring code mixed in (primes have a red dot)

Best way I found to visualize trees so far

ID: add73d Jan. 30, 2018, 2:11 a.m. No.3701   πŸ—„οΈ.is πŸ”—kun

I created a program that generates the d branch separately because I recognized a pattern where, whichever variable is even (d or e) is the branch where everything is trimmed.

 

This truly is log n if I ever saw it. Instantly generates the tree even for gigantic RSA numbers.

MinecraftAnon !!QXqSZ2ev8. ID: 666a85 Jan. 30, 2018, 1:33 p.m. No.3706   πŸ—„οΈ.is πŸ”—kun   >>3707 >>3708

Am I the only one skeptical that this 'solution' doesn't use the original VQC at all, that it essentially boils down to 'factorize the square root and it's remainder recursively'? And it all just neatly adds up to a massive prime number? And goes from "This is my last message on 8ch" to "disregard the last 2 months, this is the answer"?

Anonymous ID: 7fa95d Jan. 30, 2018, 2:02 p.m. No.3708   πŸ—„οΈ.is πŸ”—kun

>>3706

The grid is meant to have many uses, so it might be used to connect the logic of factoring numbers with elliptic curve cryptography. Also, one of the early crumbs said something like "you factor a number with two input variables d and e". The whole time this was meant to revolve around d and e.

VA !!Nf9AmQNR7I ID: fba0a4 Jan. 30, 2018, 3:16 p.m. No.3718   πŸ—„οΈ.is πŸ”—kun   >>3719 >>3720 >>3721

>>3709

Baker, thanks for your good work, and thanks for keeping connected with Chris! Can you give a quick explanation on why you stopped at 10 for the right branch, leaving d=3 and e=1? Am I reading that correctly? Just want to make sure I'm following correctly.

 

N, or a or b for (e,n) has gotta be one of those large primes in the factor tree. We should take an RSAc from a solved example, run the factor tree program, and see if n or a or b pops up in the (1,prime). Thoughts?

 

>>3712

Thanks for remembering PMA! F can be constructed from c,e,d. In row one it helps derive x. In n>1 still not working. But if x in (e,n) is the same as in (e,1) maybe it can help us locate the prime x.

ID: add73d Jan. 30, 2018, 3:26 p.m. No.3719   πŸ—„οΈ.is πŸ”—kun   >>3723 >>3730

>>3718

I made tree generation stop when every number on a level of a branches is less than or equal to 3, because the sum of their square roots and remainders is always the same if you branch out any more.

 

E.G

 

3 = 1^2 + 2

2 = 1^2 + 1

1 = 1^2

 

The sum is the same as the original number, so it can't branch any more after that.

VA !!Nf9AmQNR7I ID: fba0a4 Jan. 30, 2018, 3:36 p.m. No.3722   πŸ—„οΈ.is πŸ”—kun   >>3723

Here's a big picture idea:

Right now we're working on part 2, the factor tree.

Next, part 3: VQC meets factor tree.

 

At (1,c) in n is going to be the largest possible, because a and b are farthest apart.

At (prime solution) n will always be less because a and b are closer to d.

Factor tree allows us to see all prime factors, correct? (Could be wrong here)

(1,c) has highest n, a and b max distance.

(Prime) always has lower n, closer to f for a and b.

Factor tree allows us to quickly identify primes and test them for compatibility with c.

Thoughts?

And we can use (e,1) to help us find x?

VA !!Nf9AmQNR7I ID: fba0a4 Jan. 30, 2018, 3:45 p.m. No.3723   πŸ—„οΈ.is πŸ”—kun

>>3722

Should read

>(Prime) always has lower n, closer to d for a and b.

 

>>3719

Good explanation, thanks!

>>3720

I like triangles. /_\ especially when they are broken down like this:

+++

++

+

0

Bye bye scumbags! Our math triangles helped break your evil triangle HAHAHA

ID: add73d Jan. 30, 2018, 4:09 p.m. No.3725   πŸ—„οΈ.is πŸ”—kun   >>3726 >>3727

{e:n:d:x:a:b} + c makes the VQC a 7-dimensional grid. We've been analyzing an object with many dimensions that has been reduced to a 3 dimensional object.

 

Now if only I was a 7-dimensional being.

 

hooktube.com/watch?v=Q_B5GpsbSQw

hooktube.com/watch?v=eyuRLmCphHc

hooktube.com/watch?v=S-yRYmdsnGs

VA !!Nf9AmQNR7I ID: c00f3b Jan. 30, 2018, 5:49 p.m. No.3734   πŸ—„οΈ.is πŸ”—kun

>>3733

Checked!! 3,7,3,3 All very good numbers. How does 7 fit into Tesla numbers?

 

Post some triangle images here too Topol. Visited EZBake, me need some math memes here too.

VA !!Nf9AmQNR7I ID: 06387b Jan. 30, 2018, 10:50 p.m. No.3744   πŸ—„οΈ.is πŸ”—kun   >>3745

Many Questions:

Can the factor tree help us find (1,c) and (prime)? Or match them to number tree?

Can we factor (1,c) and find primes to match for a and b using the tree?

Can we use factor tree and (e,1) to get what we need?

We need to know the factors AND how to use the grid.

STEP 3. Tree + VQC

ID: add73d Jan. 31, 2018, 12:38 a.m. No.3745   πŸ—„οΈ.is πŸ”—kun

>>3744

As he stated, it gets even more complicated to factor larger numbers. When you try to sum the last levels for large numbers as I did in the examples, the number is too small to be a factor.

 

7463 = 228^2 - 211^2 (17*439)

7463 = 3732^2 - 3731^2 (1*7463)

 

7463 appears in (67, 3436, 43).

7463 appears in (67, 142, 35).

 

It's interesting that the t value it first appears in is 43, and the first branch of the right factorization tree starts with 43 (86 / 2). The t difference is 8, which also appears in the tree.

Anonymous ID: add73d Jan. 31, 2018, 3:05 a.m. No.3748   πŸ—„οΈ.is πŸ”—kun

I'm going to contribute to putting together what we know about the grid tomorrow.

 

There are almost a hundred different concepts this touches upon.

Hyperspace, difference of squares, square roots, golden ratio, platonic forms, etc.

 

Something interesting. Ever wonder why diff of squares is always an odd number?

Every square is a sum of odd numbers.

 

4 = 1 + 3

9 = 1 + 3 + 5

16 = 1 + 3 + 5 + 7

25 = 1 + 3 + 5 + 7 + 9

36 = 1 + 3 + 5 + 7 + 9 + 11

49 = 1 + 3 + 5 + 7 + 9 + 11 + 13

 

So, when you are taking the difference of squares, you are really just taking elements out of this summation.

 

9 - 4 = 5

16 - 9 = 7

25 - 16 = 9

36 - 25 = 11

49 - 36 = 13

 

Perhaps it is here where a solution lies. To solve RSA one needs to master the number of line of squares, and thus, the set of odd numbers. It doesn't sit right with me that after all these years, this hasn't been done yet.

Anonymous ID: add73d Jan. 31, 2018, 3:41 a.m. No.3749   πŸ—„οΈ.is πŸ”—kun   >>3750

The RSA problem is basically to find the two different combinations of squares whose differences make the number. The amount of combinations of squares that can be made corresponds to how many factorizations a number has, for odd numbers.

 

For 145, it's 73^2 - 72^2. These are easy to calculate for any number, becayse 1 is always a factor. And because these two squares are adjacent, the combination of them simply makes 1 * c. So, when you look at a different factorization, the squares are never going to be adjacent.

 

145 = 17^2 - 12^2.

 

17^2 = 1 + 3 + 5 + 7 + 9 … + 33

12^2 = 1 + 3 + 5 + 7 + 9 … + 23

 

So, again, when you take the difference of squares you are just removing elements. Thus, factorization can be restated as finding what two odd sums' differing elements.

 

To factorize, all you have to do is find the sum pictured. To calculate the smal square, simply calculate the sum all the way to the first element, and calculate the sum all the way to the last element to make the big square.

Anonymous ID: d6f59c Jan. 31, 2018, 7:08 a.m. No.3751   πŸ—„οΈ.is πŸ”—kun   >>3752 >>3754 >>3757 >>3788

Found pattern in (e,1) and (f,1) records. Using /_\ for delta for example:

/_\ d(e) = d( e, n, t) - d(e, 1, 1)

Then

/\d(e) = /\ a(e) + /_\x(e)

/\d(f) = /\ a(f) + /_\x(f)

After testing large number of combinations both A and X exhibit occasional negative /_. I was working on way to try and solve for x or a using differences between e and f but grid continues to hide its secrets.

 

New hint from QVC.

Recursion gives the pattern of triangle numbers used to construct the square that added to c makes the square with sides d+n.

MM ID: 12fd55 Jan. 31, 2018, 8:01 a.m. No.3754   πŸ—„οΈ.is πŸ”—kun   >>3755 >>3756 >>3765

>>3751

Secrets secrets, #NoMoreSecrets!

Thanks anon, that crumb is yuge!

 

>>3752

Nice!

 

So many crumbs to reconcile still…

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

 

>>1447

>In the meantime, consume anything you can on what drew mathematicians to believe elliptic curves and modular forms were the same object.

That was an interesting dive, still digging.

 

>>12

>Let's have some fun.

 

And, for a little VA enthusiasm injection: anons, time to get the triforce gloves on!

And speaking of triforce, note the dollar. We will be the change! (just my Β’Β’)

IseePatterns !kIkD/SqZ4s ID: 316b0b Jan. 31, 2018, 10:58 a.m. No.3758   πŸ—„οΈ.is πŸ”—kun

The triangle numbers are interesting.

 

To generate the A's for an odd e, you compute

(e + 1)/2 + 2 * (t * (t - 1)).

 

And the function for even e D's its:

e/2 + 2 * (t * (t - 1))

 

Which is (e + 1) / 2 + 4 * T_(n - 1) (A for odd e)

and e / 2 + 4 * T_(n - 1) (D for odd e)

Anonymous ID: 06ef9d Jan. 31, 2018, 11:05 a.m. No.3759   πŸ—„οΈ.is πŸ”—kun

Okay I may have found a type of solution for 145.

 

145 = (12)^2 + 1

= (3^2 + 3)^2 + 1

= 3^4 + 2*3^3 + 3^2 + 1

= 81 + 54 + 9 + 1

 

= (81 + 9) + (54 + 1)

= (90 + 55)

GCD = 5.

 

or = (81 + 54) + (9+1)

= (135 + 10)

GCD = 5.

 

If we keep the terms separate maybe we can get it to work. Moreover I've looked at a bunch of trees and I think we could terminate the trees at either 1, 2 or 3.

MM ID: ed48a1 Jan. 31, 2018, 1:17 p.m. No.3760   πŸ—„οΈ.is πŸ”—kun

>>3755

Right! I'm mostly caught up with you all at this point, still chasing down some bits here and there.

 

Oh, this crumb too has been on mind…

>>699

>One Row to Rule them All.

>A column that contains ALL and is the KEY to ALL the patterns.

>What are the patterns in COLUMN ZERO?

Did we complete this one? I know we did (0,0). Not sure I have that question fully answered yet.

 

And for the Column 0, it appears from the first few D and A grow in linear fashion without interleaving, will look more this evening. Using excel images such as attached to start, and PMA's output.

 

>>3756

You bet! So many crumbs. Was looking at the one about imagining the grid coming up at you, and this being another dimension (the complex I think it was). So much just about sq rt of -1.

 

Last night, was going back to some work by Hagen Kleinert, a German professor. Was going to start a separate thread, but will just point here. A 2001 paper:

https:/ /arxiv.org/pdf/quant-ph/0106095.pdf

Towards a Simulation of Quantum Computers by Classical Systems

..and if you want to listen to a video by Prof. KIeinert, this is tough quality but super. His energy is infectious:

San Marino 2011

Lecture 21: The Purely Geometric Part of Dark Matter. A Fresh Playground

for String Theory

Prof. Hagen Kleinert, Germany

http://www.world-lecture-series.org/san-marino-2011-purely-geometric-part-dark-matter

or download the mp4:

www.world-lecture-series.org/san-marino-2011

ProgramMathAnon !dSvrkhSLR6 ID: d1075e Jan. 31, 2018, 2:28 p.m. No.3761   πŸ—„οΈ.is πŸ”—kun   >>3762

I know we're currently working on trees, but if anyone has an interest in reviewing d[t] and a[t] output:

 

c145 pastebin.com/mJcE0CDy

c481 pastebin.com/yx1ym1C0

c533 pastebin.com/U4KDsUnv

c785 pastebin.com/Kthbi32S

 

both (1,c) and (a,b) records run against (e,1), (0,1), and (f,1).

VA !!Nf9AmQNR7I ID: fba0a4 Jan. 31, 2018, 5:46 p.m. No.3765   πŸ—„οΈ.is πŸ”—kun

>>3754

Triforce gloves at the Ready, Lads! Thanks for the enthusiasm injection, MM! Gannon is going down with those wooly gauntlets. Link related, old school Legend Of Zelda final boss.

https:/ /youtu.be/O33Xybjegtc

 

>>3762

>>3763

>>3764

Lol, Wut? There is a LOT of info there, thanks PMA! I'll look for patterns in it a bit later tonight.

Teach !!UgZAPoSXEk ID: 68a051 Jan. 31, 2018, 7:04 p.m. No.3766   πŸ—„οΈ.is πŸ”—kun   >>3767 >>3768 >>3769

Ok guys, so it doesn't work for all numbers, but it does for a lot how about this…

 

recurse through the d and e tree, at some point, a d value passed in will be equal to x in our original problem.

so each iteration, calculate gcd(d*d + e, orig_c) for each branch of the tree.

 

Like I said, it doesn't work for all values of c, but it relies on the xx+e = 2na & dd+e = ab common factor of a.

 

I'm trying to figure out the cases when it doesn't work, and trying to solve those cases individually.

 

I'm also going to write up a big int version and test on some larger numbers.

Teach !!UgZAPoSXEk ID: 68a051 Jan. 31, 2018, 7:10 p.m. No.3769   πŸ—„οΈ.is πŸ”—kun   >>3770 >>3771

>>3766

Correction, gcd(d*d + orig_e, orig_c), sorry math is hard

 

>>3767

You'll know because gcd will be greater than 1.

 

>>3768

At the moment, i'm missing several cases, since i'm not testing the 2's we're extracting, or the root of the perfect squares - going to do that next.

But I'm testing each and every d/2 value on the way down, yes.

VA !!Nf9AmQNR7I ID: fba0a4 Jan. 31, 2018, 9:04 p.m. No.3774   πŸ—„οΈ.is πŸ”—kun   >>3775 >>3776

>3131

>3580

 

Still looking at c=145. Don't know why, but have the gut feeling the answer is starting us in the face with this example. Combine the factor tree knowledge (leaf sum?) with n=na and we can somehow get x or a.

VA !!Nf9AmQNR7I ID: fc4336 Jan. 31, 2018, 9:29 p.m. No.3778   πŸ—„οΈ.is πŸ”—kun   >>3780

>>3776

>>3777

Checked 666 and 777? WTF Baker is on a roll!!! Here's a prophecy for the occasion:

"I see great and malicious confusion upon you, Baker. But the 777's of YHWH will deliver you and lead you to peaceful living space"

ID: add73d Jan. 31, 2018, 9:33 p.m. No.3779   πŸ—„οΈ.is πŸ”—kun   >>3782

Here's a method for generating triangular numbers: https://pastebin.com/jPTTpgjE

 

For some reason Wikipedia made it look complicated by using Sigma Notation but T(n) is just (n(n+1)) / 2

Anonymous ID: 33fd02 Jan. 31, 2018, 9:48 p.m. No.3782   πŸ—„οΈ.is πŸ”—kun   >>3783 >>3785 >>3786 >>3799

>>3779

 

Hey fags, popping back in. I'm the guy from >>934 back in RSA #6. I think I was the first to bring up triangular numbers and I demonstrated a simple transform on them.

 

I don't think anyone realky paid much attention to the posts, which I spent a fair amount of time making as straightforward as possible, so if any of you don't have much to do right now, maybe take 15 min and work through my example.

 

Good to see that faggot VQC finally show back up again.

VA !!Nf9AmQNR7I ID: f2af50 Jan. 31, 2018, 10:28 p.m. No.3784   πŸ—„οΈ.is πŸ”—kun   >>3786

>>3780

>the 777's of YHWH will deliver you and lead you to peaceful (((living space)))

You missed my funny reference to Lebensraum. I made that joke just for you, Baker. Geez, Anon. Not even a Hitler fan over here.

BTW, good work faggot.

Weaponized Autism at work.

8Chan Autists On The Job.

Teach !!UgZAPoSXEk ID: 68a051 Jan. 31, 2018, 10:29 p.m. No.3785   πŸ—„οΈ.is πŸ”—kun   >>3791

>>3782

Hey anon, will you do a walk-through with a non-perfect square this time?

I re-read your post, and I'm in agreement with everything you said, just want to see a non-perfect square example, and if it works, i'll code it up.

Anonymous ID: 65f089 Jan. 31, 2018, 10:36 p.m. No.3787   πŸ—„οΈ.is πŸ”—kun

>>3752

 

Hey yea that is pretty cool. You have transformed a*b into a sum of consecutive odd numbers where a is the number of terms and b is the midpoint:

5*29 = 25 + 27 + 29 + 31 + 33 = 145.

 

The dots you drew can also be drawn similary to triangular numbers, but you are only adding the odd rows:

 

___

_e_

eee

eeeee

eeeeeee

VA !!Nf9AmQNR7I ID: 32324c Jan. 31, 2018, 11:14 p.m. No.3788   πŸ—„οΈ.is πŸ”—kun   >>3794

The trippy thing is that the difference of squares = triangles. >>3751

 

What a cool connection!! VQC is correct that our language and understanding of numbers is lacking currently. Squares relate to triangles relate to circles relate to trees.

 

>>3580

Fractals:

>(since the grid is effectively an overlay of the fractal nature of integers).

 

Part One:

>First decision, if e is 0, return d.

Second decision, if(GCD(e,d)!=1) return GCD(e,d);

 

So the GCD between d and e is the end goal of Part 1? What do we use this for? Ideas?

 

Part 2:

>The inputs into part two are to factorise d and e.

The end result of part two is a tree, descending from c with branches d and e, then branches descending from d and e or each of their square roots and remainders.

 

So the terminating factors are a big key. How so? We are working to understand. This is working from the opposite way we were doing with the VQC. Instead of building factors for c, we're breaking c into factors. Gotta be able to go both ways? Build or Break down?

 

Part 3: >>3709

We will combine factor tree knowledge with VQC knowledge. Then solve this.

 

Summary up to this point, let me know what should be added.

Anonymous ID: 33fd02 Jan. 31, 2018, 11:41 p.m. No.3791   πŸ—„οΈ.is πŸ”—kun   >>3792 >>3793

>>3785

I believe VQC called direct attention to the e == 0 row for 1 x c^2. So no real point with a non-square number because c^2 is (obviously) always square.

 

>>3786

Each n calculated using the triangular number approach is also a perfect square * 2.

 

It's a fucking miracle when you see it working. For those following along at home, you can calculate the height (I call it index) of the triangular number of the n value in e == 0 for c^2 by typing the following into your desktop calculator:

 

Using our trusty 5 x 29 145, c^2 21025, first we calculate n. Calculator prompt is >:

 

> 21025 + 1 =

> / 2 =

> - 145 =

 

n = 10368

 

> 2 - 10368 =

> * 8 =

> * -1 =

> +16 =

> sqrt

> - 4 =

> / 4 =

 

height = 71

 

(on my PC now instead of mobile)

Anonymous ID: 33fd02 Jan. 31, 2018, 11:53 p.m. No.3792   πŸ—„οΈ.is πŸ”—kun   >>3793 >>3801

>>3791

> height = 71

The reason I call this an index is because it's zero-based like programming languages, so the first element is element 0.

 

72 might be an interesting number for c = 145 as well because of this (i.e., normal counting based where 1 is the first element).

Anonymous ID: 65f089 Feb. 1, 2018, 12:10 a.m. No.3794   πŸ—„οΈ.is πŸ”—kun   >>3798

>>3788

>Second decision, if(GCD(e,d)!=1) return GCD(e,d);

 

>So the GCD between d and e is the end goal of Part 1? What do we use this for? Ideas?

 

If GCD(e,d) is not 1, that means e and d have a common factor, but then this common factor divides c because c = d*d + e. So this line of pseudocode tests for this possibility, where you will happen to get factor of c right away.

MM ID: ed48a1 Feb. 1, 2018, 1:36 a.m. No.3799   πŸ—„οΈ.is πŸ”—kun

>>3782

Your insights in RSA#6 were superb, thanks for popping back in! And what a co-In(c)iden(c)e, was working through column 0 more this eve (and Eve will see all Bob and Alice have been chattering about soon!).

 

>>3789 Noted!

VA listed a few (0,n) patterns here >>1542 and here >>1544.

 

And in #6 from TLA there's >>1548

Had missed the 'closed under multiplication' and 'Gaussian integers' back then. Making much sense now, understanding this as a HIGHER-dimensional problem (old VQC hint).

scalar vector > bi-vector > tri-vector…

Not sure if we'll need it for the first part, but it's coming, or going back anyway, to Grassman et. al.

Hestenes celebrated this:

http:/ /geocalc.clas.asu.edu/pdf/GrassmannsVision.pdf

as related to Grassman. I mentioned Clifford Algebra in last bread, well it just keeps unfolding. Also dig into Alan Macdonald's Geometric Algebra / Geometric Calculus and the Conformal model. And on it goes, a unifying model for mathematics. Recall other VQC drop in an anon's DM >>3139 "All your base belong to us". Boom! There it is. And, given this includes Blades, and Philip Dick was on my mind earlier, a Blade Runner graphic!

 

  • What's SO cool about this, is the variety of applications! Read: https:/ /arxiv.org/pdf/1305.5663.pdf New forms of neural nets and neural computing (AI/ML anyone?), computer graphics, motion tracking, FLAT space (flat earth, haha, get it now VQC!), crystal structures (for you Topol). Oh, and bumping into bitcoin along the journey. Yuuge! I feel like the guy in the attached image, a slice of light across the eyes looking at a blinding future.

Anonymous ID: 23f2bb Feb. 1, 2018, 8:23 a.m. No.3801   πŸ—„οΈ.is πŸ”—kun   >>3802 >>3803

>>3792

Thats cool I get what you're saying there. I just checked and saw that sqrt(10368/2) = 72 also.

 

What do you mean by "triangular" number though. Like is it the c for a^2+b^2=c^2? I googled it and it doesn't match the definition google gave me.

CA !LAbIRp9cT. ID: 23f2bb Feb. 1, 2018, 8:35 a.m. No.3803   πŸ—„οΈ.is πŸ”—kun

>>3801

Also noticed that if you (for c=145) take 72 and subtract your original n, you get your original x.

 

goal (1, 5, 12, 7, 5, 29)

start (1, 61, 12, 11, 1, 145)

sqare (0, 10368, 145, 144, 1, 21025)

n = 10368

sqrt(n/2) = 72.0

sqrt(n/2) - start[n] = 11.0

CA !LAbIRp9cT. ID: 23f2bb Feb. 1, 2018, 8:36 a.m. No.3804   πŸ—„οΈ.is πŸ”—kun   >>3805

>>3802

 

>The sequence of triangular numbers (sequence A000217 in the OEIS), starting at the 0th triangular number, is

 

>0, 1, 3, 6, 10, 15, 21, 28, 36, 45, 55, 66, 78, 91, 105, 120, 136, 153, 171, 190, 210, 231, 253, 276, 300, 325, 351, 378, 406, 435, 465, 496, 528, 561, 595, 630, 666…

 

I don't see 72 or 71 here so thats why I was confused.

IseePatterns !kIkD/SqZ4s ID: 316b0b Feb. 1, 2018, 8:48 a.m. No.3805   πŸ—„οΈ.is πŸ”—kun

>>3804

 

>>rowForAB(1, 17 * 53)(1, 421, 30, 29, 1, 901)>>> rowForAB(1, 17 * 53 * 17 * 53)(0, 405000, 901, 900, 1, 811801)>>> s(405000/2)450.0>>> getTFromA(1, 421)15.0>>> generateNthRowFromGenesis(1, 15)(1, 1, 450, 29, 421, 481)

 

So it appears the n in c**2 is equal to the corresponding d[t] where t is the t that a=1,b=c's n appear in (e, 1).

 

Not sure if this will hold though. But if it is, then it would explain why sqrt(n/2) - n = x. Since d - a = x.

CA !LAbIRp9cT. ID: 23f2bb Feb. 1, 2018, 8:55 a.m. No.3806   πŸ—„οΈ.is πŸ”—kun

Here we have

(e,n,d,d-1,1,c)

Then if we do our c^2 record we get

(0,(c^2+1)/2 - c, c, c-1, 1, c^2) N= (c^2+1)/2 - c

 

Then we can see that sqrt(N/2) - n = x

sqrt( ((c^2-2c+1)/2)/2 ) - n = x

sqrt( ((c-1)(c-1)/2)/2 ) - n = x

(c-1)/2 - n = x

c - 1 - 2n = 2x

c - 1 = 2x + 2n

c - 1 = 2(x+n)

c = 1 + 2x + 2n

c = a + 2x + 2n

 

nothing new

IseePatterns !kIkD/SqZ4s ID: 316b0b Feb. 1, 2018, 10:42 a.m. No.3809   πŸ—„οΈ.is πŸ”—kun   >>3810 >>3812

>>3808

 

Well, if I understood the VQC decision tree, we should trim d and e.

 

So we are making a function f, that will return a factor of the input parameter. So far we know the following:

 

Step 1:

Trim input c until it is an odd number.

Calculate e, d from trimmed c

Compute GCD(e, d)

If GCD(e, d) != 1 then return GCD(e, d)

 

Step 2:

We now have to factorize d and e, which essentially means we have to call our function f again, two times, one for e and one for d.

 

Step 3 is still unknown, but somehow involves the VQC and triangle numbers.

 

So assuming I wrapped my head around it, trimming d and e are necessary (and thus also what makes it a recursive function).

IseePatterns !kIkD/SqZ4s ID: 316b0b Feb. 1, 2018, 10:47 a.m. No.3811   πŸ—„οΈ.is πŸ”—kun   >>3813 >>3825

Actually, thinking more about it. I don't think we are supposed to use f(d) and f(e). Given the idea that f is supposed to return a factor, I think we need two functions.

 

f which takes our c and g which takes our e and d. We use f to factorize a number and g to generate a tree.

Anonymous ID: 80a284 Feb. 1, 2018, 10:52 a.m. No.3812   πŸ—„οΈ.is πŸ”—kun   >>3813

>>3809

True, and the resulting tree makes more sense when trimming. Still, >>3653 gets the right answer without completely trimming the 40. So did we just get lucky with small numbers or are there rules for how many bits to trim? Maybe this is too simplistic anyway, given the hints about larger numbers being more complex, and triangular numbers.

I tried just coloring triangular numbers instead of primes but there are to few of them to really do anything on their own… Can't figure out how to relate the recursive tree to our grid so I'm a bit stumped at the moment

IseePatterns !kIkD/SqZ4s ID: 316b0b Feb. 1, 2018, 10:56 a.m. No.3813   πŸ—„οΈ.is πŸ”—kun   >>3815 >>3825

>>3812

>>3811

 

If f is supposed to just return a single factor, then how will we be able to build a tree at all?

 

Assuming the flow of the code is something like this:

 

function f(c)

d = floor(sqrt(c))

e = c - d * d

if gcd(d, e) != 1:

return gcd(d, e)

factor_d = f(d)

factor_e = f(e)

…

 

How will f(d) and f(e) be used to build a tree, assuming this function will return a single factor?

PMA !dSvrkhSLR6 ID: d1075e Feb. 1, 2018, 10:57 a.m. No.3814   πŸ—„οΈ.is πŸ”—kun

>>3789

Just a reminder regarding (0,n), the a value from the prime solution can be easily calculated from the cc and aabb records:

 

a = sqrt( cc.d - aabb.x )

 

We just never found a way to navigate to the aabb record without iterating.

Anonymous ID: 80a284 Feb. 1, 2018, 11:02 a.m. No.3815   πŸ—„οΈ.is πŸ”—kun   >>3816

>>3813

Yes, we need to split into branches (return two or more results) for each recursion, otherwise there is no tree. The rules for how to manipulate numbers (trim all bits, only trim bits if number is not triangular, ect.) for each step are up to us. But VQC was pretty explicit on trimming all zeros, not trimming some zeros. So assuming the tree we can generate now is right, step 3 has to be walking it and summing numbers in some way?

IseePatterns !kIkD/SqZ4s ID: 316b0b Feb. 1, 2018, 11:07 a.m. No.3816   πŸ—„οΈ.is πŸ”—kun   >>3817

>>3815

I agree. I find it a bit hard to reason about, though.

 

As for step 3 I have no real idea on how that might be. There's a lot of crumbs that wouldn't fit into it. Like why was f (2 * d + 1) important if it's not used somewhere?

 

He also keeps reminding us about the xx + e = 2an. Maybe step 3 will somehow give us x, so we compute xx + e and then find 2an? In which case gcd will help us out. So far I'm still trying to make sure I got the step 2 part correct.

Anonymous ID: 80a284 Feb. 1, 2018, 11:14 a.m. No.3817   πŸ—„οΈ.is πŸ”—kun   >>3818

>>3816

Wish I was better at recursive programming. I got pretty stuck trying to add dimensions to a binary tree in addition to branching…

Just summing up the leafs for a completely trimmed RSA100 tree and dividing by two gets us to

40364365001756683226800431241044541563293164124405

which is pretty close to our factor

40094690950920881030683735292761468389214899724061

but not close enough. Maybe we can use the grid on this.

IseePatterns !kIkD/SqZ4s ID: 316b0b Feb. 1, 2018, 11:19 a.m. No.3818   πŸ—„οΈ.is πŸ”—kun   >>3819 >>3820

>>3817

 

I'm just thinking out loud here. We know that we will get a tree of d's and e's. Maybe we need to look at the records of the leafs and somehow build up?

 

Like, we generate a big tree, then we go down to the bottom and start working our way up. We do <somethingwith the leafs to build up and keep doing that until we "bubble" up to the top and by then we will have a factor(s)?

Anonymous ID: 80a284 Feb. 1, 2018, 11:27 a.m. No.3819   πŸ—„οΈ.is πŸ”—kun   >>3820

>>3818

This is what I meant by "walking" the tree. I've been considering it but the only thing I can come up with is starting with an untrimmed tree and trimming one more bit for every possibility, and regenerating the lower nodes. Then checking the leafs again for a factor.. this is when I figured I could just generate a complete multidimensional tree in the first place. Still doable computation wise, not nearly log n but if we get a solution tnat may give more hints.

Then I realized you have to try all permutations of the multidimensional tree, not just walk it once, so we're back to exponential…

 

So maybe something like walk up the tree until you find a prime, triangular number, or some grid variable, and choose your next direction based on that (up or next branch down)… thinking out loud as well

PMA !dSvrkhSLR6 ID: d1075e Feb. 1, 2018, 11:29 a.m. No.3820   πŸ—„οΈ.is πŸ”—kun   >>3821 >>3822

>>3818

>>3819

 

VQC previously mentioned regarding the grid:

 

>How many times does 105 with three factors appear in one column?

>How many time for a number with four factors?

>It's not linear.

 

Perhaps the tree we are building is a way to query these numbers. And not necessarily to provide the prime solution.

IseePatterns !kIkD/SqZ4s ID: 316b0b Feb. 1, 2018, 11:52 a.m. No.3821   πŸ—„οΈ.is πŸ”—kun

>>3820

Well I tried generating the tree for 145. It yields (among others) 3 and when you compute the same function with 145 * 3, you'll get 5, 87. But if this holds up for more numbers I'm not sure about yet.

Anonymous ID: 80a284 Feb. 1, 2018, 12:51 p.m. No.3824   πŸ—„οΈ.is πŸ”—kun   >>3827 >>3830

>>3823

I may have posted the wrong image, that was 1xc, not 1xcc. Or I misunderstood everything completely, whatever. So here they are with bonus 2xcc. I am not sure how to add cats yet.

And apparently bioinformaticsfags don't like having dark backgrounds in their programs so I had to hack the shit out of it to get this.

Anonymous ID: 65f089 Feb. 1, 2018, 1:01 p.m. No.3825   πŸ—„οΈ.is πŸ”—kun   >>3826 >>3828

>>3811

>>3813

Right, the factor has to come in part 3. We have seen that we can sometimes add up 'leaves' on this tree and get a factor of c, but no consistent pattern has been put forth and VQC hasn't actually said yeah, add them up that's the secret. So depending how you define the function f(c), if you want it to return factors then either that's part 3 after the branching business; if the recursive part returns a factor then you are getting a factor from every subtree so you have to do something with that, could be worth messing around with, but seems more likely coming in part 3..

 

Also, for everyone's interest, the part 2 recursive tree has a time complexity of its own which we can compute. If this part is slower than log(bits of c) then VQC has misspoken, which I wonder about. It could still be fast enough to be revolutionary without being that fast.

Topolanon +++ !!!ZjI4YmE4MzE5Yjlm ID: 8e44f0 Feb. 1, 2018, 1:57 p.m. No.3827   πŸ—„οΈ.is πŸ”—kun

>>3824

Β‘Muchas Gracias, My Bruddah!

I have no idea if what you just did is in any way useful but apparently whatever I said could be done after all!

 

HAVE AN EBOLA DASH!

IseePatterns !kIkD/SqZ4s ID: 316b0b Feb. 1, 2018, 2:02 p.m. No.3828   πŸ—„οΈ.is πŸ”—kun   >>3829 >>3832

>>3825

 

It shouldn't be too hard to estimate the time complexity of step 1 and 2. Best case we do one squart root (to estimate d and e) and return d (e = 0).

 

This should be O(log n).

 

If e != 0 we compute GCD(e, d) which also has a time complexity of O(log n).

 

This can be seen as the time complexity of O(log n + log n) which is the same as O(log n).

 

For the recursive parts, we still only compute O(log n) so overall I think step 1&2 should have a time complexity of O(log n).

 

It's been years though since I did this formally at uni, so I'm only using what I remember. I might have some old textbooks I can go over at some time, to double check. Maybe CA can chip in on this?

 

But without knowing the remaining steps, it's impossible to say anything with regards to the algorithm as a whole.

Anonymous ID: 7fa95d Feb. 1, 2018, 2:09 p.m. No.3829   πŸ—„οΈ.is πŸ”—kun

>>3828

So far it is O(log n) in the worst case but that's based on the number itself and not the bits in c. Chris said we had 95% of the information we need, didn't he? If he did then I really have no idea how we get to log of the number bits in c if he has somehow told us that. Hopefully we're up the point at which he can tell us that and we'll understand (it seems like it).

Anonymous ID: 65f089 Feb. 1, 2018, 3:23 p.m. No.3830   πŸ—„οΈ.is πŸ”—kun   >>3837

>>3824

Anon I like your work. Is this adapted from philogenetic software? I was trying to interpret your tree. Sometimes two sibling nodes have a "d^2 + e" relationship to their "uncle" node (sibling of parent node), and sometimes they are the factors of their uncle node.

 

examples pictured: 3073=921 or 55=25, vs 633 = 25^2 + 8

Anonymous ID: 65f089 Feb. 1, 2018, 3:42 p.m. No.3832   πŸ—„οΈ.is πŸ”—kun   >>3833 >>3836

>>3828

> If e != 0 we compute GCD(e, d) which also has a time complexity of O(log n).

 

Yeah this is already more than log (bits of c). As many of you know, bits of c ~= log c, example a 4 bit number is between 1000 and 1111 (binary), or between 8 and 15.

log (2^3)<=log c < log (2^4)

3 <= log c < 4.

 

So generally bits(c) - 1 <= log c < bits(c).

 

Then a time complexity of log (bits (c)) is log log c, and we are already slower than that. Like I said, log c is still very fast, it's an arrow instead of a bullet, when now the on the books factoring speed is a knife strapped to a turtle.

PMA !dSvrkhSLR6 ID: 82ada7 Feb. 1, 2018, 5:03 p.m. No.3837   πŸ—„οΈ.is πŸ”—kun   >>3840

>>3830

Pic attached is a tree example of c=921 with and without trimming values.

 

In the top example, 30*30 + 21 == 921 as expected.

 

The bottom example, the d node is created trimmed in a recursive call, and that trimmed value is used for the d and e assignment and so on.

 

Not sure if we have an answer if the nodes should always be in balance with the formula.

 

In other words, should be trim before or after the sqrt(d) ?

VA !!Nf9AmQNR7I ID: f2af50 Feb. 1, 2018, 5:47 p.m. No.3838   πŸ—„οΈ.is πŸ”—kun   >>3839

Time to have some fun working on Math! Persistence will win the day. I'm sitting over here relaxed, peaceful, and with an open mental state. It's really nice to check in after a good day of work to read your new ideas, Anons. Love you all no homo.

ID: add73d Feb. 1, 2018, 10:27 p.m. No.3839   πŸ—„οΈ.is πŸ”—kun   >>3868

>>3838

God's with us. Through Him I am able to form patterns from chaos. Through Him I am able to help all of you.

 

If you love God, he'll solve this in the most beautiful way and he'll do it with your hands.

IseePatterns !kIkD/SqZ4s ID: 316b0b Feb. 1, 2018, 10:40 p.m. No.3840   πŸ—„οΈ.is πŸ”—kun   >>3841 >>3854

>>3837

 

I haven't had time to really dig into this, but I've been trying to play with primes.

 

We know that this function will return a factor, so for a prime number that means it will return either 1 og the prime itself (I'm assuming). This we can also use the function as a primality tester.

 

If that's true, then somehow, the tree will be used to show that it has no factors other than 1 or it self.

 

No idea on how though, but maybe it will be easier by starting to look at a few smaller numbers where the branches can't be big.

 

Just an idea, maybe I'll take a stab at that during the weekend.

Anonymous ID: 65f089 Feb. 2, 2018, 1:04 a.m. No.3841   πŸ—„οΈ.is πŸ”—kun   >>3842 >>3853

>>3580

>The decision tree terminates upon finding a factor.

 

>Pre-factorisation, trim trailing zeros (in binary) or equiv is to divide by two until odd.

 

>This is 1 and c for primes.

 

>This is the square root for squares.

 

>This is the pair of factors that are not 1 and c for the product of two primes that are not the same numbers (not a square).

 

>This is the pair of factors closest to the square root for products of more than two factors (not including 1 and c as factors).

 

>>3840

>We know that this function will return a factor, so for a prime number that means it will return either 1 og the prime itself (I'm assuming). This we can also use the function as a primality tester.

 

Based on VQC quote above, yes it looks like it brings back the two factors closest to sqrt (c). When c is prime you'll get 1 back, and c, so you'll know it's prime.

 

If your c might have more than two factors, and it spits back out c = ab, you can further put a and b into the algorithm. Like if you put 360 in, you should get: 1820 (not 1036 or anything else). Then 18 = 63 (not 29); 20=45 (not 2*10) etc.

ID: add73d Feb. 2, 2018, 2:30 a.m. No.3851   πŸ—„οΈ.is πŸ”—kun   >>3852

I'm not saying a factor is going to appear every time.

 

But they do happen to just "show up" in the tree.

So we need to find every possible way that makes them show up to see the underlying pattern.

Anonymous ID: ed48a1 Feb. 2, 2018, 5:43 a.m. No.3853   πŸ—„οΈ.is πŸ”—kun

>>3841

Good callout. Had been playing with the 'closest factors' and you stated clearly.

 

>>3848

Like the way you're thinking anon!

 

Also, we haven't used Mod in our decision tree. Recall VQC's crumb to dig into Mod and Elliptic curves, I think it was? Mod could be helpful too (3, 6, 9 rule) and also divisible by 5. Will post up reference in a bit, but the tree might just handle all that anyway - three birds…

Anonymous ID: ed48a1 Feb. 2, 2018, 5:52 a.m. No.3854   πŸ—„οΈ.is πŸ”—kun   >>3855 >>3856

>>3840

This is a fun site for playing with primes: http:/ /www.primesdemystified.com/

 

Had pulled this paper up a while back, very interesting. Can post pdf if you all want, but here's a link:

https:/ /papers.ssrn.com/sol3/papers.cfm?abstract_id=2706936

Notes on Prime Numbers, Their Numerical Statistics & Patterns I: Modular Arithmetic and the Eight Fold Period 24 Model

 

25 Pages Posted: 22 Dec 2015 Last revised: 18 Jan 2016

Fredrick Zia Michael

 

Agathos Scientific and Education

 

Date Written: November 24, 2015

Abstract

 

We have not yet obtained a simple, complete and accurate method for determining if an integer number specifically an odd number that does not digitally sum to 3,6,9, whether it is prime, and that does not involve trial & error and/or as by a sieving method or factoring. This after thousand(s) of years of searching for such. Alternatively great strides are made towards understanding the behavior of numbers, fields of numbers obtained by some method or another, statistics probabilities & entropies of such numbers, & so forth, & it seems that it is assumed that a better method (but not 'full') for determining primality will appear as an afterthought or byproduct. In this letter we wish to revitalize the interest of the intrepid professional & amateur mathematician & scientist towards seeking the 'full' or 'complete' method of determining primality, or rather towards obtaining the method by which a prime odd integer can be determined completely, simply and efficiently & with applicability to small to very large numbers with a minimum of effort eschewing supercomputing & other recent methods however by utilizing methods resembling pencil & paper approaches.

 

The caveat that we wish the 'method(s)' to be efficient and simple means specifically that we are referring to the utilization of methods such as digital sums & digital roots, modulus methods, combinatorial & progressions & recursions patterns easily applied, these connected to geometries, polynomial equations and relationships, discernible patterns in sieves and doodles and spirals & other topologies investigated in one context or another yet often deemed curiosities when viewed from the focused area of number theory as pertaining to identifying primes.

Anonymous ID: ed48a1 Feb. 2, 2018, 9:41 a.m. No.3855   πŸ—„οΈ.is πŸ”—kun   >>3856

>>3854

This was another paper that was interesting:

Carlo Cattani, 2010

One of the main tasks in the analysis of prime numbers distribution is to single out hidden rules and regular features like periodicity, typical patterns, trends, etc. The existence of fractal shapes, patterns and symmetries in prime numbers distribution are discussed.

Fractal Patterns in Prime Numbers Distribution https:/ /www.researchgate.net/publication/221433042_Fractal_Patterns_in_Prime_Numbers_Distribution

 

and check out the Modulo 2pi plots by H. Sabelli (image attached):

The Biotic Pattern of Prime Numbers

Supports the Bios Theory of Creative

Evolution from Radiation to Complexity

http:/ /www.necsi.edu/events/iccs7/papers/3114216e0aebd76eb51ebe74680c.pdf

 

for those who love biology, Hibbs, 2008

The Double-Helix Pattern of Prime Number

Growth

http:/ /www.iaeng.org/publication/WCECS2008/WCECS2008_pp278-283.pdf

 

and on the fractal side, S. Woon 1994:

Riemann zeta function is a fractal

https:/ /arxiv.org/PS_cache/chao-dyn/pdf/9406/9406003v1.pdf

Anonymous ID: ed48a1 Feb. 2, 2018, 10:54 a.m. No.3857   πŸ—„οΈ.is πŸ”—kun   >>3858

>>3856

You bet, I have many now, just posting a few relevant ones. I think the Fredrick one could be used when this is cracked to spread disinfo. "Using techniques adopted from this article, a team…"

 

Oh, and here's another link to 5 pages!!!

https:/ /intelligence.house.gov/uploadedfiles/memo_and_white_house_letter.pdf

Anonymous ID: 7fa95d Feb. 2, 2018, 1:58 p.m. No.3864   πŸ—„οΈ.is πŸ”—kun   >>3866

>>3862

I had already found that but it obviously isn't him so I didn't say anything. Are you saying he took that name as some kind of analogy (since this guy was apparently in a band called The Searchers)? Based on his video, he seems to be from New Zealand.

 

>>3863

Link?

PMA !dSvrkhSLR6 ID: d1075e Feb. 2, 2018, 2:02 p.m. No.3865   πŸ—„οΈ.is πŸ”—kun   >>3924

>>3863

???

 

>>3861

I did spend some time looking at f movements. Specifically, enumerated all values in the original grid, created a corresponding record at (f,1,t), and then tried to analyze the differences.

 

c is the original (e,n,t) record from the grid.

cf is the (f,1,t) record

 

For odd values of e, found the following:

 

cf.e == c.f

cf.n == 1

cf.x == (c.x - 1)

cf.d == (c.d + (c.n - 1) * c.a + (c.a - c.e))

cf.a == ((c.n + 1) * c.a - c.e + 1)

 

Wasn't able to fully describe the movements for even values of e, only figured out the x:

 

cf.x == (c.x + 1)

VA !!Nf9AmQNR7I ID: 06387b Feb. 2, 2018, 5:31 p.m. No.3868   πŸ—„οΈ.is πŸ”—kun   >>3869

>>3839

Agreed, Baker. I've prayed and continue to pray for the success of our quest. Perhaps our generation will be one of few to see Evil overthrown and defeated in a Great Awakening.

 

Here's an idea:

Part one ends with finding the GCD of e and d. Kind of a cliffhanger moving into part two.

 

Part Two: Maybe we should sum the factor tree leaves that match the GCD? Or only sum termination points that are >GCD? Thinking out loud here. Thoughts?

 

Why did Chris make so much of a point that Pt 1 ends with finding GCD? Must be pretty important for Pt 2?

VA !!Nf9AmQNR7I ID: f2af50 Feb. 2, 2018, 6:06 p.m. No.3870   πŸ—„οΈ.is πŸ”—kun   >>3871

>>3869

Cool! Thanks Baker. Seems like you're getting close or have figured it out. Love the clues, thanks for posting. I'm enjoying the quest as we go, and continuing to work, think, and pray.

 

Clues: So, more than one way to solve it, but the recursive nature of solutions is key.

Squares are triangular numbers, as your cool graphic demonstrated.

And Column one again. We've solved row 1, let's solve column 0. PMA did a lot of good work on that.

 

Well, Baker seems to know the way lads! Baker, what's up? Did you solve it? Do tell.

ID: add73d Feb. 2, 2018, 8:28 p.m. No.3874   πŸ—„οΈ.is πŸ”—kun   >>3875

If you were to attempt to apply this to our equations, you would have something like this.

 

d^2 + e = c

T(d) + T(d-1) + e = c

 

i^2 - j^2 = c

(T(i) + T(i-1)) - (T(j) + T(j-1)) = c

 

Interesting to note, that n-1 appears in the hints,

and T(d+n) + T(d+n-1) would be the large square.

VA !!Nf9AmQNR7I ID: 3a9068 Feb. 2, 2018, 8:49 p.m. No.3875   πŸ—„οΈ.is πŸ”—kun

>>3873

Funny. I was just outside thinking about this exact equation, based on your diagram from earlier. Then I come back in and you've posted it.

 

>>3874

So c is the difference of two squares, which means that difference is also the difference between two triangular numbers. This would allow us to scale down (for a) and up (for b) starting from d. The triangular numbers should help us solve for a or x, by helping us calculate steps up or down from d?

 

Very interesting that n-1 appears in our records. A larger n means that the two squares (and their triangular numbers) are farther apart (from d). There can be multiple possible combinations I think, but only one solution.

 

>>3752 for example reference Anons, very helpful graphic by Baker.

ID: add73d Feb. 2, 2018, 10:51 p.m. No.3876   πŸ—„οΈ.is πŸ”—kun

Anyone else try to apply the VQC to different problems lately?

 

If you forget the equations for each variable then what you're left with is a geometrical object that

-has coordinates

-has variables derived from each coordinate

-has 1:1 correspondence from element to set of coordinates

 

And then if you fill those in with other mathematical functions, you could apply it to anything.

Anonymous ID: 33fd02 Feb. 2, 2018, 11:29 p.m. No.3878   πŸ—„οΈ.is πŸ”—kun   >>3879

>>3872

This sounds completely fucking gay, but one observation is

 

n^2 = 2/_(n - 1) + n

 

Using the example of n = 7, if you remove the center stripe (7 black squares) you are left with 2 identical /_\6, one white, one black.

IseePatterns !kIkD/SqZ4s ID: 316b0b Feb. 3, 2018, 4:47 a.m. No.3888   πŸ—„οΈ.is πŸ”—kun   >>3894

I've been looking more into the triangle numbers, nothing new to report, but just another way of finding c**2 (0, N).

 

Calculate the triangle number of d**2 and subtract the d[t] in (e, 1) where big N is a[t].

 

Example:

Record for 145 is (1, 61, 12, 11, 1, 145). At t=6 in (1, 1) we have (1, 1, 72, 11, 61, 85).

 

Compute the triangle number for 144 and subtract 72. You're left with triangleN(144) - 72 = 10368

 

Which is also the record for a=1, b = c*c.

 

Doubt it's useful for step 3, or any steps, but it is interesting.

IseePatterns !kIkD/SqZ4s ID: 316b0b Feb. 3, 2018, 6:15 a.m. No.3889   πŸ—„οΈ.is πŸ”—kun

>>3887

 

x or x + n. So this can be interpreted in a few ways, either that we have no clue if we'll find x or if we are going to find x + n. However, there are no coincidences, right?

 

I'm speculating that maybe it depends on the parity of e (or d). Maybe if e is even, we're going to find x, if e is odd, we're going to find x + n.

MinecraftAnon !!QXqSZ2ev8. ID: 2fe852 Feb. 3, 2018, 8:22 a.m. No.3890   πŸ—„οΈ.is πŸ”—kun

Internet is super shit, can't post images today. Looking into triangular numbers, I've discovered cell (15,4), where D is a triangular number for every single entry.

PMA !dSvrkhSLR6 ID: 82ada7 Feb. 3, 2018, 1:23 p.m. No.3893   πŸ—„οΈ.is πŸ”—kun   >>3894

>>3869

>>3887

Baker - thanks for these additional clues. Still plugging away.

 

I've taken your idea of triangles and inverse triangles and incorporated them into a parse tree. Tried to find combinations that will get us back to any solution.

 

Pic attached is just latest attempts adding all d's, e's, and just the d triangles that are direct descendants from c.

 

Working in (0,1) space for c=145, I was able to match an x value of 120 by 4(24 + 6). Also managed to find the factor of 5 by adding triangles sqrt( 2(1+6+78) - 145 ).

 

Of course, this doesn't work in too many places.

 

Interesting that things keep coming back to difference of two squares.

 

For example: 278 - 26 = 144 + 1 = 145.

 

If we are searching for x or x+n (x+n is just x+1 in (0,1) space), then we're looking for the correct level in the tree, not a factor.

 

Does this parse tree tell us what level we are at or the level we are looking for? Does the triangle value or difference in triangles between branches of the parse tree tell us this?

Anonymous ID: 80a284 Feb. 3, 2018, 2:24 p.m. No.3894   πŸ—„οΈ.is πŸ”—kun   >>3895

>>3888

Checked, nice trips

>>3893

Good work both of you, so far any correlations I've found appear to be just luck and work for one number only.

In other news I wrote a variant of the tree-generation algo in C and ran some tests:

 

RSA100 0.07ms

RSA2048 0.4ms

RSA4096 0.7ms (self generated key)

RSA8192 1.5ms (self generated key)

RSA16384 3ms (self generated key)

 

And just for fun, M74207281 * M77232917 (two largest known primes multiplied by each other) takes… ~42 seconds. Somehow I don't think anyone will be using RSA keys that large. More surpised my computer didn't blow up trying that!

VA !!Nf9AmQNR7I ID: 32324c Feb. 3, 2018, 4:23 p.m. No.3897   πŸ—„οΈ.is πŸ”—kun

Hey lads! Working over here, just plugging along. Doing factor trees for (1,1) old school style, pencil and paper. Seeing interesting patterns, nothing to report yet.

MinecraftAnon !!QXqSZ2ev8. ID: e93cea Feb. 3, 2018, 4:25 p.m. No.3898   πŸ—„οΈ.is πŸ”—kun

In the same way -E and -X exist, it seems -N also exists. The patterns are mirrored or rotated or something. Will try to show something that makes sense.

PMA !dSvrkhSLR6 ID: 82ada7 Feb. 3, 2018, 4:35 p.m. No.3899   πŸ—„οΈ.is πŸ”—kun

>>3896

I wrote a test a little while ago to see if there was any pattern to prime numbers in the grid. Obviously haven't figured that one out, but it certainly looks possible.

Anonymous ID: 7fa95d Feb. 3, 2018, 7:12 p.m. No.3907   πŸ—„οΈ.is πŸ”—kun   >>3908

I'm not aware of anyone having thought about this yet but in this image a point is plotted whenever c is a square. So the line in the middle is (0, n) and every other point has a relationship in terms of e and n with (0, n).

Anonymous ID: 7fa95d Feb. 3, 2018, 7:36 p.m. No.3908   πŸ—„οΈ.is πŸ”—kun

>>3907

Another interesting thing: this is the same idea (looking for relationships between the e=0 column and other cells) but with x as the x axis instead of e and n still the y axis. Is this maybe the start of an elliptic curve before it diverges? The second image is to make the shape more obvious.

Teach !!UgZAPoSXEk ID: 68a051 Feb. 3, 2018, 7:58 p.m. No.3909   πŸ—„οΈ.is πŸ”—kun   >>3910 >>3971

I've been building a tool to help me visualize the trees and test different theories…

 

Its code is not ready to share yet, but I'm going to clean it up and share it when its ready.

 

Using electron + node.

Teach !!UgZAPoSXEk ID: 68a051 Feb. 3, 2018, 9:53 p.m. No.3912   πŸ—„οΈ.is πŸ”—kun   >>3913

>>3911

I'm also currently developing a ruleset to test the climbing back up the tree.

There are some interesting things I've seen so far, such as when you divide by 4.

 

c = ab = d^2+e

4c = (2d)^2 + 4e

 

It appears that you can also calculate movement by 2, but you end up with n ending in 0.5

 

It seems for calculating x for combining the perfect squares is pretty simple too, as is gcd, since you get a factor out which gives you x and n.

 

The last remaining rule is the dd+e.

So far, I'm seeing patterns around if e is even or odd, and if so, x is an addition of d+e in some cases. Something like that. Simple d+e addition is the point i'm making.

Teach !!UgZAPoSXEk ID: 68a051 Feb. 3, 2018, 11 p.m. No.3917   πŸ—„οΈ.is πŸ”—kun   >>3918 >>3945

Looking at my own drawing… is na always a triangle number?

 

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

c = (d^2 + 2nd + n^2) - (x^2 + 2xn + n^2)

c = (d^2 + 2nd) - (x^2 + 2xn)

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

c = d^2 - x^2 + 2na

 

>>3915

In this diagram, d is the small dotted square. d+n is the large dotted square.

The area above d+n fits into the area between d and d+n on both the top and the side.

Hence 2 * na.

 

It seems na is going to be a triangle number.

 

Double check my thinking guys?

Teach !!UgZAPoSXEk ID: 68a051 Feb. 3, 2018, 11:20 p.m. No.3923   πŸ—„οΈ.is πŸ”—kun

Sorry, yeah, I've got my math wrong… still correct on concepts, wrong variables…

 

I there is something here though.

Will update soon.

Teach !!UgZAPoSXEk ID: 68a051 Feb. 3, 2018, 11:53 p.m. No.3925   πŸ—„οΈ.is πŸ”—kun   >>3926

Not sure if this was already said before, but:

 

ab + β–³a + β–³b = β–³(a+b)

Example:

c = 145

a = 5

b = 29

β–³a = 15

β–³b = 435

ab+β–³a+β–³b = 595

 

solve quadratically:

595 = n(n+1)/2

n = 34

β–³34 = 595 = β–³(a+b)

Teach !!UgZAPoSXEk ID: 68a051 Feb. 4, 2018, 12:05 a.m. No.3927   πŸ—„οΈ.is πŸ”—kun   >>3928

>>3926

This is what I've got so far, very interesting…

 

c, the difference of 2 squares, is also the difference of 2 triangles.

 

Our equations in terms of triangle differences is:

 

c = β–³(((b-1)/2)+a) - β–³(((b-1)/2)-a)

 

Another example for clarity:

c = 145

a = 5

b = 29

(b-1)/2 = 14

(b-1)/2 + a = 19

(b-1)/2 - a = 9

β–³19 = (19*20)/2 = 190

β–³9 = (9*10)/2 = 45

 

β–³(((b-1)/2)+a) - β–³(((b-1)/2)-a) = 190 - 45

β–³(((b-1)/2)+a) - β–³(((b-1)/2)-a) = 145

β–³(((b-1)/2)+a) - β–³(((b-1)/2)-a) = c

Teach !!UgZAPoSXEk ID: 68a051 Feb. 4, 2018, 12:17 a.m. No.3930   πŸ—„οΈ.is πŸ”—kun

>>3928

This is all bloody beautiful.

 

Squares can be added an subtracted via their associated triangles.

You can define a triangle number as either a square - a smaller triangle, or as a square + 2 smaller triangles.

This is the missing piece I've been searching for for weeks.

For a while I've had a hunch that we're representing c as dd+e because its like a new number system. Just like we can add i to the integers or rationals or irrationals even, and get complex numbers.

I was looking for a way to add, subtract and multiply squares and errors (dd+e), and its possible via triangles!!!

Teach !!UgZAPoSXEk ID: 68a051 Feb. 4, 2018, 12:51 a.m. No.3931   πŸ—„οΈ.is πŸ”—kun   >>3937

Another comment, since I'm on a roll tonight.

I've been playing with using an alternative to f.

So instead of using d+1 to get f, I've been using d-1.

I'm doing this whenever e is odd and d is even, so that e will be even when d-1 is odd.

The reason for this is so that I have enough error to put on either sides of my square.

Anonymous ID: 33fd02 Feb. 4, 2018, 1:14 a.m. No.3934   πŸ—„οΈ.is πŸ”—kun   >>3935 >>3939

New private message from VQC:

 

>VQC!!Om5byg3jAU

>Thank you for your patience.

>The decision tree has parts.

>The decision tree terminates upon a set of conditions.

>The first part.

>Determine to stick dick in or not.

>That is the end of part one.

 

I'm going fucking loony. Great shit tonight, Teach.

ID: add73d Feb. 4, 2018, 3 a.m. No.3940   πŸ—„οΈ.is πŸ”—kun   >>3941 >>3948

>>3939

Yeah. Now, the FINAL piece necessary for our tree algorithms to work is figuring out what we have to do to each value on our tree to make it spit out x or x+n.

 

If any of you are frustrated that he didn't come back onto the board, don't be. It's important for us to step through us ourselves. It is a million times more rewarding and meaningful to go through the steps of solving this on your own. I'm already learning how to apply the VQC to other maths, and before this I didn't even like math.

IseePatterns !kIkD/SqZ4s ID: 316b0b Feb. 4, 2018, 3:56 a.m. No.3941   πŸ—„οΈ.is πŸ”—kun   >>3942

>>3940

 

There is probably some pattern behind it either being x or x+n. If it is something as simple as e being odd or even, I don't know. Maybe it also depends on which branch you choose?

 

Like if you use the e branch you will find x, if you use the d branch you will find x+n. Of course, I don't understand the tree yet.

 

Take our example c = 145. If you use the d-branch, do you have to stick to the d branch through the tree, or does it depend on the different records in the sub tree?

Anonymous ID: 65f089 Feb. 4, 2018, 5:40 a.m. No.3942   πŸ—„οΈ.is πŸ”—kun   >>3943

>>3941

good question. the result would have to in some way be informed by both branches it seems to me. the factors of a number can't just depend on e, or on d alone… something else has to be going on.

IseePatterns !kIkD/SqZ4s ID: 316b0b Feb. 4, 2018, 5:51 a.m. No.3943   πŸ—„οΈ.is πŸ”—kun   >>3944 >>3959

>>3942

 

Hmm, yeah that makes sense. The question is are we going to traverse the whole tree, or just different branches (Has VQC said anything regarding this)?

 

I'm looking into the tree for 3^k for odd k. I figure if there is a pattern here, it should be easier to figure it out by observing smaller trees where we know what to expect and preferably in a predictable way (Like just 3 as a growing factor).

 

I also think we are still missing pieces right? Like how the f works, I know PMA has been looking into it, but I haven't had time to go over his results yet.

 

Do we also know the underlying pattern of d[t] - d and the growth of (n - 1) as a factor? I'm not sure if we need to know there before we look for patterns in the tree, or if the tree will help us find these patterns (and how to apply them).

Anonymous ID: 65f089 Feb. 4, 2018, 6:05 a.m. No.3944   πŸ—„οΈ.is πŸ”—kun   >>3959

>>3943

>Do we also know the underlying pattern of d[t] - d and the growth of (n - 1) as a factor?

I personally have still not looked at this. I don't even know what growth of (n-1) as a factor means. One thing we still don't exactly do on these threads is define what we mean :)

MinecraftAnon !!QXqSZ2ev8. ID: d16bcc Feb. 4, 2018, 7:47 a.m. No.3945   πŸ—„οΈ.is πŸ”—kun   >>3946

>>3917

Because no one is double checking, N * A = β–³ is false. Between E,X,N 0->255, there are 1,431 valid cells where NA = β–³, and 177,158 valid cells where NA != β–³.

MinecraftAnon !!QXqSZ2ev8. ID: d16bcc Feb. 4, 2018, 9:18 a.m. No.3947   πŸ—„οΈ.is πŸ”—kun   >>3951

>>3946

Flexing my programming skills, I have this for you.

 

A*B 1066 triangular, 177523 not triangular.

A*C 142 triangular, 140574 not triangular.

A*D 1577 triangular, 177012 not triangular.

A*E 4488 triangular, 174101 not triangular.

A*N 3907 triangular, 174682 not triangular.

A*X 2517 triangular, 176072 not triangular.

B*C 34 triangular, 139377 not triangular.

B*D 830 triangular, 177759 not triangular.

B*E 2842 triangular, 175747 not triangular.

B*N 2309 triangular, 176280 not triangular.

B*X 1328 triangular, 177261 not triangular.

C*D 240 triangular, 139792 not triangular.

C*E 1782 triangular, 155938 not triangular.

C*N 400 triangular, 178189 not triangular.

C*X 420 triangular, 154549 not triangular.

D*E 3244 triangular, 175345 not triangular.

D*N 2823 triangular, 175766 not triangular.

D*X 1870 triangular, 176719 not triangular.

E*N 11106 triangular, 167483 not triangular.

E*X 5440 triangular, 173149 not triangular.

N*X 8336 triangular, 170253 not triangular.

 

I'm skipping the calculation if it overflows past java's MAX_INT (2147483647), which is why all the total's aren't all the same, and the original N*A numbers are different because I changed the sieve to add 0 as a triangular number.

MinecraftAnon !!QXqSZ2ev8. ID: d16bcc Feb. 4, 2018, 9:25 a.m. No.3949   πŸ—„οΈ.is πŸ”—kun   >>3951

Ran addition as well because the hard part of the code is already done.

 

A+B 3426 triangular, 175163 not triangular.

A+C 1098 triangular, 177491 not triangular.

A+D 4533 triangular, 174056 not triangular.

A+E 5156 triangular, 173433 not triangular.

A+N 5710 triangular, 172879 not triangular.

A+X 5713 triangular, 172876 not triangular.

B+C 1072 triangular, 177517 not triangular.

B+D 3326 triangular, 175263 not triangular.

B+E 3506 triangular, 175083 not triangular.

B+N 4088 triangular, 174501 not triangular.

B+X 3960 triangular, 174629 not triangular.

C+D 430 triangular, 178159 not triangular.

C+E 441 triangular, 178148 not triangular.

C+N 455 triangular, 178134 not triangular.

C+X 402 triangular, 178187 not triangular.

D+E 6097 triangular, 172492 not triangular.

D+N 4902 triangular, 173687 not triangular.

D+X 4885 triangular, 173704 not triangular.

E+N 11695 triangular, 166894 not triangular.

E+X 10210 triangular, 168379 not triangular.

N+X 11511 triangular, 167078 not triangular.

Teach !!UgZAPoSXEk ID: 68a051 Feb. 4, 2018, 9:48 a.m. No.3951   πŸ—„οΈ.is πŸ”—kun   >>3952 >>3953

>>3947

>>3949

>>3950

Thanks MA.

 

Taking the c = 145 example, I'm not sure if this works for all numbers, or only 145 because n=a, but assuming the answer:

c = 145, a = 5, b = 29

d = 12, e = 1

n = 5, x = 7

 

d^2 - x^2 + 2na = 12^2 - 7^2 + 2(5)(5)

 

so focusing on 2na = 25, and using the diagrams I've shared above, you can know some things about na.

 

I think its something like:

2na = 2n + β–³a

or

2na = 2a + β–³a

(not sure yet since n = a)

 

Using our example:

β–³a = β–³5 = 15

25 - 15 = 10 = 2(5)

 

10 is a triangle number too, but I'm not sure if this is a coincidence.

 

I'm working now on describing x+n in triangles too. I think there's a relationship.

 

Think about this…

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

(d+n) = 17

(x+n) = 12

(d+n)^2 = β–³17 + β–³16

(x+n)^2 = β–³12 + β–³11

c = (β–³17 + β–³16) - (β–³12 + β–³11)

c = (β–³17 - β–³11) + (β–³16 - β–³12)

 

Any time you have β–³-β–³, you also have square - square, so the pattern repeats.

 

Thats what I've got so far.

 

I'm also working on a process for adding 2 triangle numbers, if you know anything about that, I'm all ears!

MinecraftAnon !!QXqSZ2ev8. ID: d16bcc Feb. 4, 2018, 10:11 a.m. No.3954   πŸ—„οΈ.is πŸ”—kun   >>3955

>>3953

All cells where 2 * N * A = 50. Format is {E:N:D:X:A:B} : C

 

{1:1:32:7:25:41} : 1025

{1:5:12:7:5:29} : 145

{1:25:8:7:1:65} : 65

{14:1:31:6:25:39} : 975

{14:5:11:6:5:27} : 135

{14:25:7:6:1:63} : 63

{25:1:30:5:25:37} : 925

{34:1:29:4:25:35} : 875

{41:1:28:3:25:33} : 825

{46:1:27:2:25:31} : 775

{49:1:26:1:25:29} : 725

{50:1:25:0:25:27} : 675

MinecraftAnon !!QXqSZ2ev8. ID: d16bcc Feb. 4, 2018, 10:33 a.m. No.3957   πŸ—„οΈ.is πŸ”—kun

My interesting observation is the

{1:1:32:7:25:41} : 1025

cell. This has the same 2NA as our answer cell, and shares the same E and X as our answer cell. I played with this solution idea for a while at the end of December. This was the path I was trying to work out,

 

{1:61:12:11:1:145} : 145

-{1:1:72:11:61:85} : 5185

-(Unknown logic) {1:1:32:7:25:41} : 1025

-{1:5:12:7:5:29} : 145

MinecraftAnon !!QXqSZ2ev8. ID: 4cc89d Feb. 4, 2018, 7:43 p.m. No.3962   πŸ—„οΈ.is πŸ”—kun   >>3963 >>4011 >>4014 >>4037

>>3961

Looks familiar, also validated true for +E,X,N. Here's a new formula for ya, related to some work I'm doing with T right now. Given a valid cell (E,X,N), to predict the next X in it's "chain",

 

next x = sqrt((2 * n * b) - e)

 

This let's you step up X, where first cell's B becomes the new cell's A. There are many cells that have multiple "chains", going to work on that tomorrow.

MinecraftAnon !!QXqSZ2ev8. ID: 4cc89d Feb. 4, 2018, 7:55 p.m. No.3963   πŸ—„οΈ.is πŸ”—kun

>>3962

Not so much predicting, as it is deriving. Not sure how you would get the previous cell's X other than,

 

previous x = x - (sqrt((2 * n * b) - e) - x)

Anonymous ID: 80a284 Feb. 4, 2018, 7:56 p.m. No.3964   πŸ—„οΈ.is πŸ”—kun   >>3967

>>3961

Found it here >>2709

Shouldn't we be able to use this to get x or n from d and x+n?

If the tree gives us x we can just a = d - x, but what about the x+n case? There are some good crumbs on it in RSA #7 and you guys saying its possible but nobody posted the formula and I suck at algebra

MinecraftAnon !!QXqSZ2ev8. ID: 4cc89d Feb. 4, 2018, 8 p.m. No.3965   πŸ—„οΈ.is πŸ”—kun

I'm quite sure that this negates some of my previous statements on T. If you can find one valid cell in an (E,N), you can search between the valid cell and the next cell in it's chain, which should reveal all of the other chains, thus unlocking the entire cell.

ID: add73d Feb. 4, 2018, 8:17 p.m. No.3968   πŸ—„οΈ.is πŸ”—kun   >>3969

You check if a number is x by subtracting it from d and checking if it is a factor of c. You check if a number is x+n by squaring it and adding it to c, if the sum is a perfect square, it is the correct value of x+n. You are looking for one or the other in the tree. You are to trim every even value until it is odd by repeated divisions of 2.

Anonymous ID: 80a284 Feb. 4, 2018, 8:53 p.m. No.3970   πŸ—„οΈ.is πŸ”—kun

>>3969

Screwed that up when converting code to post formula. Supposed to be x+n, not x*n. So if you have x_plus_n:

 

n = sqrt(x_plus_n**2 + c) - dx = x_plus_n - na = d - x

PMA !dSvrkhSLR6 ID: 82ada7 Feb. 4, 2018, 9:15 p.m. No.3971   πŸ—„οΈ.is πŸ”—kun   >>3972

>>3909

Thanks for the very clear example, Teach. I've updated my tree parsing to incorporated the /2 step for clarity.

 

VQC has hinted that the tree will lead to an x or x+n solution. Still searching in the dark for this, but ran some sample code against a list of prime numbers.

 

Pic attached is for prime numbers 509, 521, and 523.

 

If you isolate the d branch in the tree and calculate the triangle values for each d node, the total is really close to the (x+n) value.

 

Well, close enough to be interesting.

 

These examples share the same d branches and the e branches vary slightly, perhaps there is something to learn here.

ID: add73d Feb. 5, 2018, 12:53 a.m. No.3979   πŸ—„οΈ.is πŸ”—kun   >>3981

>>3978

If that's the purpose, don't you see the reason why he would underestimate our progress and then want to let us go farther ourselves?

 

It's not hard to post a hint on a board of something you know forwards and backwards; he worked on it for ~7 years. He clearly values the importance of us working throughout it ourselves.

Anonymous ID: 7fa95d Feb. 5, 2018, 12:59 a.m. No.3981   πŸ—„οΈ.is πŸ”—kun

>>3979

>>3980

All I'm saying is that he's done this a bunch of times now so I question why he would keep saying it. I know he knows what he's doing. I don't have anything to add to what we're doing at the moment that anyone else hasn't said at the moment.

ID: add73d Feb. 5, 2018, 1 a.m. No.3982   πŸ—„οΈ.is πŸ”—kun

I also believe that the fact that he walked us through the VQC instead of giving us this tree which doesn't have an (immediately) clear connection, (though you can see how it was derived from the VQC if you note the appearance of fractals) is because he devised a specific plan for people to work through it exactly as he did. Except with a VQC that was improved from the original version.

Anonymous ID: 33fd02 Feb. 5, 2018, 2:24 a.m. No.3985   πŸ—„οΈ.is πŸ”—kun

>>3983

>There's a million things to discover from these mathematical devices, they've probably never been studied in this way.

Studied in what way? Studied by a bunch of degenerate, unqualified faggots? (I count myself in these ranks)

 

Maybe that's the point? Who knows. Also, maybe VQC counts twitter DMs as being on /vqc/. I agree VQC is a complete faggot, but he's /our/ faggot.

Anonymous ID: cdc778 Feb. 5, 2018, 3:40 a.m. No.3986   πŸ—„οΈ.is πŸ”—kun   >>3987

The tree thing is probably very important, but maybe we should take a step back and review the patterns we already know.

 

Get a list of everything and then double check it.

 

VQC has hinted that triangular numbers are related to this. Maybe we should reevaluate our methods of calculating D's and A's to see if there is a more elegant triangular method?

 

We also know he said the pattern was complete in a tweet during thread #7(?). Maybe we should revisit that thread and go over the results. We might have found something important and overlooked it.

ID: add73d Feb. 5, 2018, 5:31 a.m. No.3988   πŸ—„οΈ.is πŸ”—kun

>>3987

From the beginning he has stated that he had provided all that was necessary to solve it.

 

Guessing we didn't put 2 and 2 together as easily as it looked. But it's a lot of 2's and 2's to put together to surmise that the solution to this would be fractals and triangular numbers.

Anonymous ID: cdc778 Feb. 5, 2018, 6:49 a.m. No.3989   πŸ—„οΈ.is πŸ”—kun

It's not in the big picture and I'm not opening anyones PDF.

 

>>2469

Chris has since deleted the tweet but it said something along the lines of the pattern being complete.

PMA !dSvrkhSLR6 ID: d1075e Feb. 5, 2018, 9:11 a.m. No.3993   πŸ—„οΈ.is πŸ”—kun   >>4003

>>3972

Teach - this is great work. Makes it real easy to follow along.

 

A couple of the records don't look like valid grid entries. Specifically the even nodes where n's are fractions.

 

Also, instead of treating the d nodes as "c" values and trying to calculate their "prime" solutions, perhaps just treat them as "d" entries, and resolve to a valid record based on e=0, d=2d, a = d. Don't know if that will add any clarity, but certainly something to look into.

ID: add73d Feb. 5, 2018, 9:54 a.m. No.3994   πŸ—„οΈ.is πŸ”—kun   >>3995 >>3997

I programmed in a version of the tree that checks for x and x+n values, as Chris has initially described the solution would work. It doesn't work for large ones (probably because they have to be extracted out of the tree in a different way than just checking values) but if you enter some random values from 1-400 you'll see it does find the factorization for quite a lot of them. It needs to be optimized a bit more before it's able to instantly check the rsa-sized trees.

 

https://pastebin.com/0jPr3RrE

 

>>3992

>(1)

Anonymous ID: 80a284 Feb. 5, 2018, 10:15 a.m. No.3995   πŸ—„οΈ.is πŸ”—kun   >>3996 >>4000

>>3994

I have been doing something similar on the RSA100 tree trying to find close matches for x or x+n using various formulas for every combination of the numbers in the tree, up to ~10 different numbers. Summing nodes in any combination isn't any good. Neither is summing triangular numbers, or trimmed versions of triangular numbers. Initial runs on multiplication aren't looking too hot.

for i in range(1, 42): print(i) #for comb in combinations(traverse(tree), i): for comb in combinations(map(lambda n: (n*(n+1))//2, set(traverse(tree))), i): result = sum(comb) ...check how close result is to targets...

I think the C version counts as instant though, just need to figure out what to checkclang -O3 -march=native -mtune=native -lgmp tree.c -o tree0.000493 seconds - create_tree0.000018 seconds - traverse(tree_count)2587 nodes

IseePatterns !kIkD/SqZ4s ID: 316b0b Feb. 5, 2018, 11:51 a.m. No.4000   πŸ—„οΈ.is πŸ”—kun   >>4002 >>4004

>>3995

 

I think we're being given the crumbs in a disordered fashion.

 

I don't know if we have everything in place for the tree right now. We might be missing crumbs, still, rendering the tree useless.

 

Unfortunately VQC is sporadic in his hints, so it's hard to tell. At the same time, I don't want to be spoon fed this stuff either, it's a fun challenge. However, I do question how much we've been able to solve ourselves.

 

It seems like we're just hitting our heads against the wall until he somehow drops a few crumbs (or parts). And then we jump on it until we're stuck. Rinse repeat.

 

Now we know we're talking about fractals here, right? Instead of going the other way around, why don't we try and understand why we need to recurse down the tree. Try and study the patterns at the core of the nodes, see if we can understand why the tree is necessary in the first place.

Teach !!UgZAPoSXEk ID: 68a051 Feb. 5, 2018, 11:55 a.m. No.4001   πŸ—„οΈ.is πŸ”—kun   >>4003

I don't mean to distract from the triangle numbers, and our current tree theories, but I was going back through the original crumbs, and found this one:

 

>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

 

Re-reading this crumb, and looking at the grid, at (f, 1), there is an a that = (n-1)a.

For 145, this is our value 20, and when we add d to 20, in (e,1) we'll find d=32 & a=25.

 

These two numbers are connected via x.

The x for f is 1 more than the x for e.

 

More than that too, it seems that the x at (f, 1) shares a common factor with the original d.

 

I'm going to try to use this info to roll up the tree.

We know how to generate d, x, and a for (e,1) or (f,1).

We know the relationship between x's and factors of x in (f,1), and so hopefully there's a way to mathematically solve the a's for e and f using simultaneous equations.

 

Also, regarding sharing my code. I fell asleep last night so I'll package it up and share it today.

IseePatterns !kIkD/SqZ4s ID: 316b0b Feb. 5, 2018, 11:57 a.m. No.4002   πŸ—„οΈ.is πŸ”—kun

>>4000

We know we are talking about a fractal. And we've been told previously that we are going to try and figure out which branch we are in of the fractal.

 

Once we know that, we can solve it. So maybe the tree represents a part of our fractal, and we are going to use this tree to figure out where we are in the fractal.

 

If we can figure out how this relates to a fractal, somehow generate and study it, then maybe then we can understand the tree more.

Teach !!UgZAPoSXEk ID: 68a051 Feb. 5, 2018, 12:05 p.m. No.4003   πŸ—„οΈ.is πŸ”—kun   >>4006 >>4008

>>3993

You're right. These numbers are not officially in the grid, I was just trying to understand patterns.

 

One thing that Chris said was that this process finds the 2 factors that are closest together, ie, smallest n.

 

For this reason, I've made my slow_factor method return precisely these factors.

 

I like your idea of treating d as 2d. I'm not quite there yet as to understand why and precisely how. But I see your point.

 

>>4001

If you get a chance today PMA, I know you can generate d,x,a for n=1, check out this post and tell me what you think.

Anonymous ID: 80a284 Feb. 5, 2018, 12:13 p.m. No.4004   πŸ—„οΈ.is πŸ”—kun   >>4005 >>4007 >>4019

>>4000

I have to agree, we're not really solving much on our own, just collectively understanding the crumbs. Seems almost designed that way.

The fractal part has been obvious since day one imo, and is one of the main reasons I'm here. They just got way more obvious in tree form than looking at a flat grid. I think the tree is only neccesary for factoring numbers though, and not related to navigating an infinite fractal grid, although recursion still applies. Think of it as a tool, not a solution.

The worst part is I'm not really interested in solving RSA, I want to see what we can come up with using this. A software quantum computer ffs, the possibilities are ridiculous. And given what we've already seen its pretty fucking fast too.

I'm not sure what the strategy behind this slow drip of info is since Chris (or the "Chris entity") is obviously smart enough to have one, and its kinda working well (we're still here).. Trying to drop this knowledge any other way would probably be suicide and it'll get wiped from the internet, so that may be part of it.

 

A darker twist would be that some group already has this math (the elite hoards knowledge) and are already using it in secret. We know the NWO plan depends on chaos and the financial system is already set up to fail, so if (((someone))) didn't want to get the blame, what better way than having a bunch of channers release it in a timed way that blows shit up good…

^^ The above may be a bit out there and I'd like to think my intuition is good enough to avoid such traps, but knowing what we're up against I'm not so sure. Think its worth considering at least.

 

Now lets get back to math!

Anonymous ID: 80a284 Feb. 5, 2018, 1:47 p.m. No.4005   πŸ—„οΈ.is πŸ”—kun   >>4007 >>4008 >>4009

>>4004

Sooo.. didn't mean to kill the thread.. too weird? too real? too crazy?

Everyone working on math? Or upgrading their VPNs?

 

Already know where I stand on the spoiler part, and will continue anyway but assumed it'd start a discussion at least. Post some trees or something!

PMA !dSvrkhSLR6 ID: d1075e Feb. 5, 2018, 2:34 p.m. No.4006   πŸ—„οΈ.is πŸ”—kun   >>4008 >>4009

>>4003

Thinking more about f.

 

In the original grid code, the f record was used to illustrate a mirror in the negative half of the grid.

 

The (n-1)*a transform, which takes us from (e,n,t) to (e,1,t), was explained as being a shortcut for an f movement. (I believe VQC stated this).

 

These are both big movements in the grid. We can do individual record movements (by adjusting x, t, or even computing the next d), but unless we know a factor, we can't move around any better than this.

 

While creating the tree, the only values we can compute definitively from e and d are c and f.

 

Perhaps the point of making the tree is not to figure out the x or x+n directly, but to create a structure that allows medium sized movements within the grid itself (phase 3).

 

What if the f value we can generate at each d node in the tree can be used to navigate backwards in bigger steps towards the correct solution?

MinecraftAnon !!QXqSZ2ev8. ID: a89af7 Feb. 5, 2018, 3 p.m. No.4008   πŸ—„οΈ.is πŸ”—kun   >>4012 >>4015

>>4005

Gonna have to better than that to kill the thread. There's just not that many people here, which is why every contribution is helpful.

 

>>4003

I've gone over that crumb a few times, but I don't know what to do with it because we still don't have a way of getting the NA we want. We know the answer is 25, and that the (N-1)A is 20, but we don't have a way to reach that answer. Maybe you could do some kind of Fourier transform but I don't know.

 

>>4006

If I had to guess, the medium sized moments would be an exponential growth formula which intersects with the factor cell.

 

The only note I have about F, is that any (E,D) with any values for (N,X,A,B) all have the same F. The inverse is true for any (F,D) with any (N,X,A,B) - they all have the same E.

VA !!Nf9AmQNR7I ID: 1d5a78 Feb. 5, 2018, 3 p.m. No.4009   πŸ—„οΈ.is πŸ”—kun   >>4010

>>4006

I like your thinking here PMA! I'm working over here, and will post some work in progress and questions a bit later, just nothing major to report. Here's a quick fun question:

for all n>1, Floor(SQRT(Abs(f))) + what? = x

 

You know we gotta start from c.

"what?" could be a piece from the factor tree.

 

>>4005

I could care less about RSA too, just enjoying the challenge of solving a math problem. I think NSA already has this secret math, they just want release to be crowdsourced. Also, it will increase GEOTUS' Anons to Legend status and ALL THE WORLD WILL TREMBLE at our autistic Reeeeeeeeeeeeee! Think about it, it's partly a PR campaign for us.

"We the people forgot how to Play"

"We the people have the Power"

VA !!Nf9AmQNR7I ID: 1d5a78 Feb. 5, 2018, 3:28 p.m. No.4016   πŸ—„οΈ.is πŸ”—kun   >>4020

>>4010

>>4011

Hey MA! Agreed.

Only problem is we don't have n starting from c. Can we find n in the factor tree and plug it in? We get c,d,e,f to start and that's it. So the missing piece for the formula is an n approximation?? Let's find it.

MinecraftAnon !!QXqSZ2ev8. ID: a89af7 Feb. 5, 2018, 3:29 p.m. No.4017   πŸ—„οΈ.is πŸ”—kun

>>4014

>exact for N2 (or F's N1), then X's variance sets in. Off by ~128 around ~N500 and grows, but was still less than 2000 at N5000.

 

It's more accurate for longer on higher E/F's because it's a prediction for that slope, not the A=1 cells.

MinecraftAnon !!QXqSZ2ev8. ID: a89af7 Feb. 5, 2018, 3:49 p.m. No.4020   πŸ—„οΈ.is πŸ”—kun   >>4021

>>4016

That formula is better suited for a way to brute force if an N contains any entries for any given E/F.

 

>>4015

I still haven't even started on the tree thing, I'm still working through all of the ideas I had while I was away. Honestly it doesn't make any sense to me at all right now, still processing it subconsciously I guess.

VA !!Nf9AmQNR7I ID: 06387b Feb. 5, 2018, 4:35 p.m. No.4022   πŸ—„οΈ.is πŸ”—kun   >>4032 >>4033

Hello Lads! Solid idea over here! Lets factor f.

 

Just looked over my formulas and realized that d of f solves for x in row 1. If we factor Floor(SQRT(abs(f))) we get d and e for f. The d portion solves for x in row one, but the remainder e is still there!

 

But what about the remainder (e) portion of f? Can this help us bump up our value so that we can solve for x in n>1?

 

Maybe program anons can run the numbers. I'm working over here but wanted to share now bc my preferred programming language is Excel, lol.

MinecraftAnon !!QXqSZ2ev8. ID: a89af7 Feb. 5, 2018, 4:47 p.m. No.4023   πŸ—„οΈ.is πŸ”—kun   >>4032

Finally debug'd my next big render. Here's a view of E to the right, N down. Red block, N is invalid. Yellow block, (E,N) has one X chain pattern. Blue block, # of X chains not equal to one.

Anonymous ID: 7fa95d Feb. 5, 2018, 5:20 p.m. No.4032   πŸ—„οΈ.is πŸ”—kun   >>4033 >>4034 >>4037 >>4061

>>3992

>>3997

I don't see you giving any useful insights, (2). Starting arguments is only going to cause the conversation to go off-track even more. Not all of us have any useful ideas right this second. A couple slightly irrelevant posts isn't stopping anyone from working and collaborating.

 

>>4019

>DOW

Did you see it was at 666 points the other day?

 

>>4023

The gradient of each of those lines increases by 1 each time (rise/run = 2/2, 4/2, 6/2, 8/2, etc). What's an X chain pattern?

 

>>4022

>d of f solves for x in row 1

Here's the bitmap with e and f either side of the zero line on the x axis and d on the y axis.

VA !!Nf9AmQNR7I ID: 3a9068 Feb. 5, 2018, 5:27 p.m. No.4034   πŸ—„οΈ.is πŸ”—kun   >>4038 >>4039

>>4032

I'll take a triangular square with rectangles for $5000, Alex. That's fucking cool as shit, Anon!! Patterns everywhere!

 

That's considered a chevron symbol, correct? Did a quick search. Baker will die and go to heaven if you can find a swastika. ;)

MinecraftAnon !!QXqSZ2ev8. ID: a89af7 Feb. 5, 2018, 5:35 p.m. No.4037   πŸ—„οΈ.is πŸ”—kun   >>4039

>>4032

 

{1:1:2:1:1:5}

{1:1:8:3:5:13}

{1:1:18:5:13:25}

{1:1:32:7:25:41}

{1:1:50:9:41:61}

{1:1:72:11:61:85}

{1:1:98:13:85:113}

{1:1:128:15:113:145}

{1:1:162:17:145:181}

{1:1:200:19:181:221}

{1:1:242:21:221:265}

{1:1:288:23:265:313}

 

Here, B leads directly into the next cell's A. X Chain = 1.

 

{3:2:2:1:1:7}

{3:2:6:3:3:13}

{3:2:12:5:7:21}

{3:2:20:7:13:31}

{3:2:30:9:21:43}

{3:2:42:11:31:57}

{3:2:56:13:43:73}

{3:2:72:15:57:91}

{3:2:90:17:73:111}

{3:2:110:19:91:133}

{3:2:132:21:111:157}

{3:2:156:23:133:183}

 

Here, 2 different chains of cells lead from their B to their next cell's A. So X Chain(s) = 2. I'm calling them X chains because with the formula here, >>3962 (You) you only need one entry from each chain to unlock the entire chain.

VA !!Nf9AmQNR7I ID: f2af50 Feb. 5, 2018, 5:38 p.m. No.4038   πŸ—„οΈ.is πŸ”—kun   >>4039

>>4034

>triangular square

I have no clue what I meant there. Except that trapezoids are combinations of squares, triangles, and rectangles. Just too many shapes at once, got all excited.

 

>>4033

Looks like a nice right triangle to me, Anon. WTF, I love this challenge. How do we use it? Any ideas?

 

>>4036

Love this X chain work, MA! I was thinking of it like Jacob's Ladder, but X chain is badass too.

 

For (e,1) that starting point is in t=1.

For odd e, (e+1)/2 = a for t=1

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

We're all working to unlock n>1, and we'll find it soon. Appreciate all your excellent ideas and graphics.

Anonymous ID: 7fa95d Feb. 5, 2018, 5:43 p.m. No.4039   πŸ—„οΈ.is πŸ”—kun   >>4041 >>4042

>>4034

I hope this is actually useful and not just pretty pattern shit again, but I did e&f by x both for square cs and not based on your post and found something interesting. In the non-square one, you can kind of see a diagonal grid in the f space within the grid we're already looking at.

 

>>4037

It's a little irritating that we can't just edit our posts on this website. I can but that's only because I control the BO account. I get what you mean about the x chain thing. Do you think there's any way to mathematically predict these points? Just looking at this image, there are obvious patterns in the valid/invalid n cells (the first one being two valid, two invalid over and over, the second being one invalid, two invalid etc) but they seem to get a lot more complicated the further down you go. If we could find a way to predict the pattern of a particular line, I don't know that it would help with the tree but we'd be able to find something.

 

>>4038

>How do we use it? Any ideas?

I'm not sure that the thing I posted was entirely useful just since all of the variables used in the image come from c (if c's a square, as well as d, e and f). It shows a linear relationship between d and f, but that doesn't give us n or x.

MinecraftAnon !!QXqSZ2ev8. ID: a89af7 Feb. 5, 2018, 5:58 p.m. No.4041   πŸ—„οΈ.is πŸ”—kun

>>4039

 

If you look at X Chain = 3, the first (E,N) is (0,9). Then (9,9). Then (18,9). Then (27,9). Basically (i9,9) for any i. The next row down is (27i,27) for any i. Then (0,45) (45 = 27+18). Every coord is a factor of 9, but not every factor of 9 is a coord.

VA !!Nf9AmQNR7I ID: 3a9068 Feb. 5, 2018, 6:32 p.m. No.4042   πŸ—„οΈ.is πŸ”—kun   >>4043 >>4052

>>4039

AA? Nice work! I see the diagonal grid.

 

Baker, can you please repost your idea about e and f being two mountains to the sides of a prime valley? That was a great explanation.

 

Guys, I'm feeling it. It's like when you know somebody is about to get

7777777777777

Trump will win.

Maybe not tonight, but I can feel our combined minds going up a level right now. Seriously listening to "Chariots Of Fire' Vangelis Theme right now. Also, I just smoked a toke. Choose Joy tonight, Anons! It is possible by choice alone, we control our own VQC's: Our mind, emotions, and spiritual essence. The conversation today is up another level of understanding! All Anons On Deck!!

Anonymous ID: add73d Feb. 5, 2018, 7 p.m. No.4043   πŸ—„οΈ.is πŸ”—kun   >>4044 >>4045

>>4042

Sure thing. Your semiprime exists between two squares, they're the two mountains, and every number between that is differentiated by it's remainder. You can reference a number by the first square, d^2 and e, it's distance or you can reference a number by it's 2nd adjacent square, (d+1)^2 and it's distance from that, equal to f.

 

So all your numbers exist between two squares.

VA !!Nf9AmQNR7I ID: fc4336 Feb. 5, 2018, 7:09 p.m. No.4045   πŸ—„οΈ.is πŸ”—kun   >>4046

>>4043

And you can locate every position in the valley because c, d, and e. Like GPS. You have enough coordinate info to locate in more than 2D. E and f are the balance between two adjacent squares?

VA !!Nf9AmQNR7I ID: 3a9068 Feb. 5, 2018, 8:46 p.m. No.4047   πŸ—„οΈ.is πŸ”—kun   >>4048

Alright, so what should we focus on tonight? We have a lot of good ideas going on. Maybe everyone just keep going and see what we come up with? Post your shit, even if you're not sure about it. Let's get some constipated ideas out.

PMA !dSvrkhSLR6 ID: 82ada7 Feb. 5, 2018, 8:54 p.m. No.4048   πŸ—„οΈ.is πŸ”—kun   >>4049

>>4047

VA. I added f into all the d nodes in the tree, and am reviewing against (e,1) entries to see if anything obvious jumps out.

 

This has to relate back to the d[t]-d hint at some point. But not seeing anything.

VA !!Nf9AmQNR7I ID: 06387b Feb. 5, 2018, 9:03 p.m. No.4049   πŸ—„οΈ.is πŸ”—kun   >>4051

>>4048

PMA, nice to see you. I feel like I'm in the LOTR at this point. Hero's quest, we're doing the walking in between all the cool parts. Long walk, but maybe we'll get our math asses in shape.

 

>"There is a simple and elegant way to solve this shit." - PMA

VA !!Nf9AmQNR7I ID: 32324c Feb. 5, 2018, 9:17 p.m. No.4050   πŸ—„οΈ.is πŸ”—kun

Is Bantz and Shitz lurking here? Anon had some great advice back in RSA#4: loose paraphrase…

>If you don't have shit to say, Bantz and Shitz till someone smarter like Teach says something good..

PMA !dSvrkhSLR6 ID: 82ada7 Feb. 5, 2018, 9:27 p.m. No.4051   πŸ—„οΈ.is πŸ”—kun

>>4049

Still believe in the simple and elegant. Trees are pretty elegant, after all.

 

Unfortunately, still walking around in the dark and hitting walls at every turn. Guess that's what makes it fun. Learning something that hasn't been taught before.

 

Would love to hear the back story to this one day. It must be fascinating.

Anonymous ID: 7fa95d Feb. 5, 2018, 9:29 p.m. No.4052   πŸ—„οΈ.is πŸ”—kun   >>4053 >>4055

>>4042

>AA

Yeah, I'm still here every day even if I don't always have ideas. This is an important board so someone has to keep it from being overrun by shills.

 

Have we considered using f in the tree somehow? That might be a stupid idea but I'm just thinking out loud. Obviously it revolves around input variables d and e, like Chris said, but if the tree either terminates with x or x+n, maybe the thing that determines whether it's one or the other is another variable that comes from input variables d and e (i.e. f).

VA !!Nf9AmQNR7I ID: fba0a4 Feb. 5, 2018, 9:39 p.m. No.4053   πŸ—„οΈ.is πŸ”—kun

>>4052

Thanks for defending us against shills, AA! F may hold an important key, not sure yet. Starting from c, f is one of the few we can immediately derive.

 

Let's factor f like so: d of f AND e of f using the tree formula. For the following cells:

 

Format {e,n,d,x,a,b} c, f, d of f, e of f.

 

First, (1,1) t=1-100

Then (1,2) t=1-100

Then (1,3) t=1-100

 

Can you anons please check my idea? Thinking that e of f can help make x for n>1.

Anonymous ID: 7fa95d Feb. 5, 2018, 9:43 p.m. No.4054   πŸ—„οΈ.is πŸ”—kun

If when this is implemented we just plug numbers in and get numbers out, how are we going to know whether the number it spits out is x or x+n?

Anonymous ID: 7fa95d Feb. 5, 2018, 9:52 p.m. No.4056   πŸ—„οΈ.is πŸ”—kun   >>4059

>>4055

I've been meaning to keep going with that thread explaining the occult but nobody seemed all that interested and my life has been quite hectic. Plus, a lot of you keep using Christian themes in the things you say, and the Bible says occultism is inherently wrong (you're all entitled to your opinions but as someone who used to be Christian I think that's complete horseshit), so I don't want to step on anyone's toes for no good reason. If you read what I wrote about astral projection in that other thread and you are interested I guess I could keep going.

Anonymous ID: 7fa95d Feb. 5, 2018, 10:06 p.m. No.4061   πŸ—„οΈ.is πŸ”—kun

>>4032

Noticing the part of this image at the top where it seems like there's a solid pattern - do we have a maximum number at which the tree doesn't work anymore? Maybe that section of the image shows where it works and lower is where it doesn't work. This is a blind guess, though, since I don't know what value of d it is when that pattern stops in this image.

VA !!Nf9AmQNR7I ID: 3a9068 Feb. 5, 2018, 10:15 p.m. No.4064   πŸ—„οΈ.is πŸ”—kun

See it's way more fun like this, guise. Math + real life + memes + equations + honesty + dreams = VQC. This board isn't just for math. It's for life and world improvement.

MM !DMWWK0jvao ID: 899548 Feb. 5, 2018, 10:49 p.m. No.4066   πŸ—„οΈ.is πŸ”—kun   >>4067 >>4069

Been researching factor pairs, Pythagorean triples, prime factorization, hexagonal numbers, various rules, etc.

 

Maybe read this page for some ideas:

https:/ /findthefactors.com/tag/centered-triangular-number/

 

Couple example snips:

Prime factorization: 976 = 2 Γ— 2 Γ— 2 Γ— 2 Γ— 61, which can be written 976 = 2⁴ Γ— 61

The exponents in the prime factorization are 4 and 1. Adding one to each and multiplying we get (4 + 1)(1 + 1) = 5 Γ— 2 = 10. Therefore 976 has exactly 10 factors.

 

Or the 901 example, 901 is the sum of two squares two different ways:

30Β² + 1Β² = 901

26Β² + 15Β² = 901

901 is the hypotenuse of FOUR Pythagorean triples:

 

60-899-901, calculated from 2(30)(1), 30Β² – 1Β², 30Β² + 1Β²

424-795-901, which is (8-15-17) times 53

451-780-901, calculated from 26Β² – 15Β², 2(26)(15), 26Β² + 15Β²

476-765-901, which is 17 times (28-45-53)

 

Two of those were primitives. That can only happen because ALL of 901’s prime factors are Pythagorean triple hypotenuses.

 

901 is a composite number.

Prime factorization: 901 = 17 Γ— 53

The exponents in the prime factorization are 1 and 1. Adding one to each and multiplying we get (1 + 1)(1 + 1) = 2 Γ— 2 = 4. Therefore 901 has exactly 4 factors.

Factors of 901: 1, 17, 53, 901

Factor pairs: 901 = 1 Γ— 901 or 17 Γ— 53

901 has no square factors that allow its square root to be simplified. √901 β‰ˆ 30.016662

 

694 is a composite number.

Prime factorization: 694 = 2 x 347

The exponents in the prime factorization are 1 and 1. Adding one to each and multiplying we get (1 + 1)(1 + 1) = 2 x 2 = 4. Therefore 694 has exactly 4 factors.

 

>>4065

oooh, thanks VA! It's about Time (something VQC has said a few Times). Perhaps with the market fuckery, it IS time, now finally! VQC has been holding and tweeting, and I think this may be the case!

MM !DMWWK0jvao ID: 899548 Feb. 5, 2018, 11:02 p.m. No.4068   πŸ—„οΈ.is πŸ”—kun

Also took a turn down the biblical / gematria route, and Star of David stuff.

 

example:

http:/ /www.whatabeginning.com/Misc/Tess2/P.htm

 

and (seems less exact, more 'fishing' for numbers, but could provide some inspiration)

Structural Numbers of the Bible

https:/ /www.biblewheel.com/Collaboration/Paardekooper2003_09_09.php

MM !DMWWK0jvao ID: 899548 Feb. 5, 2018, 11:09 p.m. No.4070   πŸ—„οΈ.is πŸ”—kun

>>4067

Yes VA, the Melange here. Been into this for a while. Mostly reading academic papers, but tonight dumping more of the 'image' type stuff, as sensed your call for some new tangents to think along.

 

>>4031

Spent a good while looking at your outputs MA. Vahddy interdasting!!

 

Examples of some basic rules:

A number with three or more factors is a

composite number

 

Divisibility rules can be used to factor a number and to test the primality of a number. Some divisibility rules:

β€’ All numbers are divisible by 1

β€’ Any even number is divisible by 2. A number is divisible by 2 if it ends with a 0, 2, 4, 6, or 8.

β€’ A number is divisible by 3 if the sum of its digits is divisible by 3.

β€’ A number is divisible by 4 if the last two digits (tens and ones) are divisible by 4.

β€’ A number is divisible by 5 if it ends in a 5 or 0.

β€’ A number is divisible by 6 if it is also divisible by 2 and 3 (see these tests above).

β€’ To test a number for divisibility by 7

o Take the last digit in a number.

o Double and subtract the last digit in your number from the rest of the digits.

o Repeat the process for larger numbers.

β€’ A number is divisible by 8 if the last 3 digits are divisible by 8.

β€’ A number is divisible by 9 if the sum of its digits are divisible by 9

β€’ A number is divisible by 10 if it ends in a zero.

A prime factorization is a factor string expressing a number as the product of only prime factors. Every number has exactly one prime factorization. This prime factorization can be written using exponents if any of

its prime factors appear more than once in the string.

MM !DMWWK0jvao ID: 899548 Feb. 5, 2018, 11:17 p.m. No.4071   πŸ—„οΈ.is πŸ”—kun

>>4069

Hey PMA, your work has been killer!! You and Teach are really inspiring one another. Nice to follow along with you fine anons.

 

Has this been brought up? Star of David Theorem. (Given RootODavid and all).

http:/ /mathworld.wolfram.com/StarofDavidTheorem.html

 

Generalizations to Large Hexagons of The Star of David Theorem with Respect to Gcd

https:/ /link.springer.com/chapter/10.1007/978-94-011-5020-0_4?no-access=true

The Star of David theorem with respect to the greatest common divisor states that GCD(A 1, A 3,A 5) = GCD(A 2, A 4,A 6) for the six coefficients A 1,A 2,A 3,A 4,A 5 and A 6 in order surrounding any element X in Pascal’s triangle. This property was discovered by Gould [4] and first proved by Hillman and Hoggatt [5]. Subsequently a number of alternative proofs and various interesting generalizations have been presented.

 

https:/ /7daysand8nights.wordpress.com/2010/02/26/star-of-david-theorem/

 

This blog has same info. Enjoyed this bit:

According to Wolfram’s Mathworld, the Star of David Theorem was first stated by H. W. Gould in 1972, and there were several generalization in the years immediately following. Apprently the association with Pascal’s triangle wasn’t noticed until 6 years ago, however, by B. Butterworth in this article (which is originally about using Pascal’s triangle to illustrate the song β€œThe Twelve Days of Christmas”).

https:/ /threesixty360.wordpress.com/tag/pascals-triangle/

MM !DMWWK0jvao ID: 899548 Feb. 5, 2018, 11:37 p.m. No.4072   πŸ—„οΈ.is πŸ”—kun

Learning about different types of numbers.

https:/ /www.fq.math.ca/Scanned/9-2/bauer.pdf

Numbers that are both Triangular and Square - their Triangular Roots and Square Roots. R. L. BAUER. (3 pg pdf, 1971)

This popped up including 'recursive' in search.

 

And, patterns in these triangle numbers. An email exchange with a mathematician regarding The Triangular Squares:

The purpose of this note is not Pell’s equation, but rather to give a more elementary solution, once we propose that the triangular squares obey a linear recurrence. The recurrence I gave needs only two consecutive values, say 0 and 1, to produce all the rest.

http:/ /www.gosper.org/triangsq.pdf

 

That all stemmed from this guy Hans, and researching Pascal's triangle. It's where I stumbled on the Star of David. He has an interesting perspective.

http:/ /hans.wyrdweb.eu/about-the-number-nine/

 

About Pascal’s Triangle

 

When a number represents a Geometric Structure it is called a Figurative Number.

 

Every possible figurative number is generated by the Triangle of Pascal.

 

The Fractal Sierpinsky Triangle is the Triangle of Pascal Modulo 2.

 

The Triangle of Pascal was known long before Pascal (re)discovered it.

 

It was known in Ancient India as the Meru Prastara and in China as the Yang Hui. Meru Prastara relates the triangel to a Mystical Mountain called Mount Meru. Mount Meru is also implemented in the Sri Yantra.

 

The Triangle shows the Coefficients of the Function F(X,Y))= (X+Y)**n. If n=0 F(X,Y)=1 and if n=1 F(X,Y)=X+Y so the Coeffcients are (1,1).

 

Pascals Triangle is a 2-Dimensional System based on the Polynomal (X+Y)N. It is always possible to generalize this structure to Higher Dimensional Levels. 3 Variables ((X+Y+X)N) generate The Pascal Pyramid and n variables (X+Y+Z+….)**N generate The Pascal Simplex.

 

The rows of the Pascal’s Triangle add up to the power of 2 of the row. So the sum of row 0 is 20 and the sum of row 1 is 21 =2.

 

The Sum of the rows of the higher n-dimensional versions of the Triangle is nN where n is the Amount of Variables and N the level of expansion. So the Sum of Pascal’s Pyramid (3 variables X,Y,Z) is 3N.

 

The most interesting property of the Triangle is visible in the Diagonals.

 

The First Diagonal contains only 1β€²s. The Ones represent Unique Objects. They are the Points in the Tetraktys.

 

The Second Diagonal contains the natural numbers. These Numbers are used to Count Objects that are The Same. The Natural Numbers are the Lines that connect the Points. The Natural Numbers are the Sum of the previous Ones.

 

The Third Diagonal contains the triangular numbers. The Triangular Numbers are the Sum of the previous Natural Numbers.

 

This pattern repeats itself all the time.

 

The Fourth Diagonal contains the tetrahedral numbers (Pyramid Numbers) and the Fifth Diagonal, the pentatope numbers.

 

Fermat stated that Every Positive Integer is a Sum of at most three Triangular numbers, four Square numbers, five Pentagonal numbers, and n n-polygonal numbers.

 

The Tetrahedron with basic length 4 (summing up to 20) can be looked at as the 3-Dimensional analogue of the Tetraktys.

 

The Diagonals of the Triangle of Pascal contain every Possible 2-Dimensional Figurative Number (and Structure).

 

These Numbers are Projections of Higher Dimensional Numbers and Higher Dimensional Structures.

 

The Higher Dimensional Versions of the Triangle (the Pascal Pyramid, The Pascal Simplex) contain these structures.

 

The Rows of the Triangle Sum to the Powers of Two (2 Dimensions). These Powers control the Levels of Expansion.

 

Every 7th step the Fractal Pattern of the Triangle repeats itself on a higher Level.

 

The Figurative Numbers are the Geometric Shapes that are created by the Lines of the Natural Numbers that are connecting the Points of the One.

 

Pascal’s Triangle also contains the numbers of the Fibonacci Sequence (β€œThe Golden Spiralβ€œ).

 

When we take the Modulo 9 (the Digital Root of Pythagoras) of the Numbers of Fibonacci a repeating patterns of 24 steps shows itself that can be represented by a Star Tetrahedron or Stella Octangula. The Star Tetrahedron is a Three Dimensional Star of David.

ISP !kIkD/SqZ4s ID: ceb3da Feb. 5, 2018, 11:46 p.m. No.4073   πŸ—„οΈ.is πŸ”—kun   >>4074

>>4065

Welp, I don't have much time today to work on it, but I'll be ready.

 

I hope he will stick around long enough afterwards to teach us how to make more virtual quantum computers.

 

This shit is too good.

MM !DMWWK0jvao ID: 899548 Feb. 6, 2018, 12:03 a.m. No.4074   πŸ—„οΈ.is πŸ”—kun   >>4075

^^ uggh, sorry for blacking out and reddit formatting with that last copypasta.

 

>>4073 Hey Isee, good to see ya!

Agree, it's interesting, and given it's last thing I do before crashing, in my dreams. I often wake grasping at some concept. This morning it was a series in the e that was just there, if only a bit more lucid of a dream…

 

So Hans sends me down the path of

Hexagonal numbers, which are a form of pyramidal numbers. Didn't VQC mention pyramids at one point or am I losing it?

 

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

The sum of the first n centered hexagonal numbers is n3. That is, centered hexagonal pyramidal numbers and cubes are the same numbers, but they represent different shapes. Viewed from the opposite perspective, centered hexagonal numbers are differences of two consecutive cubes, so that the centered hexagonal numbers are the gnomon of the cubes. (This can be seen geometrically from the diagram.) In particular, prime centered hexagonal numbers are cuban primes (more new terms! Like pronic numbers, and polygonal numbers, etc.).

 

To bring this back to Pascal:

When all the odd numbers (numbers not divisible by 2) in Pascal's Triangle are filled in (black) and the rest (the evens) are left blank (white), the recursive Sierpinski Triangle fractal is revealed (see figure at near right), showing yet another pattern in Pascal's Triangle. Other interesting patterns are formed if the elements not divisible by other numbers are filled, especially those indivisible by prime numbers. Go here to download programs that calculate Pascal's Triangle and then use it to create patterns, such as the detailed, right-angle Sierpinski Triangle at the far right.

(http:/ /ptri1.tripod.com/)

 

Reminds me of CONWAY, and the patterns that grow. When I see this image of the blacked out Pascal triangle and Sierpinski's triangle (attached), and relate to some of the Chain work MA and PMA highlighted, makes me think that maybe that's what we're seeing. A form where the path switches back and forth black to white (chain shifting). And along the edge, it's solid, the ROOT. The rays that shoot off are like the internal edges of the more major features, within the (fractal) structure.

PMA !dSvrkhSLR6 ID: 82ada7 Feb. 6, 2018, 9:27 p.m. No.4081   πŸ—„οΈ.is πŸ”—kun   >>4082 >>4083 >>4084

>>4080

Running out of ideas with the tree.

 

Went back to the grid and added prime factor output to various test cases for d[t]-d and a[t] values. Just further researching triangle numbers. c145 example attached.

 

Also, the hint "if a number at position t has a factor s at (e+1)" makes more sense when you break down the values into their prime factors. Sample for e=2, d, and the d prime factors also attached.

Anonymous ID: 179b2d Feb. 7, 2018, 7:22 a.m. No.4090   πŸ—„οΈ.is πŸ”—kun   >>4091

I honestly think this tree solution is extremely hard to find just due to the sheer magnitude of the possibilities. We may need to wait for our next step from VQC. I've played with this for a while and I cannot figure it out.

I devised a strategy to find it though. So we know that for each split in the tree, we should use both branches to get the correct X value for the source of the branches. If we analyze the primes, we should have that the prime branches should return us with a x value of (a=1, d-a = x) d-1. This way we could just try for those and maybe extrapolate out. Idk I'm just thinking we shouldn't try to do 145 right off the bat because the pattern must work for smaller numbers

Topolanon +++ !!!ZjI4YmE4MzE5Yjlm ID: 8e44f0 Feb. 7, 2018, 10:46 a.m. No.4093   πŸ—„οΈ.is πŸ”—kun

I know what's going on.

Y'all are thinking like the wrong kind of asian.

Chakra reset ;)

https:// youtu.be/2Gfr-nVKnhs?t=1m55s

PMA !dSvrkhSLR6 ID: d1075e Feb. 7, 2018, 11:48 a.m. No.4094   πŸ—„οΈ.is πŸ”—kun   >>4096 >>4098

Found a connection between the parse tree and the grid. Not sure if relevant or what to do with this, but wanted to share.

 

c=6107 tree attached with an "a" formula for d nodes.

 

From the d value in the tree, and using the e value at the same level, you can calculate a valid "a" in the tree using the formula:

 

a = 2d(d+1) + (e+1)/2

 

This formula works only for odd values of e.

 

Also attached is a spreadsheet analysis of "a" values in (23,1). At small values of a the formula doesn't work, but above that it's spot on.

Anonymous ID: c761fd Feb. 7, 2018, 12:29 p.m. No.4095   πŸ—„οΈ.is πŸ”—kun

>>4091

We know that this is solved recursively, which means that each node can be solved (for x or x+n as VQC says) with the solution of the previous two nodes. For 145, the correct X value we want is 7. The nodes for this are 12 and 1. We know that for 1, the X value must be 0, because d=1, a=1, x=d-a. 12 is even, so we chop 12 down until it is 3. Then for 3 we have factors a={1,3}, d=1, so x={0,-2}. So somehow from these two sets:

{0,-2} and {0}

we need to get this: {7,-22}

 

We may be able to do a function on {0,-2} twice because of the 'chopping' of 12.

Anonymous ID: b92360 Feb. 7, 2018, 1:07 p.m. No.4096   πŸ—„οΈ.is πŸ”—kun   >>4097

>>4094

Not sure what to make of this. I broke out the grid and ran your formula on some trees. This can't be a coincidence right?

13*37 = 927

23*55 = 2523

 

Doesn't seem to hold for evrything. Are we just proving some relationship we already know? Sooo many patterns

Anonymous ID: b92360 Feb. 7, 2018, 1:51 p.m. No.4098   πŸ—„οΈ.is πŸ”—kun   >>4099 >>4100

>>4094

Great work PMA, still scratching my head over this one. What kind of magic causes your a formula to be the d value for higher cells in columns left of a cell in the same row?

 

I still fear this is just proving some obvious relationship in reverse… Am I just being a faggot or is this pattern really here? Mind blown for now

PMA !dSvrkhSLR6 ID: d1075e Feb. 7, 2018, 2:27 p.m. No.4099   πŸ—„οΈ.is πŸ”—kun

>>4098

Thanks for looking into this.

 

VQC hinted about triangles.

T(n) = (n*(n+1))/2

 

I bit strange that the formula for a puts 4 of them together, then adjusts for e.

>a = 2d(d+1) + (e+1)/2

 

At worst, this is a coincidence in the tree, and we've learned a bit more about the "a" value and how it works for odd values of e.

 

Alternatively, we need to figure out a formula for even values of e, and see if walking the tree produces anything of value.

 

The other hint was that the tree leads us to an x or x+n. I don't believe we know which x or x+n it is. Could very well be higher up.

PMA !dSvrkhSLR6 ID: d1075e Feb. 7, 2018, 4:01 p.m. No.4100   πŸ—„οΈ.is πŸ”—kun   >>4101

>>4098

Apologies. I'm so lame.

 

Of course Teach has already figured out these formulas for a in terms of t.

>>3495

 

I guess all I'm trying to do is use them from the tree by substituting d for t and seeing what happens.

Anonymous ID: b92360 Feb. 7, 2018, 4:29 p.m. No.4101   πŸ—„οΈ.is πŸ”—kun   >>4102 >>4104

>>4100

I see, missed that post. Should read the whole thread again every so often. No need for apologies

Isn't the pattern I highlighted a different series? I don't see how we would move between columns using x, d, a without having the new e or n first. Note the first image is n=4. There are variations of this for all rows.

ProgramMathAnon !dSvrkhSLR6 ID: d1075e Feb. 7, 2018, 4:44 p.m. No.4104   πŸ—„οΈ.is πŸ”—kun

>>4101

for your n=4 example at {40:4:35:12:23:55}, it does seem pretty interesting that 2(3536) - 4 + 1 == 2523.

 

Perhaps there is a "triangle" way to navigate between columns.

 

Also would be interesting to see if there is any factor shared between these records. Could just be numbers thrown together.

VA !!Nf9AmQNR7I ID: 1d5a78 Feb. 7, 2018, 5:34 p.m. No.4105   πŸ—„οΈ.is πŸ”—kun   >>4106

Ok guys, I'm gonna take another swing at the big picture.

 

So, we start with c,d,e,f (known). n,x,a,b (unknown) What about a basic scan down the e column for matching c,d? We already know there are multiple possibilities, (1,c) [which we can calculate n for], (prime a b) and we know that they have different n values. What if there are more possibilities than just (1,c) and (prime a b)? How do we find all difference of squares that fit c and d for a given e column? Thinking out loud here. Can we write code to find all matching a b for c d? Wouldn't be log n tho :(

VA !!Nf9AmQNR7I ID: 3a9068 Feb. 7, 2018, 5:56 p.m. No.4106   πŸ—„οΈ.is πŸ”—kun   >>4107

>>4105

Basically, Is there a Pattern or Golden Ratio or Fibonacci sequence to the appearance of a and b that make c? And can we then analyze them to find the (prime a b) pattern? Thoughts??

Anonymous ID: b92360 Feb. 7, 2018, 6:18 p.m. No.4107   πŸ—„οΈ.is πŸ”—kun   >>4109

>>4106

>Wouldn't be log n tho :(

Undestatement of the year, any kind of searching (binary, fibonacci numbers, whatever) is completely useless. We already have algorithms to get pretty close to a factor in seconds, but pretty close doesn't cut it with numbers this huge

I know you're trying to inspire us, and since the grid is already infinite, we should assume there are infinite possibilities. Even VQC has said there are multiple ways / paths to factor a number.

Not meaning to be harsh on the internet but without an underlying pattern we're shooting in the dark, which we've been doing for months like a bunch of (really smart) idiots!

We've made progress but analyzing patterns is still what we're doing

 

I think we must be missing something since we've been given enough hints to solve everything and are still fumbling around, if the VQC #1 thread was 95% of it must be some kind of fractal percentage math I don't know about. All you need it addition and multiplication huh? What are we doing with all this square root and division stuff. Re-reading everything tomorrow!

Needs more triangles

VA !!Nf9AmQNR7I ID: 3a9068 Feb. 7, 2018, 6:33 p.m. No.4109   πŸ—„οΈ.is πŸ”—kun   >>4110 >>4116

>>4107

Yeah, Agreed! I have faith. We haven't made quantum leap yet. What are we missing? I'll re-read all crumbs too. We gotta go to archives. Here's the links.

 

Previous Threads

RSA #0 β€”β€” https://archive.fo/XmD7P

RSA #1 β€”β€” https://archive.fo/RgVko

RSA #2 β€”β€” https://archive.fo/fyzAu

RSA #3 β€”β€” https://archive.fo/uEgOb

RSA #4 β€”β€” https://archive.fo/eihrQ

RSA #5 β€”β€” https://archive.fo/Lr9fP

RSA #6 β€”β€” https://archive.fo/ykKYN

RSA #7 β€”β€” https://archive.fo/v3aKD

Anonymous ID: 65f089 Feb. 7, 2018, 7:23 p.m. No.4116   πŸ—„οΈ.is πŸ”—kun   >>4118 >>4147

>>4112

>>4109

 

I would like to see our results consolidated, with a list of claims / theories and results. The first part of the list would include vqc crumbs (interpretations and results) and the second part would include leads that anons are following (and could reference the first list). There are old crumbs and new ones which I think haven't satisfactorily been settled or maybe even understood.

 

example here

>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

 

a= na because n=1 in that row, that's obvious. so what's the other, non obvious meaning? If it was stated, I missed it. I'll look at this old nugget now, and post the result. but if we can work as a group on an organized list, that looks a little like the baker's post but longer and with results beside crumbs… or some other way… I think it'd help.

VeritasAequitas !!Nf9AmQNR7I ID: f2af50 Feb. 7, 2018, 7:24 p.m. No.4117   πŸ—„οΈ.is πŸ”—kun   >>4136 >>4137

>>4113

Don't get us started, LOL! VQC was tearing up the CBTS boards with this, and we are all pretty much open to the idea here. I can't find a non-shopped photo of NP or SP. And there are plenty of cool ass rare photos like this with a hole. All the first VQC maps were mind bending and mind opening. Huge part of why I'm still working on this math quest. New Mysteries to explore here. Opened my mind to all truth, found a bunch of cool new friends, and get to work on math, while traversing the infinity of mind with you all. I'm just fucking honored to be here with all you excellent faggots. May Truth And Justice Prevail. Veritas Aequitas. May the ancient Serpent be smashed down by the heel of Yeshua. May our math success contribute to this WAR of AGES.

 

"The Kingdom Of Heaven Is Inside You."

Anonymous ID: b92360 Feb. 7, 2018, 7:41 p.m. No.4118   πŸ—„οΈ.is πŸ”—kun   >>4119 >>4123

>>4116

Me too, wish we had a wiki, lol. Can't set one up without compromising ourselves. Since we're confined here maybe BO could have a thread for it with the list consolidated in main post if he has time for that.

I don't think we've gone down the road of double meanings and coded words in a meaningful way. Will help out if we can get a useful format going

 

>4117

>Opened my mind to all truth, found a bunch of cool new friends, and get to work on math, while traversing the infinity of mind with you all

Love you! Is this the deepest rabbit hole on the internet right now? Go anon!

BO person/ArchiveAnon ID: 7fa95d Feb. 7, 2018, 8:03 p.m. No.4123   πŸ—„οΈ.is πŸ”—kun   >>4124 >>4125 >>4126 >>4127

>>4118

That was the original point of the board: to more eloquently organize everything, have a list of thread archives, etc. Then /cbts/ turned to shit. We've just sort of been winging the structure of threads and everything so far. Of course you're more than welcome to put something like that together, and I could sticky it if everyone would like. I don't really have the time to go through everything myself at the moment. My life is quite busy and stressful lately (not that anyone needs my life story but one of the things is that I'm moving out of my parents' house quite soon) so while I can easily lurk and maybe make some bitmap images occasionally, someone else is going to have to get all of that information together. I did put some pdfs together early on for the people who knew nothing about programming or how the grid worked. There's a thread somewhere. Maybe that information would come in handy too.

Anonymous ID: 65f089 Feb. 7, 2018, 8:10 p.m. No.4124   πŸ—„οΈ.is πŸ”—kun

>>4123

Yes you are right, I intended to do it earlier but I didn't get around to it. I'll have to chip away at a few of them, and maybe do a mini list. Expand if useful; hard to know which loose ends are most important right now.

Anonymous ID: b92360 Feb. 7, 2018, 8:18 p.m. No.4125   πŸ—„οΈ.is πŸ”—kun   >>4126 >>4133

>>4123

Winging it is fine but organization has its merits too. I will reread everything and cherry pick some stuff but all I can do is post that as a new thread and it'll be outdated when anons contribute. Editing the top post would be nice but its not like we can just ask for mod rights.

Thanks for all you do, its appreciated by all of us! And good luck with your move/rl stuff!

 

Any anons with organization skills are welcome to step up

VeritasAequitas !!Nf9AmQNR7I ID: 06387b Feb. 7, 2018, 8:22 p.m. No.4127   πŸ—„οΈ.is πŸ”—kun   >>4131 >>4133

>>4120

>>4119

You almost got the 4120 for your post of the earth smoking a bowl, lol. :)

 

>>4123

Thanks again AA for planning ahead!

 

Thought: VQC is further along the road of enlightenment, so he doesn't party for good reason. We disciples, on the other hand, were probably attracted here in part by his self which used to party. You gotta like expanding your mind for this kinda work. Pretty cool that he's doing it sober now. Much respect.

VA !!Nf9AmQNR7I ID: 06387b Feb. 7, 2018, 8:42 p.m. No.4130   πŸ—„οΈ.is πŸ”—kun

>>4129

Rules? As in "nature, in order to be ruled, must be obeyed" ?

Dance Of The Cosmos?

Numbers That Grow Like A Tree?

Patterns That Traverse Infinity?

Underlying Order Of The Universe?

Sign Me Up, I wanna be there for that Habbening.

Anonymous ID: 65f089 Feb. 7, 2018, 8:49 p.m. No.4131   πŸ—„οΈ.is πŸ”—kun   >>4133 >>4134

>>4127

>You almost got the 4120 for your post of the earth smoking a bowl, lol. :)

 

What if my post was actually a hint, because inhaling smoke into the pole creates a toroidal vortex?

 

I just realized the pdf here is as useful as anything.

>>3381

Anonymous ID: 65f089 Feb. 7, 2018, 9:18 p.m. No.4132   πŸ—„οΈ.is πŸ”—kun   >>4134 >>4135

ok still gotta work on the hint I was asking about, but… reading the pdf and getting excited here by the imagery:

 

>Integers are also related into families that you have noticed.

>Like fractals.

>They repeat.

>They GROW.

>Sea shells grow.

>Establishing which patterns govern which level of the fractal and which part of the branch of that fractal, will help identify

the factors of c.

>Think decision trees too.

β€”β€”β€”β€”β€”β€”β€”β€”β€”β€”β€”β€”β€”β€”β€”β€”β€”β€”β€”β€”β€”β€”β€”β€”β€”β€”β€”β€”β€”β€”β€”β€”β€”β€”β€”β€”β€”β€”β€”β€”

 

>If in doubt go back to the original (e,n) grid and look for MORE patterns!

>The strange is, the more you enjoy this the more it SINGS it's beauty.

>It IS beautiful.

>Like the Mandelbrot Set.

>Similar rules.

β€”β€”β€”β€”β€”β€”β€”β€”-

What kind of logarithmic spiralling fractal mushroom trip are we looking for here? Rules of mandelbrot set: The Mandelbrot set is the set of complex numbers c for which the function f_c(z) = z^2+c does not diverge when iterated starting at z = 0. We know that VQC's part 2 factor tree iterates taking roots, but for all sub-branches. The mandelbrot set looks at sequences. But it is self-similar (download / write yourself some fractal viewing software for inspiration).

Anonymous ID: 7fa95d Feb. 7, 2018, 9:23 p.m. No.4133   πŸ—„οΈ.is πŸ”—kun   >>4135

>>4125

>>4126

>>4127

Do keep in mind, the reason we left /cbts/ is because a human started doing dumb human stuff that interfered with the function and culture of the board, and I'm also a human. Maybe I don't think I'm going to start doing anything shitty, but I can't imagine anyone who controls this kind of thing ever does, and sometimes they do. You all have the responsibility of keeping me in check.

 

>>4131

I didn't think to put the Twitter DMs that some of us have posted screenshots of into that pdf, but the images in the archived webpages don't work. It would be a good idea to get those messages together (maybe with their context in time too if possible), if everyone who has been messaging Chris on Twitter is reading this and could post them again.

Anonymous ID: b92360 Feb. 7, 2018, 10:08 p.m. No.4135   πŸ—„οΈ.is πŸ”—kun

>>4132

>What kind of logarithmic spiralling fractal mushroom trip are we looking for here?

Would love to know. If I weren't already fucked up in the head, getting a My Little Pony set from the toy store (they sell these right?), adding a random generator and some fancy rotation code to the 3D VQC and taking too much acid could provide insights. Maybe make a slideshow out of Topol's art, not sure I would ever come back from that though

>>4133

Those damn humans…

MM !DMWWK0jvao ID: 5cbb4c Feb. 8, 2018, 1:34 a.m. No.4137   πŸ—„οΈ.is πŸ”—kun   >>4138 >>4139 >>4161

So, re-read a few crumbs and had a breakthrough this eve!

Finally understood the problem: big square, little square, to the point I can picture the whole thing in mind clearly now.

That enabled an excel model to be put together to brute force it, which is working. Not efficient, but a step on a path.

 

It takes about 1 min to factor a 10-digit "c". Lots of extra functions and lookups being done that aren't needed for display purposes, and about 5000x more computationally intensive than needed (see comments below). Ironically, the our beloved 145 case takes about the same time, as it does what it does, isn't smart.

 

Attached are a couple examples (see pics):

c=2,171,394,821

e=71,980

a=42,043

b=51,647

Small square = 42,043

Large square = 4,802

 

and

c=9,806,432,891

e=111,893

a=91,583

b=107,077

Small square = 7,747

Large square = 99,330

 

Some of that time was to calculate "e" which wasn't even being used.

But, knowing the "e" column, thus providing the d-pattern(s), would drastically reduce the table created (this proto just did linear D, still works).

So look at pic in post >>4097 for n=1, in any column, the D value is already around 2250 by the 33rd row (element). That's a 70x reduction in the search space. And matching 2 columns as done in this proto, that means it's 70x squared, or a 5000x reduction. Get it out of excel, this thing should humm.

 

Hey VA - you could try this in excel, screencapped the formula for you.

 

Here's the algorithm if someone wants to code it, should be straightforward. One column in the table is D, next column is D^2, and next is C+D^2.

Basically, just using the INDEX_MATCH function. Return row in COL_A (the "D"), where D^2 (COL_C) = C+D^2 (COL_M). That is the Large Square, returned in COL_N (have extra columns hidden not needed for this from when exploring how e=0 grew). Then, COL_O is the D for that row. Once you have Large and Small square, just a matter of plus and minus to get "a" and "b" (and use the "" if Cols N and O are blank).

In the excel model, Columns R, S, T, U have the same info in first row, just using a MIN function to find them, as it's hard to scroll through 100,000 rows to find where the match occurred.

 

Big night with Q too - takedown in China (with juicy intel re: the window and techniques) and big pharma treadmill vs cures. YUUGE! Feels like a winning day all round!!!

 

Thanks for the motivation everyone!

Think we've got this now!!!

 

Also believe VQC let us go down the triangle and other paths, as even if we don't need that for step 1, we're going to need it soon enough, and we're learning math, and that's one of the goals.

 

BTW, everyone should read about the singer Chris Curtis as listed here: >>3862

That VQC is one clever Kiwi!!!

Not only a band called "The Searchers", read the whole archive, it's fun. Here's a snippet - note the tin-foil story, perfect for us conspeericy folks!

"Curtis's concept was a band with a core of three members: Curtis, Lord and Robbie Hewlett. The other musicians would be engaged whenever the core felt like it. "They would jump on and off the roundabout. But I left that party in a new band, Roundabout." said Lord.

Curtis would arrange for Daimler limousines to taxi him about and was charging the cost to Tony Edwards. Edwards realised that he had made a mistake agreeing to manage Curtis but he liked what he saw of Jon Lord. And Lord was also having problems with Curtis, who had started to use LSD. Lord returned from a few days away with The Flowerpot Men to find the entire flat covered in aluminium foil. Everything; even the furniture and the light bulbs.

Curtis moved out soon after this but he did tell Lord that he had a guitarist in mind for Roundabout. Curtis arranged for Ritchie Blackmore and his girlfriend to fly over from Hamburg, Germany and meet Tony Edwards. The meeting was a success for Blackmore, Edwards and Lord but they had no room for the erratic Curtis. They changed their name to Deep Purple and their first single was Joe South's "Hush", which Curtis had been playing in Lord's flat for months."

 

>>4117

>>4136

HERE HERE HERE!!!

MM !DMWWK0jvao ID: 5cbb4c Feb. 8, 2018, 1:49 a.m. No.4138   πŸ—„οΈ.is πŸ”—kun

>>4137

oops, late, types that one wrong, should be:

c=2,171,394,821

e=71,980

a=42,043

b=51,647

Small square = 4,802

Large square = 46,845

 

Attached 2 crumbs that led to this, as listed in the MAP above. One was a DM - please do share your DM's anons!

"Where we go one, we go all!"

"The Kingdom Of Heaven Is Inside You."

MM !DMWWK0jvao ID: 5cbb4c Feb. 8, 2018, 2:19 a.m. No.4141   πŸ—„οΈ.is πŸ”—kun   >>4146

>>4139

Right.

 

And in:

[71980,1]

where exactly are the 4802 and 46845, which should be 42,043 elements(?) apart.

 

And for:

[111893, 1]

the 7747 and 99330 values, which are 91583 apart (providing a).

^^^

I think the e's listed may be the f's, not to the floor (easy to adjust). But need to find in the cells.

Can use 115 (5x23 with e=15) to validate.

That's next, then back to the calcs.

ID: add73d Feb. 8, 2018, 2:43 a.m. No.4146   πŸ—„οΈ.is πŸ”—kun

>>4141

na and nb for any c are n elements apart.

 

You might find my traversal code useful.

 

https://anonfile.com/TeH6q3d8bd/VQCGUI_v2.7z

The source code is included, I only put it in a JAR because there are a lot of classes and it has a neat theme

 

Example:

145 = 5 * 29

55 is 5 cells apart from 529 in (1,1).

ID: add73d Feb. 8, 2018, 2:55 a.m. No.4147   πŸ—„οΈ.is πŸ”—kun   >>4148

>>4116

Will do. We've discovered a lot. For example, the parity of n is known. Plus we've invented a ton of new algorithms, though none (yet) have beaten sieving. Another is that if gcd(e,d) isn't 0, it is a factor of c.

Anonymous ID: 7fa95d Feb. 8, 2018, 3:02 a.m. No.4149   πŸ—„οΈ.is πŸ”—kun   >>4150 >>4151 >>4152

>>4148

That makes me think; how are we going to explain this to the world when it's done? Should we try to make some kind of long and concise text-based explanation, or should we turn it into a video with graphics and someone brave's voice, or what? I kind of just went with the text-based thing when I was trying to help the lurkers who can't code etc however long ago that was but it would be better to discuss and organize it rather than just having someone like me decide that they should do it all.

ID: add73d Feb. 8, 2018, 3:12 a.m. No.4151   πŸ—„οΈ.is πŸ”—kun

>>4149

We need to say it loud and clear, ANYONE can be a GENIUS!

 

I will definitely make an explanation of the VQC, fractals, the tree, and the final piece that ties it together when we find it.

 

Needs to be a picture too, so it spreads far and wide :-)

Topolanon +++ !!!ZjI4YmE4MzE5Yjlm ID: 8e44f0 Feb. 8, 2018, 3:13 a.m. No.4152   πŸ—„οΈ.is πŸ”—kun   >>4153

>>4149

You make it an open class with video series and different levels for people who comprehend this stuff vs people like me who have no earthly idea what you're talking about. Programming? Primes? Making the Matrix? The hell is a VIRTUAL Quantum Computer? Etc etc.

Anonymous ID: 7fa95d Feb. 8, 2018, 3:26 a.m. No.4153   πŸ—„οΈ.is πŸ”—kun   >>4154

>>4150

It's going to be really funny when mainstream news anchors try to explain how it happened. Every so often when a big tech thing happens I look for the reaction from TV news places just to watch them bumble around not knowing what the fuck they're talking about, e.g. when they talk about darknet drug markets, or the hacker known as 4chan.

 

>>4152

>people like me who have no earthly idea what you're talking about

This has been my thought since the start. The whole point of this disclosure is to make people aware that we have a fundamental misunderstanding of how mathematics works and to hopefully change the world for the better. When it is ready, it'll most likely seem like something only scholarly PhDs can grasp to everyone who hasn't been following along like us, at least at a surface glance. If we could explain everything from the ground up as simply as possible, it would greatly help in making this common knowledge instead of just being something that gets studied at high levels in universities behind literal and figurative closed doors. It's just a question of whether it would be enough to type it all out or if we'd need to put videos together (and if we put videos together instead of typing it all that implies that there wouldn't be a lot of reading involved, which implies that one of us has to record their voice, potentially de-anonymizing themselves), or if we could have a big infographic (it would have to be huge and there would likely be a fuck ton of text anyway). Any ideas?

Topolanon +++ !!!ZjI4YmE4MzE5Yjlm ID: 8e44f0 Feb. 8, 2018, 3:43 a.m. No.4154   πŸ—„οΈ.is πŸ”—kun   >>4156 >>4158

>>4153

For starters, I'm about as anonymous as the sun, so if need be I can do the voiceover.

 

Second, i'm not completely clueless considering that I've gotten ahead of you guys on multiple occasions… not that I understood why or how but my head was in the right spot. This isn't rocket science. It's SecondLife Science.

 

As for how to essplain to the laymen, that's going to be infinitely easier when the equation/Genesis Cell/algorithm is finalized. You start by showing them how the Genesis Cell expands… make it a self contained download package/zip/rar with everything needed to operate the VQC for even the most computer illiterate. Plug'n'play.

 

Then we'll have TL;DR videos for the basic gist of it, then intermediate videos for the Math Savvy, and then advanced courses for the Programmers. Like I said… make this a class.

 

Show people what REAL education looks like.

ID: add73d Feb. 8, 2018, 9:08 a.m. No.4159   πŸ—„οΈ.is πŸ”—kun

>>4157

You can create (e,n,t) w/ pen and paper.

You can calculate (e, N, T) w/ pen and paper.

You can calculate (e, 1, T) w/ pen and paper.

 

No programming necessary. I'll write down the equations in a sec.

Topolanon +++ !!!ZjI4YmE4MzE5Yjlm ID: 8e44f0 Feb. 8, 2018, 1:26 p.m. No.4166   πŸ—„οΈ.is πŸ”—kun

OOOH! OOOH! I FOUND ANUDDER ONE!

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

 

AND FUCK IT! I FOUND MORE ON TOP OF THAT!

 

https:// en.wikipedia.org/wiki/Category:Figurate_numbers

Anonymous ID: add73d Feb. 8, 2018, 3:53 p.m. No.4173   πŸ—„οΈ.is πŸ”—kun

>>4171

Open the catalog.

 

>>4170

I've already seen somewhat of how 0,n and e,1 are the same. You'll see that (0,n) or (0,n-1) contains c, and e,1 of course has the pattern of factors of n and factors of n-1.