Question: python please. D. (15 points) Pythagorean Triples A Pythagorean triple is a set of three positive integers a, b, and c that satisfy the relationship

python please.
D. (15 points) Pythagorean Triples A Pythagorean triple is a set of three positive integers a, b, and c that satisfy the relationship a bc. For part D write two functions. The first is called pairInTriple, which takes as input two numbers and returns True if the numbers are part of a Pythagorean triple, and returns False otherwise Secondly, write a function called maxofTriple, which takes as input one number, and returns True if the number is the maximum value in some Pythagorean triple, and returns False otherwise. An example execution is: >>> print (pairInTriple (3,5)) True >>> print (pairInTriple (3,4)) True >>> print (pairInTriple (7,5)) False >>> print (maxOfTriple (12)) False >>> print (maxOfTriple (13)) True You may assume the inputs used to test your function are valid integers
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
