6)Given A = (1,1), B = (4,2), C = (3,4) and D = (2,3). Find the intersection of the diagonals of quadrilateral ABCD. Enter your answer in the form "(x,y)".
Probably several ways to do this, but let's get the equation of two lines and find their intersection
The line containing AC has a slope of [ 4 - 1 ] / [ 3 - 1 ] = 3/2
And the equation of this line is
y = (3/2) ( x - 1) + 1
y = (3/2)x +=- 1/2
The line containing BD has a slope of [ 3 - 2] / [ 2 - 4] = -1/2
And the equation of this line is
y = (-1/2)(x - 2) + 3
y = (-1/2)x + 4
To find the x intersection of these lines, we have
(3/2)x - 1/2 = (-1/2)x + 4
2x = 9/2
x = 9/4
And the y coordinate of the intersection is
y = (3/2)(9/4) - 1/2
y = 27/8 - 1/2
y= 27/8 - 4/8
y = 23/8
So...the intersection of the diagonals is ( 9/4, 23/8)