Analyzing the Setup
Imagine you are standing on a coordinate plane. You are given three points: A(1,2), B(3,4), and C(2,5).
The problem asks for the diagonal AD of a parallelogram named ABDC. Stop right there. Did you notice the order? It is ABDC, not ABCD.
This is a classic JEE trap. If you blindly assume the order is ABCD, you will connect the wrong vertices and find the wrong diagonal.
In geometry, the order of vertices defines the path of the perimeter. A connects to B, B to D, D to C, and C back to A. This means AD and BC are the diagonals.
The Geometric Insight
Now that we have the correct order, how do we find vertex D(a,b)? We could use slopes, but that is tedious.
Instead, let us use the most powerful property of a parallelogram: its diagonals bisect each other. This means the midpoint of diagonal AD is identical to the midpoint of diagonal BC.
This is our logic bridge. It turns a complex coordinate problem into a simple equality.
The Calculation
Let us find the midpoint M of the diagonal BC. Using the midpoint formula:
Plugging in B(3,4) and C(2,5), we get:
M=(23+2,24+5)=(2.5,4.5)
Now, we apply this to the diagonal AD. With A(1,2) and D(a,b), the midpoint is:
Since the diagonals bisect, we set these equal:
Solving for a and b is straightforward:
We have successfully located vertex D(4,7).
The Final Line
We are almost there. We need the equation of the line passing through A(1,2) and D(4,7). We use the two-point form:
y−y1=x2−x1y2−y1(x−x1)
Substituting our points, we get:
This simplifies to:
Cross-multiplying by 3 gives 3(y−2)=5(x−1), or 3y−6=5x−5. Rearranging into the standard form Ax+By+C=0, we arrive at the final result:
5x−3y+1=0