find the coordinates of the intersection point of the two diagonals of a quadrilateral joined by plotting the given points
A(1,0) P(-4,3) L(-4,-4) S(2,-2)
20 points question
plz answer fast I will mark as brainliest ansld give thanks also
useless answer will be reported surely
Answers
Answered by
3
Answer:
set them equal, and solve for x, and then plug in x into either equation and get y. Just basic math
m1*x+b1 = m2*x+b2
and so on to solve for x. m is just the slope deltaY/deltaX you get from using your two diagonal points. You can use
coeffs = polyfit(x,y,1); % coeffs(1) = m, coeffs(2) = b
if you want.
Similar questions