Problem Statement
What is the midpoint of the segment joining (2, −1) and (8, 5)?
Explanation
Midpoint M = ((x₁ + x₂)/2, (y₁ + y₂)/2). So M = ((2 + 8)/2, (−1 + 5)/2) = (10/2, 4/2) = (5, 2).
Code Solution
SolutionRead Only
M=((2+8)/2,(−1+5)/2)=(5,2)
Practice Sets
This question appears in the following practice sets:
