RosettaCodeData/Task/Pythagorean-triples/00DESCRIPTION

25 lines
1.2 KiB
Text
Raw Permalink Normal View History

2016-12-05 22:15:40 +01:00
A [[wp:Pythagorean_triple|Pythagorean triple]] is defined as three positive integers <math>(a, b, c)</math> where <math>a < b < c</math>, and <math>a^2+b^2=c^2.</math>
2013-04-10 23:57:08 -07:00
2016-12-05 22:15:40 +01:00
They are called primitive triples if <math>a, b, c</math> are co-prime, that is, if their pairwise greatest common divisors <math>{\rm gcd}(a, b) = {\rm gcd}(a, c) = {\rm gcd}(b, c) = 1</math>.
2013-04-10 23:57:08 -07:00
2016-12-05 22:15:40 +01:00
Because of their relationship through the Pythagorean theorem, a, b, and c are co-prime if a and b are co-prime (<math>{\rm gcd}(a, b) = 1</math>). &nbsp;
Each triple forms the length of the sides of a right triangle, whose perimeter is <math>P=a+b+c</math>.
;Task:
2013-04-10 23:57:08 -07:00
The task is to determine how many Pythagorean triples there are with a perimeter no larger than 100 and the number of these that are primitive.
2016-12-05 22:15:40 +01:00
;Extra credit:
Deal with large values. &nbsp; Can your program handle a maximum perimeter of 1,000,000? &nbsp; What about 10,000,000? &nbsp; 100,000,000?
Note: the extra credit is not for you to demonstrate how fast your language is compared to others; &nbsp; you need a proper algorithm to solve them in a timely manner.
2013-04-10 23:57:08 -07:00
2017-09-23 10:01:46 +02:00
;Related tasks:
2018-06-22 20:57:24 +00:00
* &nbsp; [[Euler's sum of powers conjecture]]
* &nbsp; [[List comprehensions]]
* &nbsp; [[Pythagorean quadruples]]
2016-12-05 22:15:40 +01:00
<br><br>