Thanks Try, but I'm not entirely worthy of the kind comments. I made a mistake.
Here's what I did:
Code:Long Leg Short Leg Hypotenuse
---------------------------------
sqrt(8) 1 sqrt(8+1)
sqrt(8+1) 1/2 sqrt(8+1+1/4)
sqrt(8+1+1/4) 1/4 sqrt(8+1+1/4+1/16)
and so on
The distance is sqrt(8 + sum(1 + 1/4 + 1/16 + 1/64 + ...))
1 + 1/4 +1/16 + 1/64 = 1/(1 - 1/4) = 1/(3/4) = 4/3
8 + 4/3 = 28/3
Distance = sqrt(28/3)
The mistake was that I reversed the roles of the long leg and the hypotenuse. It should be:
Code:Hypotenuse Short Leg Long Leg
-------------------------------
sqrt(8) 1 sqrt(8-1)
sqrt(8-1) 1/2 sqrt(8-1-1/4)
sqrt(8-1-1/4) 1/4 sqrt(8-1-1/4-1/16)
and so on
The distance is sqrt(8 - sum(1 + 1/4 + 1/16 + 1/64 + ...))
1 + 1/4 +1/16 + 1/64 = 1/(1 - 1/4) = 1/(3/4) = 4/3
8 - 4/3 = 20/3
Distance = sqrt(20/3)
By the way, the other site had it wrong also, but in a different way. It had:
8 - (1 - 1/4 - 1/16 - 1/64 - ...)
This equates to 8 - (1 - 1/3) = 8 - 2/3 = 22/3