Thursday, 21 August 2014

real analysis - Part 1: Does the arithmetic mean of sides right triangles to the mean of their hypotenuse converge?




Let $a_k be the k-th primitive Pythagorean triplet in ascending order of the hypotenuse ck. Define



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θ=422π0.372923,
y=π/2π/4sinθdθπ/2π/4dθ=22π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 k800000 and found the encouraging results:

sk0.373,lk0.900.


No comments:

Post a Comment

real analysis - How to find limhrightarrow0fracsin(ha)h

How to find lim without lhopital rule? I know when I use lhopital I easy get $$ \lim_{h\rightarrow 0}...