Anonymous ID: 748ab6 April 25, 2019, 9:16 p.m. No.9124   🗄️.is 🔗kun   >>9125

If n is too small, the large square appears as an exact value of i[t] in e or -f

 

That is what the algorithm from earlier is showing, it can be extended.

Anonymous ID: 748ab6 April 26, 2019, 3:51 p.m. No.9126   🗄️.is 🔗kun   >>9127

>>9125

public VQCElement getElementBelowRoot(BigInteger e, BigInteger n, BigInteger d) { BigInteger c = d.multiply(d).add(e); BigInteger f = (d.add(n)).pow(2).subtract(c); BigInteger xpn = sqrt(f); BigInteger x = xpn.subtract(n); boolean eIsEven = isEven(e); boolean xIsEven = isEven(x); if (!(eIsEven == xIsEven)) { x = x.subtract(one); } return getElement(e, n, getT(e, x)); }

Anonymous ID: 748ab6 April 26, 2019, 4:41 p.m. No.9127   🗄️.is 🔗kun   >>9128 >>9130

>>9126

If we input -f, 1, d into this method, calculates

 

c = d^2 + f

(d+1)^2 - c = e

xpn = sqrt(e)

x = xpn - 1

 

So in this way, taking sqrt(e) and sqrt(f) give us the elements that d is between.

Anonymous ID: 748ab6 May 1, 2019, 3:41 p.m. No.9130   🗄️.is 🔗kun

>>9127

I was wrong about half of my observation. sqrt(f) gives you where d is between in (e,1), but sqrt(2f + e) is what gives you where d is in (-f, 1)

 

I misinterpreted an addition operation for a subtraction operation in my program. What it for -f is this:

 

c' = d^2 - f

(d+1)^2 - c' = f'

xpn = sqrt('f)

x = xpn - 1

 

I noticed my mistake because sqrt(e) was giving the wrong x value, but sqrt(2f+e) wasn't.

Anonymous ID: 748ab6 June 28, 2019, 12:59 a.m. No.9364   🗄️.is 🔗kun   >>9378

The importance of column zero is all in the fact that it encodes c value whose remainder is 0, squares

 

It's filled with alternate factorisations of squares

Shouldn't such an alternate factorisation exist for i or squared?