Integer Triangles and Diophantine Equations?
The following question, asked recently:
http://answers.yahoo.com/question/index;_ylt=AsnFLVY.dl2IhKM9L_SF1czsy6IX;_ylv=3?qid=20080425152838AAnoHXg&show=7#profile-info-eXcGECHBaa
reminded me an old similar problem I have almost forgotten about: in triangle ABC the angle A is 3 times greater than angle B and all side lengths are integers (unlike the most well-known example with angles 30°, 60° and 90°, all of its sides can not be integers).
Find all such triangles (or, at least , some of them).
The solution involves a 3rd degree Diophantine equation - the most interesting point.
Excellent achievement, Falzoon, congratulations!
This is the way exactly - eliminating A from
a/sin(A) = b/sin(3A) = c/sin(4A)
we reach the Diophantine equation:
(1) ac² = (a + b)(b - a)²
/Yours is with exchanged a and b/
It has infinitely many solutions indeed, just to mention 2 of them Your program has missed:
a = 216, b = 384, c = 280 /similar to (27, 48, 35)/;
a = 216, b = 510, c = 539 /primitive/
Try to solve (1) analytically now, I have an expression set, giving all primitive solutions as I suppose, I'll publish it later, the side a is a perfect cube indeed.
Such triangle can be neither right, nor isosceles, but can be ALMOST ISOSCELES - (125, 280, 279) - special congratulations for finding it!
My fault, I wanted it to be
angle(B) = 3*angle(A)
You are quite right, Falzoon, thanks for pointing it out.
You have done a very good work again in EDIT 3.
Dividing (1) by a³ /in my notations/ and denoting x = b/a, y = c/a we obtain
(2) y² = (x + 1)(x - 1)²
Solving (1) in integers is equivalent to find rational points on the cubic curve (2) - it is looking similarly to # 8 below:
http://staff.jccc.net/swilson/planecurves/cubics.htm
exactly as finding the Pythagorean triples is equivalent to find the rational points on the unit circle x² + y² = 1:
http://en.wikipedia.org/wiki/Pythagorean_triples
Using the Euler's secant method we can start with an obvious rational point - the node x=1, y=0 and try rational values of the the secant's slope k in x=1+t, y=kt. That leads to the rational parameterization of (2):
x = z² - 1, y = z(z² - 2), and taking z=m/n back to (1) finally:
(3) a = n³;
(4) b = n(m² - n²);
(5) c = m(m² - 2n²)
Exactly these expressions (only notations differ) are in Falzoon's answer. Here m, n are co-prime naturals, satisfying
(6) n√2 < m < 2n
I suppose (3) - (6) to give all primitive solutions /GCD(a, b, c) = 1/ but this is a conjecture. Can anybody prove/disprove that? The proof may turn out difficult, that's the reason I asked the question.
I also don't know whether the almost isosceles triangles like (125, 280, 279) are infinitely many or not (e.g. the Pythagorean triples where the legs differ by 1 are infinitely many).
The time for answering is about to expire.
I kindly ask everybody who will have more about this intriguing problem, to let me know.