It's all Triples

Geometry Level 3

Let p p be a positive even integer.

Given area A 1 = 60 A_{1} = 60 , find the sum of the areas A 2 + A 3 A_{2} + A_{3} .


The answer is 763344.

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.

1 solution

Rocco Dalto
Jun 9, 2018

This problem was created using a general recursive sequence that I derived using primitive pythagorean triples.

Below is the recursive sequence.

Let

a 1 = m 1 2 + n 1 2 a_{1} = m_{1}^2 + n_{1}^2

b 1 = 2 m 1 n 1 b_{1} = 2m_{1}n_{1}

c 1 = m 1 2 + n 1 2 c_{1} = m_{1}^2 + n_{1}^2 ,

where ( m 1 , n 1 ) = 1 , m 1 > n 1 (m_{1},n_{1}) = 1, m_{1} > n_{1} and m 1 m_{1} is even and n 1 n_{1} is odd.

for ( 1 j n 1 ) (1 \leq j \leq n - 1) let

a j + 1 = c j a_{j + 1} = c_{j}

b j + 1 = ( c j + 1 ) ( c j 1 ) 2 b_{j + 1} = \dfrac{(c{j} + 1)(c_{j} - 1)}{2}

c j + 1 = c j 2 + 1 2 c_{j + 1} = \dfrac{c_{j}^2 + 1}{2}

then for each ( 1 k n ) ( a k , b k , c k ) (1 \leq k \leq n) \:\ (a_{k},b_{k},c_{k}) is a primitive pythagorean triple.

Let p p be a positive even integer with m 1 = p m_{1} = p and n 1 = 1 n_{1} = 1 .

Using the above the first ppt triple is ( p 2 1 , 2 p , p 2 + 1 ) A 1 = 1 2 ( 2 p ) ( p 2 1 ) = 60 p 3 p 60 = 0 ( p 4 ) ( p 2 + 4 p + 15 ) = 0 p = 4 (p^2 - 1,2p,p^2 + 1) \implies A_{1} = \dfrac{1}{2}(2p)(p^2 - 1) = 60 \implies p^3 - p - 60 = 0 \implies (p - 4)(p^2 + 4p + 15) = 0 \implies p = 4 .

The second ppt triple is ( p 2 + 1 , ( p 2 + 2 ) p 2 2 , p 4 + 2 p 2 + 2 2 ) (p^2 + 1,\dfrac{(p^2 + 2)*p^2}{2},\dfrac{p^4 + 2p^2 + 2}{2}) \implies

A 2 = 1 4 ( p 2 + 1 ) ( p 2 + 2 ) ( p 2 ) = 1 4 ( 16 ) ( 17 ) ( 18 ) = 1224 A_{2} = \dfrac{1}{4}(p^2 + 1)(p^2 + 2)(p^2) = \dfrac{1}{4}(16)(17)(18) = 1224

and

A 3 = 1 32 ( ( p 4 + 2 p 2 + 2 ) ( p 2 ) ( p 2 + 2 ) ( p 4 + 2 p 2 + 4 ) = ( 292 ) ( 290 ) ( 16 ) ( 18 ) = 762120 A_{3} = \dfrac{1}{32}((p^4 + 2p^2 + 2)(p^2)(p^2 + 2)(p^4 + 2p^2 + 4) = (292)(290)(16)(18) = 762120

A 2 + A 3 = 763344 \implies A_{2} + A_{3} = \boxed{763344} .

Of course you could have done the problem using the pythagorean theorem directly.

Note: For the general recursive sequence above the sum of the squares a 1 2 + j = 1 n b j 2 = c n 2 a_{1}^2 + \sum_{j = 1}^{n} b_{j}^2 = c_{n}^2 .

For this problem with p = 4 p = 4 we have: 1 5 2 + 8 2 + 14 4 2 + 1051 2 2 = 1051 3 2 . 15^2 + 8^2 + 144^2 + 10512^2 = 10513^2.

Also note given ( a 1 , b 1 , c 1 ) (a_{1},b_{1},c_{1}) and setting m j + 1 n j + 1 = 1 m_{j + 1} - n_{j + 1} = 1 and m j + 1 + n j + 1 = c j m j + 1 = c j + 1 2 m_{j + 1} + n_{j + 1} = c_{j} \implies m_{j + 1} = \dfrac{c_{j} + 1}{2} and n j + 1 = c j 1 2 n_{j + 1} = \dfrac{c_{j} - 1}{2} and replacing m j + 1 , n j + 1 m_{j + 1},n_{j + 1} into a j + 1 = ( m j + 1 n j + 1 ) ( m j + 1 + n j + 1 ) , b j + 1 = 2 m j + 1 n j + 1 , c j + 1 = ( m j + 1 ) 2 + ( n j + 1 ) 2 a_{j + 1} = (m_{j + 1} - n_{j + 1})(m_{j + 1} + n_{j + 1}), \:\ b_{j + 1} = 2m_{j + 1}n_{j + 1}, \:\ c_{j + 1} = (m_{j + 1})^2 +(n_{j + 1})^2

\implies

a j + 1 = c j a_{j + 1} = c_{j}

b j + 1 = ( c j + 1 ) ( c j 1 ) 2 b_{j + 1} = \dfrac{(c_{j} + 1)(c_{j} - 1)}{2}

c j + 1 = c j 2 + 1 2 c_{j + 1} = \dfrac{c_{j}^2 + 1}{2}

and for each j j such that ( 1 j n ) c j (1 \leq j \leq n) \:\ c_{j} is odd a j , b j \implies a_{j},b_{j} and c j c_{j} are positive integers and ( c j , c j 2 1 2 , c j 2 1 2 + 1 ) = 1 (c_{j}, \dfrac{c_{j}^2 - 1}{2}, \dfrac{c_{j}^2 - 1}{2} + 1) = 1 and a j 2 + b j 2 = c j 2 a_{j}^2 + b_{j}^2 = c_{j}^2 .

0 pending reports

×

Problem Loading...

Note Loading...

Set Loading...