determine if l=these points have a right angle
2,3 6,3 2,7

See Answers (1)

Accepted Answer

The points (2, 3)  (6, 3), and  (2, 7) sides corresponds to length of 4 : 4 : 5 and do not form Pythagorean triple hence they do not form a right angleHow to determine if the points (2, 3)  (6, 3), and  (2, 7) form a right angleThe distance between the points is calculated and Pythagoras theorem is used to determine if the triple  forms a right anglelet the points be A (2, 3)  B (6, 3), and  C (2, 7)using the equationd = √{(x₁ - x₂)² + (y₁ - y₂)²}AB = √{(2 - 6)² + (3 - 3)²} = 4BC = √{(6 - 2)² + (3 - 7)²} = 5CA = √{(2 - 2)² + (3 - 7)²} = 4Learn more on Pythagoras theorem here:https://brainly.com/question/29241066#SPJ1