Analyzing the Setup
Imagine you are standing on a coordinate plane, watching a triangle evolve. Its vertices are not static; they are alive, shifting with the flow of a parameter t.
We have vertex A=(acost,asint), vertex B=(bsint,−bcost), and a steadfast anchor at C=(1,0). As t changes, the triangle stretches, rotates, and moves. Our mission is to find the path, or the locus, of its centroid G(x,y).
The Centroid Formula
The centroid is the geometric center, the average of the vertices. It is the point where the medians intersect.
Mathematically, for any triangle with vertices (x1,y1), (x2,y2), and (x3,y3), the centroid is defined by:
x=3x1+x2+x3,y=3y1+y2+y3
Substituting our specific vertices, we obtain the position of our centroid at any moment t:
x=3acost+bsint+1,y=3asint−bcost+0
The Algebraic Dance
Now, we face the challenge: t is everywhere. To find the locus, we need an equation that links x and y directly, without the interference of t.
Let's isolate the trigonometric terms. Multiplying by 3, we get:
This is where the magic happens. We have two equations, and we need to combine them. The standard JEE strategy here is to square both equations and add them to force the identity sin2t+cos2t=1 to emerge.
The Grand Cancellation
Let's perform the squaring:
(3x−1)2=(acost+bsint)2=a2cos2t+b2sin2t+2absintcost
(3y)2=(asint−bcost)2=a2sin2t+b2cos2t−2absintcost
Now, add them together. Look at the cross-terms: +2absintcost and −2absintcost. They vanish, canceling each other out perfectly.
We are left with:
a2(cos2t+sin2t)+b2(sin2t+cos2t)
Since sin2t+cos2t=1, the entire right side collapses into a2+b2.
The Final Reveal
We arrive at our destination:
This is the equation of the locus. It describes a circle.
As t varies, the centroid traces this circular path. You have successfully navigated the complexity of the moving vertices to find the elegant, underlying structure.