American Citizen on Sun, 15 Sep 2024 00:39:51 +0200


[Date Prev] [Date Next] [Thread Prev] [Thread Next] [Date Index] [Thread Index]

Re: trying to find 1/2 angle tangent formuli for rationals


Not sure why we come up with negative values for the first two terms on the pure algebraic for a,b > 0.

? f(a,b)
%2 = [[-b*a^2 - b, (-b^2 - 1)*a, b*a^2 + (b^2 - 1)*a - b], (-b*a + 1)/(a + b)]
but it appears to be correct

On 9/14/24 01:29, Loïc Grenié wrote:
On Sat, 14 Sep, 2024 at 01:36, American Citizen wrote:
Hello:

It is a known (maybe not so well known) fact that if a person is given
the rational values [a,b] for the 1/2 angle tangents of a triangle, then
the 3rd 1/2 angle tangent is also rational and the triangle is a Heron
triangle.

I am trying to find an algebraic _expression_ in GP Pari, which takes as
input [a,b] (rational or symbolic) and outputs the sides of the triangle.

Example:

for the 13,14,15 Heron triangle, the 1/2 angle tangents are [ 1/2,  4/7,
2/3 ]

So if I input f(1/2,4/7) I should expect to see (intermediate value 2/3
for the missing 1/2 angle tangent) and finally 13,14,15

My goal is to input certain rationals creating square sided Heron
triangles (2 of the sides must be squares) and checking to see if we
have a 3rd square side

I know of only 2 such Heron triangles, 4427,4380,1853 and
68595,68104,11789 and I am searching for a 3rd such example.

I do know that the middle side > 842,180, having exhaustively searched
the 42+ quadrillion triangles.

Can we find an algebraic _expression_ for the triangles sides s,t,u, given
a,b as the 1/2 angle tangents?

   The third tangent is just (1-ab)/(a+b) (trigonometry). With a little bit
  of elbow grease, the formulas for s/u and t/u are possible to find from
  Carnot formula. It gives

f(a,b)=my(c=(1-a*b)/(a+b),v=[b*(1+a^2)/(a+b)/(1-a*b),a*(1+b^2)/(a+b)/(1-a*b),1]);[v/content(v),c];

    (Note that in the first two terms of the vector, b can be changed in -b
  but I do not understand what this means).

        Loïc