Teach !!UgZAPoSXEk ID: 1dac59 Feb. 10, 2018, 2:34 p.m. No.4251   ๐Ÿ—„๏ธ.is ๐Ÿ”—kun   >>4254 >>4261 >>4285 >>4290 >>4294

>>4239

Welcome back, and thanks for the tips.

A few possible answers to the questionsโ€ฆ

 

1+8T for odd squares:

Draw odd square, remove middle square, divide remaining into 4 equal rectangles, by drawing out from the middle square.

Each rectangle's sides are only 1 different from each other, which is the same as 2 equal triangles.

See image.

 

Why is (n-1) important?

I think it has to do with the same property.

A square with 1 row or 1 column removed is 2 equal triangles of (n-1) each.

Teach !!UgZAPoSXEk ID: 1dac59 Feb. 10, 2018, 3:52 p.m. No.4259   ๐Ÿ—„๏ธ.is ๐Ÿ”—kun   >>4268

>>4252

C'mon CA share! :) hopes are up.

 

>>4254

Thanks PMA. So have you come to any conclusion about the e%4 parity of x+n yet?

 

Also a few more comments, sorry if these are obvious.

A square with even side length can be divided into 4 equal smaller squares, so we can reduce a big square of even parity into 4 smaller squares repeatedly until they're odd.

 

A while ago vqc posted about base. I think I've kinda figured out how that plays into itโ€ฆ

 

Example c=145, in base 2 = 10010001

c = 2^7 + 2^4 + 1.

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

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

c = 8(2(8(โ–ณ1) + 1)) + 1

Teach !!UgZAPoSXEk ID: 1dac59 Feb. 10, 2018, 4:17 p.m. No.4263   ๐Ÿ—„๏ธ.is ๐Ÿ”—kun   >>4265 >>4271

>>4261

See my latest post :)

 

But you do have an interesting idea hereโ€ฆ

Now we can break down either even or odd squares into triangles, and you're saying we can reverse the entire process and move up instead of down?

I like that thought.

Teach !!UgZAPoSXEk ID: 1dac59 Feb. 11, 2018, 10:36 p.m. No.4412   ๐Ÿ—„๏ธ.is ๐Ÿ”—kun   >>4423 >>4426 >>4489

Hey guys!

Thanks VQC for the guidance!

This is pretty overwhelming all this new info - love it though!

 

>>4376

First off, Topol! Great to put a face to the ideas! I've actually watched some of your videos before not knowing it was our very own!

 

>>4382

VA I'll keep that tab open too, and hopefully I can help out a little.

 

>>4407

This is cool CA! Multidimensional Triangles!

 

So I've been reading and trying to understand all the crumbs. It seems that this one in particular might be useful to focus on:

>>4337

 

I've been playing with a simple example, with small numbers just to try to understand:

a = 3

b = 29

c = 87

d = 9

e = 6

f = 13

(f-2)/8 = 1

(f-2)%8 = 3

x = 6

n = 7

xpn = 12

half_xpn = 6

test_correct_base = 7

(f-2)/8 factors = 1,1

 

So if we go back to our original calculation of f in the grid, the associated values to f were calculated by using d=d+1, x=x+1, and n=n-1.

 

And this crumb is saying that we can move not in increments of 1, but in increments where the last d we add to f has the same "left over" as (f-2)%8.

 

The one part I'm most confused about is the division by 5:

>>4334

I can see that we can test for small divisors, such as 2, 3, or 5, but I don't get why we do that specifically.

 

Comments on my thinking guys?

Teach !!UgZAPoSXEk ID: 1dac59 Feb. 12, 2018, 12:29 a.m. No.4429   ๐Ÿ—„๏ธ.is ๐Ÿ”—kun   >>4430 >>4717 >>4718

>>4360

Also, I just want to add, I'm very open to helping create the single html page. I have all the pieces ready to go, and I'm totally down to collaborate!!

 

I'd like to share all my code, I'm just concerned about linking it back to my personal identity somehow.

Also, I stopped posting JS snippets because I thought I was the only one using JS!

Teach !!UgZAPoSXEk ID: 1dac59 Feb. 12, 2018, 12:41 a.m. No.4432   ๐Ÿ—„๏ธ.is ๐Ÿ”—kun   >>4433 >>4439

>>4430

Well, I was thinking about using a git provider, to share the code, because i'm updating it constantly, and that would be the easiest way to share and collab.

I could host the git server on:

1) my home server - linked to my ip

2) my amazon server - linked to my cc

3) use another cloud provider - trying to find a secure one that doesn't track IP (also, concerned about keys now but that's a separate issue)

Any suggestions?

 

>>4426

Perhaps he simply chose 5 "arbitrarily" because it was easy to see.

 

So I have another question, is x or n larger? Is it possible to tell?

How do we go about aiming for this n<HERE<x+n?