NMTC Inter Level Problem 10

Geometry Level 2

Consider the figure A B C D E F G H I J K L ABCDEFGHIJKL as shown. Each side is of length 4 4 and the angle between any two consecutive sides is a right angle. A G AG and C H CH intersect at M M . The area of the quadrilateral A B C M ABCM is __________ . \text{\_\_\_\_\_\_\_\_\_\_}.

44 3 \frac{44}{3} 88 5 \frac{88}{5} 62 3 \frac{62}{3} 77 9 \frac{77}{9}

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.

3 solutions

First, situate the shape on an x y xy -grid so that point H H is at the origin and side H G HG lies along the positive branch of the x x -axis.

Then H C HC lies on the line y = 2 x y = 2x and A G AG lies along the line y = 3 x + 12 y = -3x + 12 . These two lines intersect when

2 x = 3 x + 12 x = 12 5 , y = 24 5 2x = -3x + 12 \Longrightarrow x = \dfrac{12}{5}, y = \dfrac{24}{5} .

Now the area of the quadrilateral A B C M ABCM is equal to

(area A B G H ABGH ) - (area Δ A H M \Delta AHM ) - (area Δ H M G \Delta HMG ) - (area Δ C M G \Delta CMG ))

= 4 12 ( 1 2 ) ( 12 12 5 ) ( 1 2 ) ( 4 24 5 ) ( 1 2 ) ( 8 8 5 ) = 48 152 5 = 88 5 = 4*12 - (\frac{1}{2})(12*\frac{12}{5}) - (\frac{1}{2})(4*\frac{24}{5}) -(\frac{1}{2})(8*\frac{8}{5}) = 48 - \frac{152}{5} = \boxed{\frac{88}{5}} .

There's a number of typos, fix them..

Here's the fixed version: 4 12 1 2 ( 12 12 5 ) 1 2 ( 4 24 5 ) 1 2 ( 8 8 5 ) 4\cdot 12 - \frac{1}{2}\left( 12\cdot \frac{12}{5} \right)-\frac{1}{2}\left( 4\cdot \frac{24}{5} \right)-\frac{1}{2}\left( 8\cdot \frac{8}{5} \right)

mathh mathh - 6 years, 9 months ago

Log in to reply

If you look at my bracketing, I took the common factor of 1 2 \frac{1}{2} outside and then bracketed the remaining terms, so there are in fact no typos. If you'd prefer it your way that's fine, I'll make the edits, but I just want to make the point that my solution is correct as it is now.

Brian Charlesworth - 6 years, 9 months ago

Log in to reply

oh, sorry :( didn't notice the brackets.

BTW, I wrote a C++ code for your problem All tapped out .... and it looks like 95 68 \frac{95}{68} is the answer, unless I did something wrong, in which case sorry again. I haven't seen your solution yet by the way.

The time it takes for the n 1 n_1 'th, n 2 n_2 'th and the n 3 n_3 'th tap to fill the pool together is

1 1 n 1 + 1 n 2 + 1 n 3 = n 1 n 2 n 3 n 1 n 2 + n 2 n 3 + n 3 n 1 \frac{1}{\frac{1}{n_1}+\frac{1}{n_2}+\frac{1}{n_3}}=\frac{n_1n_2n_3}{n_1n_2+n_2n_3+n_3n_1}

And here's the code that calculates the expected time (the last number of the output is the answer. It is not exactly 95 68 \frac{95}{68} but quite extremely close to it):

1
2
3
4
5
6
7
8
9
float i,m,n;
float newsum=0;
    for (i=1;i<=10;i++)
        for (m=i+1;m<=10;m++)
            for (n=m+1;n<=10;n++) {
                newsum=newsum+(m*n*i)/(i*m+m*n+n*i);
                cout << newsum << endl; }
    cout << newsum/120.0;
    return 0;

mathh mathh - 6 years, 9 months ago

Log in to reply

@Mathh Mathh No problem. I ended up making the edits you suggested; it does read more clearly your way. :)

As for my other problem, your approach is excellent. I made a dumb mistake in assuming that E [ 1 X ] = 1 E [ X ] E[\dfrac{1}{X}] = \dfrac{1}{E[X]} , when in general this is not true, (and is definitely not true in this case). I am going to ask the moderator to change the answer to 95 68 = 27 95 - 68 = 27 , or possibly 1.397, give you credit for coming up with the correct answer and then delete my solution. Hopefully that will get rid of the dreaded "Action required" box.

Brian Charlesworth - 6 years, 9 months ago

Log in to reply

@Brian Charlesworth Make the answer approximate ( 1.397 1.397 ), since it appears that it is not 95 68 \frac{95}{68} (it was just my guess and it looks like it is not right by about 0.0000133 \approx 0.0000133 ). It is

1.397045516967773348682158029987476766109466552734375... 1.397045516967773348682158029987476766109466552734375...

Or you can try calculating the actual value.

mathh mathh - 6 years, 9 months ago

Log in to reply

@Mathh Mathh Great. I've suggested changing the answer to 1.397 1.397 , (along with suggesting the appropriate changes to the wording of the question so that there is no mention of a b \frac{a}{b} ), so hopefully the moderator will accept those changes.

Brian Charlesworth - 6 years, 9 months ago
Dagh Nielsen
Dec 3, 2016

The computations are a bit easier if we make the side lengths 1 and then multiply our result by 4 2 = 16 4^2=16 afterwards.

We can calculate the area of A B C M \square ABCM as

A B G H A G H B G H + M G H \square ABGH - \triangle AGH - \triangle BGH + \triangle MGH (We take away two triangles and add back the double counted common part.)

We can calculate the area of M G H \triangle MGH by finding the height from M M . Since the "slopes" of the sides are 2 and 3, the height happens after 3 / 5 3/5 of the base, which multiplied by the left slope, 2, gives a height of 6/5.

All in all:

A B C M = A B G H A G H B G H + M G H = 3 1.5 1 + 6 5 1 2 = 11 10 \square ABCM=\square ABGH - \triangle AGH - \triangle BGH + \triangle MGH=3-1.5-1+\frac{6}{5} \cdot \frac{1}{2}=\frac{11}{10}

and multiplied by 4 2 = 16 4^2=16 we get 88 5 \boxed{\frac{88}{5}}

Daniel Bachelis
Nov 22, 2016

I did a simpler solution.

find the height of M M from H G HG .

H G = 4 HG = 4

Splitting H G HG into two pieces a a and b b

3 a = 2 b 3a = 2b ,

a + b = 4 a + b = 4 ,

a = 2 3 b a = \frac{2}{3}b ,

b = 12 5 b = \frac{12}{5}

2 b = 24 5 2b = \frac{24}{5}

Extending H C HC , it hits a point P P such that A B P = 6 ABP = 6

A B C M = A P C M B P C ABCM = APCM - BPC

height of A P C M APCM is 12 24 5 = 36 5 12 - \frac{24}{5} = \frac{36}{5}

A B C M = 1 2 6 36 5 1 2 2 4 = 88 5 ABCM = \frac{1}{2} 6*\frac{36}{5} - \frac{1}{2}2*4 = \frac{88}{5}

0 pending reports

×

Problem Loading...

Note Loading...

Set Loading...