Obligatory ‘Yay, my first post!’ :smack:
Into a thread that’s been quiet for the best part of a year.
Anyway, now that’s out of the way, onwards…
Your 1/((sqrt2-1)^2) number or roughly 5.8284271247 seems to have some significance to a little something I’m working on.
Boiled down I’m looking for infinite lists of Pythagorean triangles, and most of the functions I’ve explored, the gradient tends toward 0, i.e. my slices of cake get thinner and thinner. It’s a consequence of how I went about looking for them.
So instead this time I’m exploring triangles where the gradient tends toward 1, very easy to do with lots (and I mean lots) of scrolling on a spreadsheet.
The first column (a) increases by 1 every row, second column (b) is just a+1, third column © uses Pythagoras’ theorem to give the length of the hypotenuse. The gradient tends toward 1 as the difference between a and b (always 1) becomes smaller and smaller when compared a and b as they go up and up and up. Anyway I’m digressing here.
The table goes as follows:
a - b - c
1 - 2 - 2.236068
2 - 3 - 3.605551
3 - 4 - 5 - The classic, there should be songs written about this one.
4 - 5 - 6.403124
5 - 6 - 7.810250
6 - 7 - 9.219544
7 - 8 - 10.63015
8 - 9 - 12.04159
9 - 10 - 13.453624
10 - 11 - 14.866068
11 - 12 - 16.278820
12 - 13 - 17.691806
13 - 14 - 19.104973
14 - 15 - 20.518284
15 - 16 - 21.931712
16 - 17 - 23.345235
17 - 18 - 24.758836
18 - 19 - 26.172504
19 - 20 - 27.586228
20 - 21 - 29
That should give an idea I hope. So then when continuing the list I get the following triangles…(and x doesn’t mean times here)
axbxc
3x4x5
20x21x29
119x120x169
696x697x985
4059x4060x5741
23660x23661x33461
137903x137904x195025
With this list, when dividing the a, b or c numbers by their previous one you get… (and I’m bolding the bits which match our 1/((sqrt2-1)^2) number or 5.8284271247 from earlier)
6.6666666667 - 5.25 - 5.80
5.95 - 5.7142857143 - 5.8275862069
5.8487394958 - 5.8083333333 - 5.8284023669
5.8318965517 - 5.824964132 - 5.8284263959
5.8290219266 - 5.8278325123 - 5.8284271033
5.8285291631 - 5.8283250919 - 5.8284271241
They do seem to be tending toward that number, the third column more rapidly than the others, but still, the direction is clear. I would’ve gone further if it weren’t for the fact that I’ve already had to copy/scroll down to row 138,000 just to get those 8 triangles, and based on the evidence, I’d have to continue to around row 803,758 to get the next one.
So yeah this is just a comment about how 5.8284271247… seems to have some significance of sorts, to me anyway.
I guess I’ll be turning those raw numbers into functions of n next, which brings me on to a question, surely there’s a more elegant way of putting 1/((sqrt2-1)^2)? I kinda skipped through a lot of the posts, so there could be one right there somewhere, I’ll look later.