The Geometry of Constraints
Unlocking the Square
Welcome, future engineer. Today, we are not just solving a problem; we are exploring the hidden architecture of a square.
You have been given a unit square, and inside it, a quadrilateral is dancing, its vertices tethered to the sides of the square. We want to prove that the sum of the squares of its sides, a2+b2+c2+d2, is trapped between 2 and 4.
This is a classic JEE Advanced problem that tests your ability to bridge the gap between visual geometry and algebraic rigor.
Phase 1
The Cartesian Bridge
Imagine standing on a coordinate plane. We place our unit square S with its vertices at (0,0),(1,0),(1,1), and (0,1).
By placing the square here, we have turned a vague geometric shape into a set of precise equations. The sides of the square are now defined by the lines x=0,x=1,y=0, and y=1.
Now, let us place our quadrilateral. Let the vertices be P,Q,R, and S. Since each vertex lies on a side, we can parameterize them: P(x,0),Q(1,y),R(z,1), and S(0,w).
Here, x,y,z, and w are variables constrained between 0 and 1. We have successfully mapped the physical constraints of the problem into the domain of real numbers.
Phase 2
The Distance Formula
Now, we need the lengths of the sides. Let us look at side a, which connects P(x,0) and Q(1,y).
By the Pythagorean theorem, the square of the side length is:
We repeat this for all four sides. For side b (between Q and R), we get b2=(1−y)2+(1−z)2.
For side c (between R and S), we get c2=z2+(1−w)2. Finally, for side d (between S and P), we get d2=x2+w2.
Phase 3
The Algebraic Transformation
Now, let us sum them up. Let L=a2+b2+c2+d2.
When we expand these terms, we find:
L=(2x2−2x)+(2y2−2y)+(2z2−2z)+(2w2−2w)+4
This is where the magic happens. We use the technique of 'completing the square'. For any variable v, we know that 2v2−2v=2(v−21)2−21.
Applying this to all four variables, our expression transforms into:
L=2[(x−21)2+(y−21)2+(z−21)2+(w−21)2]+2
Phase 4
The Final Verdict
This form is the key to the kingdom. Since a squared real number is always non-negative, the minimum value of each term (v−21)2 is 0.
This happens when x=y=z=w=21. Thus, the minimum value of L is 2.
Conversely, since 0≤v≤1, the maximum value of (v−21)2 is (21)2=41. If we set all variables to the boundaries (0 or 1), the sum of the four squared terms becomes 4×41=1.
Plugging this back into our equation, L=2(1)+2=4.
We have proven that 2≤a2+b2+c2+d2≤4. You have just navigated from a simple square to a profound inequality.