Locus of points $(a,b)$ such that circle $(x-a)^2+(y-b)^2=b^2$ is tangent to parabola $y=x^2$

123 Views Asked by At

Let $P \colon\; y = x^2$ be a parabola and $C_{a,b} \colon\; (x-a)^2 + (y-b)^2 = b^2$ be a circle.

Suppose that $C_{a, b}$ contacts the parabola $P$ with one point, i.e., $C_{a, b}$ tangential to $P$.

Is it easy to describe the locus of the center $(a,b)$ of $C_{a,b}$?

It seems that a complicated quartic equation $f(a, b)$ should be the answer, but would be some simple presentation via polar equation or something else.

2

There are 2 best solutions below

0
On

It is advantageous to adopt parameterization. Finding it is (should be taken :) ) Locus is best left in its parametric form.

Introducing a constant for verification of physics dimension is also beneficial during calculation.

$$ x_p= 2ft,\, y_p= ft^2;\, \tag1 $$

$$ y_p =\frac{x_p^2}{4f} \,f=\frac14;\,\frac{dy}{dx}= \frac{dy/dt}{dx/dt}= \frac{2ft}{2f} =t $$ So $t$ is slope $= \tan \phi $

You want that perpendicular distance from Locus to parabola should be the $y-$ coordinate when the circle touches both the $x-$ axis and parabola $y_p=x_p^2/(4f) $ .

To find touching Locus subtract and add components of contact circle radius $\rho$ with given condition

$$y_p-\rho \cos \phi = \rho \,;\quad \rho= \frac{y_p}{1+\cos \phi} $$

To work out $(x_c,y_c)=(a,b)$ ( I prefer retaining $(x,y)$ for variables)

$$ y_c= y_p- \rho \cos \phi= y_p( 1- \frac{\cos \phi}{1+\cos \phi}) = \frac{y_p}{1+\cos \phi}$$ $$ x_c= x_p+ \frac{y_p \sin \phi}{1+\cos \phi}$$

Or in terms of $t$ we have

$$ x_c = 2 ft + \frac{f t^3}{\pm \sqrt{1+t^2} +1}\,;\ y_c = \frac{ ft^2 \sqrt{1+t^2}} {\pm \sqrt{1+t^2} +1} ; \tag2 $$

 Circle Tgt to X-axis/Parabola

Two Loci that come about are sketched above due to $\pm$ signs of square root arising from trig relations. ( + sign for curve 1, - sign for curve 2 ). A sort of "curvilinear angle bisector" in each case, if you will.

Elimination of $\phi$ results in a fourth order polynomial.. (left out as an exercise if/when further interested).

0
On

This is a bit messy, but in can be computed using Gröbner basis theory and elimination orders. See Cox, Little, O'Shea "Ideals, Varieties, and Algorithms" for the details on the theory.

We start by writing down some equations:

Suppose we have a point $(a,b)$ and it is tangent to the curve $y = x^2$ at the point $(t,t^2)$. Then

  1. $(t - a)^2 + (t^2 - b)^2 = b^2$ says that the circle and parabola intersect at $t$

  2. The slope of the parabola at $(t,t^2)$ is $2t$ and the slope of the circle at the point $(t, t^2)$ is $-\frac{t-a}{t^2 - b}$ (use implicit differentiation).

Therefore, our two equations are

  1. $(t - a)^2 + (t^2 - b)^2 - b^2 = 0$ and
  2. $2t(t^2 - b) + (t - a) = 0$ (it is important to write these equations as "polynomial = 0" for the purpose of feeding them to the computer).

Now, using Macaulay2 (online system here), we have the following session:

i1 : R = QQ[t,a,b]

o1 = R

o1 : PolynomialRing

We are telling Macaulay2 that our variables are t, a and b and that we are working with equations with rational coefficients.

i2 : I = ideal( (t - a)^2 + (t^2 - b)^2 - b^2, 2*t*(t^2 - b) + (t - a) )

o2 : Ideal of R

We tell Macaulay2 that the system of equations will be called "I".

i3 : J = eliminate(t, I)

              6      4 2      2 4      4       2 3    4      2 2     2
o3 = ideal(16a  - 32a b  + 16a b  - 40a b - 24a b  + a  + 12a b  - 2a b)

o3 : Ideal of R

We tell Macaulay2 to write the system of equations without using the variable t.

i4 : primaryDecomposition J

             2           4      2 2      4      2       3    2      2
o4 = {ideal a , ideal(16a  - 32a b  + 16b  - 40a b - 24b  + a  + 12b  - 2b)}

o4 : List

We tell Macaulay2 to split the ideal into irreducible components.

Macaulay2 has told us that the locus consists of two components. First, is the set $a^2 = 0$ (which gives us all the circles that are tangent at $(0,0)$). The second is the quartic equation

$$ \boxed{16a^4 - 32a^2b^2 + 16b^4 - 40a^2b - 24b^3 + a^2 + 12b^2 - 2b = 0.} $$

Here is what the locus looks like (in black)

Locus of 16a^4 - 32a^2b^2 + 16b^4 - 40a^2b - 24b^3 + a^2 + 12b^2 - 2b = 0

See https://www.desmos.com/calculator/p5q7ezcvkg for an interactive version.

Notice that there are two components of the real locus (depending on which side of the circle the tangent intersection happens).

You can also solve for $a$ and $b$ in terms of the intersection parameter $t$. (Same computation in Macaulay2, but eliminate a or b instead of t). This gives

$$ \boxed{a = \frac{1}{2} \left(t\pm\sqrt{4 t^4+t^2}\right), b = \frac{1}{4} \left(4 t^2\pm\sqrt{4 t^2+1}+1\right).} $$

*take $+,+$ and $-,-$ for $t \le 0$ and take $+,-$ and $-,+$ for $t \ge 0$.