Let $a_k
l=b1+b2+b3+⋯+bkc1+c2+c3+⋯+ck, s=a1+a2+a3+⋯+akc1+c2+c3+⋯+ck
Question: What is the limiting value of l and s?
The difference between this question and the related question: Part 2: Does the arithmetic mean of sides right triangles to the mean of their hypotenuse converge? is that here the triangles are in sequenced in ascending order of the hypotenuse ck where as in the related question, they are sequenced in ascending order of r and s, and depending on the choice of sequencing, the limiting value differs.
SageMath Code
c = 1
sa = 1
sb = 1
sc = 1
f = 0
sx = 0
while(c <= 10^20):
a = c - 1
b = 3
while(a > b):
b = (c^2 - a^2)^0.5
if(b%1 == 0):
if(b <= a):
if(gcd(a,b) == 1):
f = f + 1
sa = sa + a
sb = sb + b
sc = sc + c
sx = sx + 1/c.n()
print(f,c, sa/sc.n(),sb/sc.n(),sx)
else:
break
a = a - 1
c = c + 1
Answer
Quantities x=a/c and y=b/c are the legs of a pythagorean triangle having unit hypotenuse, hence they are the coordinates of points lying on a unit circle centred at the origin, and x=cosθ, y=sinθ with π/4<θ<π/2.
It is reasonable to think that, at least in the case of primitive triples, those points are spread evenly on that arc. In that case their average values are:
⟨x⟩=∫π/2π/4cosθdθ∫π/2π/4dθ=4−2√2π≈0.372923,
⟨y⟩=∫π/2π/4sinθdθ∫π/2π/4dθ=2√2π≈0.900316.
One should then justify that ⟨a⟩/⟨c⟩ and ⟨a/c⟩ have the same limiting value, but that also seems very reasonable. I ran a simulation up to k≈800000 and found the encouraging results:
sk≈0.373,lk≈0.900.
No comments:
Post a Comment