Jump to content
BrainDen.com - Brain Teasers
  • 0


Guest
 Share

Question

A primitive Pythagorean triangle is defined as any triangle with integral sides such that one of the angles is 90º, and also that there is no factor which divides all sides leaving an integer solution. Hence the (3,4,5) triangle is a PPT while (6,8,10) and (9,12,15) are not.

If one googles the Wikipedia entry on the topic, one finds that it mentions an intriguing property of the length of the hypotenuse, namely that it has no factor which leaves a remainder 3 when divided by 4. It is easy enough to show that c = 1 (mod 4), but unfortunately this does not itself prevent say 72 being a factor.

Can you find a simple argument to establish the claim, using modulo arithmetic only?

Edited by jerbil
Link to comment
Share on other sites

18 answers to this question

Recommended Posts

  • 0

A primitive Pythagorean triangle is defined as any triangle with integral sides such that one of the angles is 90º, and also that there is no factor which divides all sides leaving an integer solution. Hence the (3,4,5) triangle is a PPT while (6,8,10) and (9,12,15) are not.

If one googles the Wikipedia entry on the topic, one finds that it mentions an intriguing property of the length of the hypotenuse, namely that it has no factor which leaves a remainder 3 when divided by 4. It is easy enough to show that c = 1 (mod 4), but unfortunately this does not itself prevent say 72 being a factor.

Can you find a simple argument to establish the claim, using modulo arithmetic only?

I didn't quite understand the question after the "..but unfortunately" part.

Sure its easy enough to show c = 1 mod(4) using mod maths but i guess that is not the question. Mind elaborating what exactly is your question?

Link to comment
Share on other sites

  • 0

From first asppearances any two prime factors of the form (4n+3), when multiplied together, form a composite factor of the form (4n+1), which on the surface seems to make them an eligible candidate for c. But in fact this is not the case. No factor of c has the form (4n+3). One way of generating PPTs is to choose two mutually prime odd numbers u and v, with u > v, and calculating the values of

a = ((u2-v2)/2

b = uv

c = (u2+v2)/2.

For example, u = 3, v = 1 give us the (3,4,5) triangle. u = 5, v = 3 give us the (8,15,17) triangle.

Edited by jerbil
Link to comment
Share on other sites

  • 0

Any square of an integer, which is then divided by 4 will have a remainder of 1 or 0, never a 2 or 3. And it is in a patern! Remainders for:

1/4 = r of 1

4/4 = r of 0

9/4 = r of 1

16/4 = r of 0

25/4 = r of 1

36/4 = r of 0

and so on. The patern is 10101010101010101010101.........

Link to comment
Share on other sites

  • 0

Any square of an integer, which is then divided by 4 will have a remainder of 1 or 0, never a 2 or 3. And it is in a patern! Remainders for:

1/4 = r of 1

4/4 = r of 0

9/4 = r of 1

16/4 = r of 0

25/4 = r of 1

36/4 = r of 0

and so on. The patern is 10101010101010101010101.........

show the definition of even and odd.. just a little more complicated that's all... o-0

an odd number is defined as such when dividing the number by 2 produces a remainder of 1...

what did you do?

n2/22...

the squares basically cancel each other out :)

not the answer though.

Link to comment
Share on other sites

  • 0

Any square of an integer, which is then divided by 4 will have a remainder of 1 or 0, never a 2 or 3. And it is in a patern! Remainders for:

1/4 = r of 1

4/4 = r of 0

9/4 = r of 1

16/4 = r of 0

25/4 = r of 1

36/4 = r of 0

and so on. The patern is 10101010101010101010101.........

From jerbil's post, we know

One way of generating PPTs is to choose two mutually prime odd numbers u and v, with u > v, and calculating the values of

