Consider an ellipse $\frac{x^2}{a^2} + \frac{y^2}{b^2}=1$
We want to find the locus of the midpoints of all those chords whose length is constant $(=2c)$
Here's my approach:
Let the midpoint of the chord be $(h,k)$ So, the equation of the chord passing through it is given by:
$$T=S_1$$ $$\implies \frac{xh}{a^2} + \frac {yk}{b^2} -1 = \frac{h^2}{a^2} + \frac{k^2}{b^2}-1$$
Then, from this equation, I found x in terms of y, substituted it into the equation of ellipse.
Also, I found y in terms of x and substited it into the equation of ellipse.
Each of the substitution resulted in two quadratic equations in terms of x and y.
We can find sum and products of its roots to get these:
$$ x_1 + x_2 = \frac{2a^2 h k^2 + 2b^2 h^3}{a^2k^2 + b^2h^2}$$ $$ x_1 x_2 = \frac{(b^2h^2+a^2k^2)^2-a^4b^2k^2}{a^2b^2k^2 + b^4h^2}$$
$$ y_1 + y_2 = \frac{2b^2 h^2 k + 2a^2 k^3}{a^2k^2 + b^2h^2}$$ $$ y_1 y_2 = \frac{(b^2h^2+a^2k^2)^2-a^2b^4h^2}{a^2b^2h^2 + a^4k^2}$$
Here, $(x_1,y_1)$ and $(x_2,y_2)$ are actually the points where the the chord intersects the ellipse.
So, using distance formula,
$$2c = \sqrt{(x_1 - x_2)^2 + (y_1-y_2)^2}$$
Squaring both sides, and simplifying:
$$ 4c^2 = (x_1 + x_2)^2 + (y_1 + y_2)^2 - 4(x_1 x_2 + y_1 y_2)$$
Now, We can substitute the values of $x_1 + x_2, x_1x_2, y_1 +y_2,y_1y_2$ that we got earlier to finally get the answer.
However, I don't think that would be a "humane" thing to do.
Also, Please tell me if there are other methods to approach this problem.