What fraction of the area of this triangle is closer to its centroid, G , than to an edge? Extra credit for a closed-form of this fraction.
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.
Here is a rough outline of my solution:
1) Do a double integral to find the centroid location. This is essentially an area-weighted average of the ( x , y ) coordinates. This could have been a single integral, but Step 2 requires a double integral anyway, so it made sense to have a common approach.
2) Having found the centroid, do another double integral to accumulate area that is closer to the centroid than to any side. To accomplish this, I used the formula for the distance from a point to a line segment found at Wolfram Mathworld (Equation 14).
The graphic below shows the region of interest in blue. It is 1 6 . 9 % of the total triangle area.
@Steven Chase
Happy Merry Christmas
and How are you ?
Log in to reply
I'm doing fine, thanks. Merry Christmas to you as well
The locus of points which are equidistance from the centroid and an edge straight line is a parabola, where the centroid is the focus point F ( x f , y f ) and the edge straight line a x + b y + c = 0 is the directrix. And the equation of the parabola is given by ( reference ):
a 2 + b 2 ( a x + b y + c ) 2 = ( x − x f ) 2 + ( y − y f ) 2
To make the calculations easy, we set ( x f , y f ) = ( 0 , 0 ) or we move G ( x g , y g ) to G ′ ( 0 , 0 ) . Since x g = 3 x a + x b + x c = 3 0 + 2 + 1 = 1 and y g = 3 y a + y b + y c = 3 0 + 0 + 1 = 3 1 , then A ′ = ( x a − 1 , y a − 3 1 ) = ( − 1 , − 3 1 ) , B ′ = ( 1 , − 3 1 ) , and C ′ = ( 0 , 3 2 ) . Then the equation of the three parabolas are:
⎩ ⎪ ⎨ ⎪ ⎧ 6 y = 9 x 2 − 1 9 ( x − y ) 2 + 1 2 ( x + y ) − 4 = 0 9 ( x + y ) 2 − 1 2 ( x − y ) − 4 = 0 . . . ( 1 ) b o t t o m . . . ( 2 ) r i g h t . . . ( 3 ) l e f t
The region shaded blue is the part of the triangle which is nearer to the centroid G than an edge. Since the area is symmetrical about the y-axis, we can find the area of the right half and then multiply it by 2 .
From ( 1 ) , we get y = 2 3 x 2 − 6 1 = y 1 and from ( 2 ) , y = x + 3 2 2 − 6 x − 3 2 = y 2 . Let parabolas y 1 and y 2 meet at P ( a , b ) . From y 1 = y 2 , a = 3 1 − 2 + 2 2 − 1 . And the area of the blue region:
A = ∫ 0 a ( y 2 − y 1 ) d x = 2 ∫ 0 a ( x + 3 2 2 − 6 x − 2 1 − 2 3 x 2 ) d x = ∫ 0 a ( − 3 x 2 + 2 x − 1 + 3 4 2 − 6 x ) d x = − x 3 + x 2 − x − 2 7 4 ( 2 − 6 x ) 2 3 ∣ ∣ ∣ ∣ 0 a = − a 3 + a 2 − a − 2 7 4 ( 2 − 6 a ) 2 3 + 2 7 8 2 = 2 7 1 7 + 4 2 − 1 6 2 − 1 − 8 2 ( 2 − 1 ) − 1 6 2 − 2 2 − 1 + 1 6 4 − 2 2 + 4 2 − 1 − 4 2 ( 2 − 1 ) ≈ 0 . 1 6 9 1 0 0 3 3 4
Since the area of △ A B C = 1 , [ A B C ] A = A ≈ 0 . 1 6 9 .
My approach is similar to other people's but what I did is I considered only the left half of the triangle (due to symmetry). Then I drew the bisector of angle A, which splits the half-triangle in 2 regions (the bisector is the line, all points of which are equidistant to the corresponding sides). For the upper one the closest triangle side is AC and for the lower one - it is AB. For each region I found the curve, where all points are equidistant to G and to the corresponding side. Then I found the intersection point of these two curves (which obviously lies on the bisector) and then did two integrals from that point to x=1. The sum of the resulting areas is the left half of the desired area, so I multiplied this area by 2 and got approximately 0.169. Since the area of the triangle is 1, the answer is 1 0 . 1 6 9 = 0 . 1 6 9 .
Problem Loading...
Note Loading...
Set Loading...
Label the diagram as follows:
The coordinates of the centroid are G ( 3 1 ( A x + B x + C x ) , 3 1 ( A y + B y + C y ) ) = G ( 1 , 3 1 ) .
A C is on the line x − y = 0 and A B is on the line y = 0 .
The locus of points that are equidistant from a point and a line is a parabola , so the curve through D and E is a parabola with a focus of G ( 1 , 3 1 ) and a directrix of y = 0 , and using a 2 + b 2 ( a x + b y + c ) 2 = ( x − f 1 ) 2 + ( y − f 2 ) 2 its equation is 0 2 + 1 2 ( 0 + y + 0 ) 2 = ( x − 1 ) 2 + ( y − 3 1 ) 2 , which solves to y = 2 3 x 2 − 3 x + 3 5 .
The curve through D and F is a parabola with a focus of G ( 1 , 3 1 ) and a directrix of x − y = 0 , and using a 2 + b 2 ( a x + b y + c ) 2 = ( x − f 1 ) 2 + ( y − f 2 ) 2 its equation is 1 2 + 1 2 ( x − y + 0 ) 2 = ( x − 1 ) 2 + ( y − 3 1 ) 2 , which solves to y = − x + 3 2 + 3 2 6 x − 4 .
The parabolas y = 2 3 x 2 − 3 x + 3 5 and y = − x + 3 2 + 3 2 6 x − 4 intersect at an x -coordinate of D x = 3 1 ( 2 + 2 − 2 2 − 1 ) .
The area of the region closer to the centroid G is therefore:
A = 2 ∫ D x 1 [ ( − x + 3 2 + 3 2 6 x − 4 ) − ( 2 3 x 2 − 3 x + 3 5 ) ] d x = 2 7 1 ( − 3 1 + 2 0 2 + 8 2 ( 2 − 1 ) ) ≈ 0 . 1 6 9 .