a = ((u2-v2)/2

b = uv

c = (u2+v2)/2.

Now, u2+v2 for two mutually prime odd numbers can be re-written as 2*u2+8*x. Dividing by 2, we have c = u2+4*x. Therefore, dividing c by 4 will have the same remainder as dividing u2 by 4, which must be 0 or 1 as psycho has brought to our attention.

Link to comment
Share on other sites

  • 0

From jerbil's post, we know

Now, u2+v2 for two mutually prime odd numbers can be re-written as 2*u2+8*x. Dividing by 2, we have c = u2+4*x. Therefore, dividing c by 4 will have the same remainder as dividing u2 by 4, which must be 0 or 1 as psycho has brought to our attention.

I mistakingly switched u and v, but I believe the logic still holds, simply replacing my u above with v.

Link to comment
Share on other sites

  • 0

One way of generating PPTs is to choose two mutually prime odd numbers u and v, with u > v, and calculating the values of

a = ((u2-v2)/2

b = uv

c = (u2+v2)/2.

Now, u2+v2 for two mutually prime odd numbers can be re-written as 2*v2+8*x. Dividing by 2, we have c = v2+4*x. Therefore, dividing c by 4 will have the same remainder as dividing v2 by 4, which must be 0 or 1 as explained below.

We can express the odd prime number v as either 4n+1 or 4n+3. When we square both of these, we get a number with mod4 = 1. Therefore, C should have mod4 = 1.

Link to comment
Share on other sites

  • 0

I understand your last post, which, in my view is a dead end. I have to say that, in my approaches, I certainly came to many dead ends myself.

In your future posts, may I suggest you utilize the toolbar to allow you use it to make your equations more simple to read? For example, using y2 to represent y2 is unnecessary. Just place in "y2" then backspace on the "2", and then press the relevant button on the toolbar. The same goes for suffices.

Link to comment
Share on other sites

  • 0

I understand your last post, which, in my view is a dead end. I have to say that, in my approaches, I certainly came to many dead ends myself.

In your future posts, may I suggest you utilize the toolbar to allow you use it to make your equations more simple to read? For example, using y2 to represent y2 is unnecessary. Just place in "y2" then backspace on the "2", and then press the relevant button on the toolbar. The same goes for suffices.

Sorry. I simply copied the quote, and expected the formatting to not change.

Link to comment
Share on other sites

  • 0

Perhaps I can make the claim I am making somewhat more vivid. I am stating that the hypotenuse of a PPT can never be a multiple of such prime numbers as 3, 7, 11, 19, 23, 31 and 43 (and so on.)

Link to comment
Share on other sites

  • 0

Perhaps I can make the claim I am making somewhat more vivid. I am stating that the hypotenuse of a PPT can never be a multiple of such prime numbers as 3, 7, 11, 19, 23, 31 and 43 (and so on.)

I understand the question, can you post a spoiler hint? I don't see any way of going about it

Link to comment
Share on other sites

  • 0

Definitely not, methinks. I do not see how a hint, as such, can be of any benefit. The solution, unfortunately not originating from yours truly (I wish I were that intelligent) will be posted shortly.

Edited by jerbil
Link to comment
Share on other sites

  • 0

I immediately felt guilty about my previous post. Here is a hint, underneath a spoiler.

Consider the modular equation a2 + b2 = 0 (mod 4). Under what circumstances might this occur?

Link to comment
Share on other sites

  • 0

I immediately felt guilty about my previous post. Here is a hint, underneath a spoiler.

Consider the modular equation a2 + b2 = 0 (mod 4). Under what circumstances might this occur?

this can only be true when a2 AND b2 are both multiples of 4. This also implies that c2 is a multiple of 4 and that the equation can therefore be divided by 4 and is not a PPT. For a PPT, c2 can not have mod4 of 0. It can only have mod4 of 1.

I'm still missing the part about how the factors of c2 can not include a number with mod4 of 3.

Link to comment
Share on other sites

  • 0

I apologise for an earlier typo - maybe this will compensate.

1. There is no solution to the equation j2 = -1 (mod p) if p = 3 (mod 4). Even this takes a bit of proving.

2. If a prime number p = 3 (mod 4) divides a number n = a2 + b2, then this prime number also divides both a and b.

The idea is that if the hypotenuse c is divisible by a prime number of the form 3 (mod 4), then such a number also divides the two legs a and b, so that the triad (a,b,c) cannot be a PPT.

Link to comment
Share on other sites

  • 0

I apologise for an earlier typo - maybe this will compensate.

1. There is no solution to the equation j2 = -1 (mod p) if p = 3 (mod 4). Even this takes a bit of proving.

2. If a prime number p = 3 (mod 4) divides a number n = a2 + b2, then this prime number also divides both a and b.

The idea is that if the hypotenuse c is divisible by a prime number of the form 3 (mod 4), then such a number also divides the two legs a and b, so that the triad (a,b,c) cannot be a PPT.

I believe the only thing remaining is to show that c2[/sup can not have a factor p=3 (mod4) that is NOT prime.

Link to comment
Share on other sites

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Answer this question...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

Loading...
 Share

  • Recently Browsing   0 members

    • No registered users viewing this page.
×
×
  • Create New...