Name ID: 7194aa July 15, 2019, 9:27 a.m. No.9580   ๐Ÿ—„๏ธ.is ๐Ÿ”—kun

>>9494

Let's see if my mind is going the right place. For some numbers, you may have a v that is < c, which can be used to substitute c. The end result would still be a factor for c. But this isn't always the case, sometimes v = c (because no substitute exists)?

 

>>9508

Why doesn't (3, 1) give us the same "power" to create a superposition for c?

 

>>9545

t's being the smallest t possible when recursing down the triangles?

 

>>9554

The c = x+n element is in many ways beautiful. If you think of it in terms of complex numbers that cell kind just, clicks. d+n being the lateral part while x+n is the number. But it's not enough to go on alone. You need other parts, which I haven't solved yet.

 

>>9570

Capital T being the big T, the t from the na transform for bigN and c?

Name ID: 7194aa July 15, 2019, 9:43 a.m. No.9581   ๐Ÿ—„๏ธ.is ๐Ÿ”—kun

>>9539

>d[t] around d is an incomplete measurement of the superposition. Fine-tune the superposition and measure again (C). Whatโ€™s more precise than C?

 

Fine tuning by either following the d[t]'s into the new e's or by modifying c to "match" (or get a closer match) of the d[t]'s.

Name ID: 7194aa July 15, 2019, 10:28 a.m. No.9585   ๐Ÿ—„๏ธ.is ๐Ÿ”—kun   >>9586 >>9587 >>9589 >>9850 >>9851

I suppose it's kind of wasteful(?) or pointless(?) to share this now, but are you guys familiar with Rascals Triangle?

 

It has some interesting key properties that relate to the grid, columns and e-values a number exist in. I came over it by happenstance when looking into patterns of e's for numbers in different columns.

 

You know Pascal's triangle, it goes like this:

 

1

1 1

1 2 1

1 3 3 1

1 4 6 4 1

โ€ฆ

 

Rascal's triangle was "discovered" (created?) by three kids when given an "IQ" test. It went like this:

 

1

1 1

1 2 1

1 3 3 1

โ€” What is the next number in the sequence

 

They didn't write 1 4 6 4 1, like you would assume based on Pascal's triangle, instead they wrote

 

1 4 5 4 1

 

When you look at Pascals triangle (and Rascals triangle) you can group 4 numbers in a diamond shape. So for:

 

1

1 1

1 2 1

1 3 3 1

1 4 5 4 1

 

A diamond shape here would be

2

1 3

4

 

You can divide the diamond shape into quadrants: North, East, West and South.

 

The pattern is:

South = ((East * West) + 1) / North

 

Pretty sweet, right? But how does it relate to the grid? It turns out that several rows in the rascals triangle is equal to the e's a number at a[t] exists in.

 

Given:

1

1 1

1 2 1

1 3 3 1

1 4 5 4 1

1 5 7 7 5 1

1 6 9 10 9 6 1

 

The a[2] in (1, 1) exists at e's = 1, 6 and 9 and is equal to the last line (row 7). a[3] in (1, 1) exists in e's: 1, 10, 17, 22 and 25 which is equal to the 11th row in the Rascal's triangle. It continues like this, matching the e's a number exist in with the triangle.

 

The formula for calculating the triangle is:

k * (n - k) + 1

 

Here the 1 is equal to the base or column. Swapping it with any other number and it generates the same triangle except for that column. Think of the above triangle as the e-index(?) for (1, 1).

 

I know this isn't much and with the guy who knows and understands the grid here, it feels like it falls quite flat. Either way, I wanted to share with you guys.

Name ID: 7194aa July 15, 2019, 1:59 p.m. No.9588   ๐Ÿ—„๏ธ.is ๐Ÿ”—kun

Last week I had some major hd problems. Essentially I had literally a crash in my drive and I lost all my work. It sucks, and I tried to recover it, but unfortunately I couldn't. Instead I've been rewriting my work and getting back up there. My fault for not backing up and getting a more modern drive I suppose.

 

Some of the last stuff I found was some patterns relating to quantum angular momentum and column (0, 1), (1, 1) and (2, 1). It was related to a few quantum angular momentum matrices (but I have no clue about that stuff, at least not yet). I also don't remember the details, but it was related to the patterns from the Rascal triangle.

Name ID: 7194aa July 15, 2019, 2:03 p.m. No.9589   ๐Ÿ—„๏ธ.is ๐Ÿ”—kun   >>9590

>>9585

Right, so the formula is k * (n - k) + 1, but the pseudocode would be:

 

for n in range(1, limit) (for some limit)

for k in range(0, n) (0 <= k <= n)

value = k(n - k) + column

 

The n represents row, while k would be the column within that row.

Name ID: 7194aa July 15, 2019, 2:20 p.m. No.9595   ๐Ÿ—„๏ธ.is ๐Ÿ”—kun

Note though:

> Isnโ€™t there a cell that can be created using c where the first existing column will be one of its factors?

 

I didn't read that as explicit a factor of c, but rather a factor of the cell you can create from c.

Name ID: 7194aa July 15, 2019, 3:18 p.m. No.9599   ๐Ÿ—„๏ธ.is ๐Ÿ”—kun   >>9600

Just another thing I just noticed, something I haven't seen before.

 

Take an element a, b with an even n. Compute the na transform and then compute the element for a=1, b=na/2. What is the e here? Works for big N (and shadow n's) as well.

Name ID: 7194aa July 15, 2019, 3:21 p.m. No.9600   ๐Ÿ—„๏ธ.is ๐Ÿ”—kun

>>9599

Hmm.. Looks like there are some offsets required here too in some cases.

 

Offsets are a funny thing, we see them so many times. Over and over again something holds for a set of elements, but for others you need the offset.

 

Since we now have someone here who understands and knows the grid, could you give some kind of intuition or understanding of these offsets?