Fancy Quadrilateral

Geometry Level 5

The figure shows the incircle and circumcircle of a given quadrilateral. The radii of the two circles are 7 7 and 12 12 .

If the distance between the centers of the two circles is x x . Find x 2 x^2


The answer is 18.

This section requires Javascript.
You are seeing this because something didn't load right. We suggest you, (a) try refreshing the page, (b) enabling javascript if it is disabled on your browser and, finally, (c) loading the non-javascript version of this page . We're sorry about the hassle.

4 solutions

Hosam Hajjir
Feb 16, 2019

I didn't know about Fuss's Theorem, so I used a brute-force approach. I started with a circle of radius 12. Placed four point on it

with angular displacements (from the positive x-axis) of θ 1 , θ 2 , θ 3 , θ 4 \theta_1, \theta_2,\theta_3,\theta_4 .

I took θ 1 = 0 \theta_1 = 0 (fixed), and assumed that θ 1 < θ 2 < θ 3 < θ 4 \theta_1 \lt \theta_2 \lt \theta_3 \lt \theta_4 .

The four vertices of the quadraliteral connecting these points on the circumference of the 12-radius

circle are P 1 , P 2 , P 3 P_1 , P_2 , P_3 and P 4 P_4 , where P i = 12 ( cos θ i , sin θ i ) P_i = 12 ( \cos \theta_i, \sin \theta_i ) .

Next I set up a Newton-Raphson multivariate iteration to find a solution for the required quadrilateral.

To have an incircle, it is required (by Pitot's theorem) that,

P 1 P 2 + P 3 P 4 = P 2 P 3 + P 4 P 1 = s P_1 P_2 + P_3 P_4 = P_2 P_3 + P_4 P_1 = s , where s s is the semi-perimeter, s = 1 2 ( P 1 P 2 + P 2 P 3 + P 3 P 4 + P 4 P 1 ) s = \frac{1}{2} ( P_1 P_2 + P_2 P_3 + P_3 P_4 + P_4 P_1)

Next, for the current-iteration values of x 1 ( k ) = θ 2 ( k ) , x 2 ( k ) = θ 3 ( k ) , x 3 ( k ) θ 4 ( k ) x_1(k) = \theta_2(k), x_2(k) = \theta_3 (k), x_3(k) \theta_4(k) , we can compute the

area of the quadrilateral, and thus compute a nominal (or average of some sort) inradius r r , given by

r = Area s r = \dfrac{\text{Area} }{s}

So that the last equation to be satisifed is r = 7 r = 7 .

Hence for the vector x ( k ) = [ x 1 ( k ) , x 2 ( k ) , x 3 ( k ) ] t \mathbf{x}(k) = [ x_1(k), x_2(k), x_3(k) ]^t , we define the problem as

follows:

F ( x ( k ) ) = 0 \mathbf{F}(\mathbf{x}(k) ) = \mathbf{0}

with

F 1 ( x ( k ) ) = P 1 P 2 + P 3 P 4 s F_1(\mathbf{x}(k) ) = P_1 P_2 + P_3 P_4 - s

F 2 ( x ( k ) ) = P 2 P 3 + P 4 P 1 s F_2(\mathbf{x}(k) ) = P_2 P_3 + P_4 P_1 - s

F 3 ( x ( k ) ) = r 7 F_3(\mathbf{x}(k) ) = r - 7

The Newton-Raphson iteration generates the next guess of x ( k ) \mathbf{x}(k) as follows:

x ( k + 1 ) = x ( k ) J 1 ( x ( k ) ) F ( x ( k ) ) \mathbf{x}(k+1) = \mathbf{x}(k) - \mathbf{J}^{-1}(\mathbf{x}(k) ) \mathbf{F}(\mathbf{x}(k) )

Where J ( x ( k ) ) \mathbf{J}(\mathbf{x}(k) ) is the Jacobian matrix for the vector function F ( x ( k ) ) \mathbf{F}(\mathbf{x}(k) ) ,

and is defined by J ( x ( k ) ) = [ J i j ] = [ F i x j ] \mathbf{J}(\mathbf{x}(k) ) = [ J_{ij} ] = [ \dfrac{\partial {F_i}}{\partial x_j } ]

I found an approximation for the Jacobian matrix using numerical differentiation, then incorporated it in the iteration.

The Newton-Raphson method converged in 10 iterations. Having found the quadrilateral, what was left is simple

geometry to find the coordinates of the incenter, and this is easy to find by taking the intersection point of the

angle bisectors of two adjacent vertices. Finally, the square of the distance between the two centers is the sum of the

squares of the coordinates of the incenter.

Mark Hennings
Feb 13, 2019

This is Fuss' Theorem for a bicentric quadrilateral.

I also used Fuss' Theorem for solution. It is as under.
Here R=circumradius=12, and r=inradius=7, x=distance between centers.
x 2 = R 2 + r 2 r 4 R 2 r 2 = 1 2 2 + 7 2 7 4 1 2 2 + 7 2 = L a r g e 18 \huge x^2=R^2+r^2-r\sqrt{4R^2-r^2}=12^2+7^2-7\sqrt{4*12^2+7^2}=Large~\color{#D61F06}{18}

Yuriy Kazakov
Jul 10, 2019

0 pending reports

×

Problem Loading...

Note Loading...

Set Loading...