Find the number of tetrahedrons in which three of its face triangles have right angles all at the same vertex, and all four of its face triangles have integer areas that have a greatest common divisor of 1 .
This section requires Javascript.
You are seeing this because something didn't load right. We suggest you, (a) try
refreshing the page, (b) enabling javascript if it is disabled on your browser and,
finally, (c)
loading the
non-javascript version of this page
. We're sorry about the hassle.
Nice solution! I meant to put down that the areas have a greatest common divisor of 1 , and I have changed the problem a little bit.
This isn't the only solution; ( x , y , z ) = ( 6 , 4 , 2 ) gives areas 4 , 6 , 1 2 , 1 4 .
Aha - and I've just found what the problem name is about: gua gua gua
Is there a rule to generate all solutions similar to Euclid's formula for generating Pythagorean triples?
The simplest proof that there are an infinite number of coprime quadruplets ( a , b , c , d ) such that a 2 + b 2 + c 2 = d 2 is surely the observation that n 2 + ( n + 1 ) 2 + ( n 2 + n ) 2 = n 4 + 2 n 3 + 3 n 2 + 2 n + 1 = ( n 2 + n + 1 ) 2 for any integer n
Log in to reply
Good one! I like it even better than ( m 2 + n 2 + p 2 + q 2 ) 2 = ( 2 m q + 2 n p ) 2 + ( 2 n q − 2 m p ) 2 + ( m 2 + n 2 − p 2 − q 2 ) 2 from an article on Pythagorean quadruples found here .
Such a tetrahedron is a trirectangular tetrahedron , and by De Gua's Theorem , the areas of the triangular faces are related by:
A A B O 2 + A A C O 2 + A B C O 2 = A A B C 2
One way to show that there are infinitely many solutions to the above equation is to let A A B O 2 + A A C O 2 = k 2 so that k 2 + A B C O 2 = A A B C 2 , two sets of Pythagorean triples.
Using Euclid's Pythagorean triple generator on A A B O 2 + A A C O 2 = k 2 , we obtain A A B O = m 2 − n 2 , A A C O = 2 m n , and k = m 2 + n 2 for some positive integers m > n .
If we further require m and n to have opposite parity, then k will be odd, and will have odd factors 1 and k , so that there exists integers p and q such that p − q = 1 and p + q = k , so that k = k ⋅ 1 = ( p + q ) ( p − q ) = p 2 − q 2 .
Then using Euclid's Pythagorean triple generator again on k 2 + A B C O 2 = A A B C 2 , we obtain k = p 2 − q 2 , A B C O = 2 p q , and A A B C = p 2 + q 2 .
Since p − q = 1 and p + q = k = m 2 + n 2 , these two equations solve to p = 2 1 ( m 2 + n 2 + 1 ) and q = 2 1 ( m 2 + n 2 − 1 ) .
Putting this all together and simplifying gives us the generator:
( m 2 − n 2 ) 2 + ( 2 m n ) 2 + ( 2 1 ( ( m 2 + n 2 ) 2 − 1 ) ) 2 = ( 2 1 ( ( m 2 + n 2 ) 2 + 1 ) ) 2
for positive integers m > n with opposite parity, and this shows us that there are infinitely many solutions .
We can further simplify (but reduce the number of solution sets) by letting m = 2 x and n = 1 , to obtain the generator:
( 4 x 2 − 1 ) 2 + ( 4 x ) 2 + ( 4 x 2 ( 2 x 2 + 1 ) ) 2 = ( 4 x 2 ( 2 x 2 + 1 ) + 1 ) 2
for any positive integer x , whose first few solutions are ( 3 , 4 , 1 2 , 1 3 ) , ( 1 5 , 8 , 1 4 4 , 1 4 5 ) , ( 3 5 , 1 2 , 6 8 4 , 6 8 5 ) , . . . .
Problem Loading...
Note Loading...
Set Loading...
Let the vertices of the tetrahedron be ( 0 , 0 , 0 ) , ( x , 0 , 0 ) , ( 0 , y , 0 ) , ( 0 , 0 , z )
The three faces meeting at the origin are all right-angled triangles. Their areas are 2 y z , 2 z x , 2 x y
We can use the fact that the area of a triangle in 3D space is given by the cross-product of the vectors representing two of its edges to find the fourth face has area 2 1 y 2 z 2 + z 2 x 2 + x 2 y 2
(note how this is related to the areas of the projections of the faces onto the coordinate planes - that's not a coincidence!) Other ways to get this formula are Heron's formula, or using the dot product to work out one of the angles.
Taking ( x , y , z ) = ( 1 , 2 , 8 ) gives areas 1 , 4 , 8 , 9 ; so solutions are possible.
Note that ( x , y , z ) = ( 1 , 8 , 3 0 ) works, as does ( 1 , 3 0 , 1 1 2 ) and ( 1 , 1 1 2 , 4 1 8 ) . Finding a few more terms suggests we should look at the sequence defined by a 1 = 8 , a 2 = 3 0 and a n + 2 = 4 a n + 1 − a n .
I've got a very messy proof that this sequence works; so there are infinitely many solutions, but the neater proof will have to wait.