Locate The D: Revised

Geometry Level 4

The following figure shows a square A B C D ABCD in the x y xy -plane. Points E E is located on line A D AD so that D D is located between A A and E E and A B E = 6 0 \angle ABE = 60 ^ \circ . Points K K , M ( 1 ; 2 ) M(1;2) and N ( 1 ; 1 ) N(1;1) are the mid-points of line segments B E BE , C E CE and K D KD respectively.

If the coordinate of point D D can be represented as ( x d ; y d ) (x_d;y_d) , with x d x_d , y d R y_d \in R and x d < 1 x_d < 1 , find x d + y d x_d+y_d and round the result to the nearest hundredth.

Note: Please don't use any computer programs. Basic geometry + coordinate geometry solutions are really welcomed! This problem has been revised due to an error in its making. The above figure is not drawn to scale.


The answer is 1.37.

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

Leah Jurgens
May 17, 2019

The problem may seem short but this is a pretty confusing and long problem.

We can calculate the length of line segment M N MN which is 1 1 .

Point P P is the mid-point of line segment C K CK .

We have:

M P B E , M P = 1 / 2 E K = 1 / 4 E B , M P N = E B A = 60 , N M P = E B A = 60 M N P MP \parallel BE, MP=1/2EK=1/4EB, \angle MPN = \angle EBA = 60, \angle NMP = \angle EBA = 60 \Rightarrow MNP is an equilateral triangle. \Rightarrow the side length of the square A B C D ABCD is 2.

To find the location of D, we have to calculate the length of D M DM and D N DN .

We have:

D N = D K / 2 DN = DK/2 so we need to calculate D K DK .

Triangle D E K DEK with E K = 2 M P = 2 EK = 2MP = 2 and D E K = 30 \angle DEK = 30 . E D = E A D A ED = EA - DA , E A , D A EA, DA can be determined \Rightarrow E D ED .

Apply the Cosine rule in a triangle, we can determine the length of D K DK . Then D N = D K / 2 DN = DK/2 (1)

D M = E C / 2 DM = EC/2 . We can determine E C EC , therefore D M DM (2)

We already have the lengths of D N , D M DN,DM from (1), (2) and the coordinate of point M , N M,N so we can use a set of equations to solve for D D . We will find out that x d = 1 / 2 a n d 3 / 2 x_d = 1/2 and 3/2 and y d = 3 / 2 y_d = \sqrt{3}/2 in both cases. Given that we only take the value 1 / 2 1/2 of x d x_d from the requirement.

In conclusion, x d + y d = 1 / 2 + 3 / 2 = 1.37 x_d + y_d = 1/2 + \sqrt{3}/2 = \boxed{1.37} .

Steven Chase
May 18, 2019

There are four unknowns: The two coordinates of point A A ( A x , A y ) (A_x,A_y) , the square side length S S , and the rotation angle for the square relative to the x x axis θ \theta . I used a hill-climbing algorithm to find the set of values ( A x , A y , S , θ ) (A_x,A_y, S, \theta) which makes point M M equal to ( 1 , 2 ) (1,2) and point N N equal to ( 1 , 1 ) (1,1) .

The answers come out to be:

A = ( 3 2 , 3 2 ) S = 2 θ = 3 0 D = ( 1 2 , 3 2 ) A = \Big(\frac{3}{2},-\frac{\sqrt{3}}{2} \Big) \\ S = 2 \\ \theta = 30^\circ \\ D = \Big(\frac{1}{2},\frac{\sqrt{3}}{2} \Big)

  1
  2
  3
  4
  5
  6
  7
  8
  9
 10
 11
 12
 13
 14
 15
 16
 17
 18
 19
 20
 21
 22
 23
 24
 25
 26
 27
 28
 29
 30
 31
 32
 33
 34
 35
 36
 37
 38
 39
 40
 41
 42
 43
 44
 45
 46
 47
 48
 49
 50
 51
 52
 53
 54
 55
 56
 57
 58
 59
 60
 61
 62
 63
 64
 65
 66
 67
 68
 69
 70
 71
 72
 73
 74
 75
 76
 77
 78
 79
 80
 81
 82
 83
 84
 85
 86
 87
 88
 89
 90
 91
 92
 93
 94
 95
 96
 97
 98
 99
100
101
102
103
104
105
106
107
import math
import random

# Initial unknown parameters

Ax = -2.0 + 4.0 * random.random()   # Point A x coordinate
Ay = -2.0 + 4.0 * random.random()   # Point A y coordinate
S = 5.0 * random.random()           # Square side length
theta = math.pi * random.random()   # Rotation angle

delta = 0.001

minres = 99999999.0

########################################################################################

for j in range(0,2*10**6):

    #########

    # Mutate Parameters

    Axm = Ax + delta * (-1.0 + 2.0 * random.random())         
    Aym = Ay + delta * (-1.0 + 2.0 * random.random())          
    Sm = S + delta * (-1.0 + 2.0 * random.random())           
    thetam = theta + delta * (-1.0 + 2.0 * random.random())  

    #########

    # Create two orthogonal basis vectors

    b1x = math.cos(thetam)
    b1y = math.sin(thetam)

    b2x = math.cos(thetam + math.pi/2.0)
    b2y = math.sin(thetam + math.pi/2.0)

    #########

    # Coordinates of point C,B,D,E

    Cx = Axm + 1.0*Sm*b1x + 1.0*Sm*b2x
    Cy = Aym + 1.0*Sm*b1y + 1.0*Sm*b2y

    Bx = Axm + 1.0*Sm*b1x + 0.0*Sm*b2x
    By = Aym + 1.0*Sm*b1y + 0.0*Sm*b2y

    Dx = Axm + 0.0*Sm*b1x + 1.0*Sm*b2x
    Dy = Aym + 0.0*Sm*b1y + 1.0*Sm*b2y

    Ex = Axm + math.sqrt(3.0)*Sm*b2x
    Ey = Aym + math.sqrt(3.0)*Sm*b2y

    #########

    # Points M,K,N

    Mx = (Ex+Cx)/2.0
    My = (Ey+Cy)/2.0

    Kx = (Ex+Bx)/2.0
    Ky = (Ey+By)/2.0

    Nx = (Dx+Kx)/2.0
    Ny = (Dy+Ky)/2.0

    #########

    # Residual - get this as close to zero as possible

    # Point M should be (1,2)
    # Point N should be (1,1)

    resM = math.fabs(Mx-1.0) + math.fabs(My-2.0)
    resN = math.fabs(Nx-1.0) + math.fabs(Ny-1.0)

    res = resM + resN

    # If mutation gets residual closer to zero, keep it
    # Otherwise, discard it

    if res < minres:

        minres = res

        Ax = Axm 
        Ay = Aym 
        S = Sm
        theta = thetam

########################################################################################

print minres
print ""
print Ax
print Ay
print ""
print S
print theta

Dx = Ax + 0.0*S*b1x + 1.0*S*b2x
Dy = Ay + 0.0*S*b1y + 1.0*S*b2y

print ""
print Dx      
print Dy
print (Dx+Dy)

@Steven Chase The author has said above please dont use any programing.
After even that you are posting programmed solutions. You are such a stud guy. And that's the reason I like you.
By the way, are you happy with election results? And which party you were supporting?
Waiting for your reply.

Talulah Riley - 7 months ago
Hosam Hajjir
May 18, 2019

I solved this problem using coordinate geometry. First attach a frame O x y O'x'y' to the figure with the origin O O' at point A. The x x' axis extends to the right along AB, and the y y' axis extends along AD upward. Taking the side length of square A B C D ABCD to be s s , we can express the coordinates of all the points of interest with respect to this frame, as follows, A = ( 0 , 0 ) , B = ( s , 0 ) , C = ( s , s ) , D = ( 0 , s ) A' = (0, 0) , B' = (s, 0), C' = (s, s), D'= (0, s) . Now from the angle condition we know that A E = tan 6 0 A B = 3 s AE = \tan 60^{\circ} AB = \sqrt{3} s , hence, E = ( 0 , 3 s ) E' = (0, \sqrt{3} s ) . Next, we can determine the coordinate of points M , K M , K and N N , using the midpoint formula,

M = 1 2 ( C + E ) = ( 1 2 s , 1 2 ( 1 + 3 ) s ) M' = \frac{1}{2} (C' + E') = ( \frac{1}{2} s , \frac{1}{2} (1 + \sqrt{3} ) s )

K = 1 2 ( B + E ) = ( 1 2 s , 3 2 s ) K' = \frac{1}{2} (B' + E') = ( \frac{1}{2} s , \dfrac{\sqrt{3}}{2} s )

N = 1 2 ( K + D ) = ( 1 4 s , 1 2 ( 1 + 3 2 ) s ) N' = \frac{1}{2} (K' + D') = ( \frac{1}{4} s , \dfrac{1}{2} (1 + \dfrac{\sqrt{3}}{2} ) s )

Now, coordinates p p in the absolute frame O x y O x y are related to the coordinates p p' in the O x y O'x'y' frame by

p = p 0 + R p p = p_0 + R p'

for some rotation matrix R R . We know that M = ( 1 , 2 ) M = (1, 2) and that N = ( 1 , 1 ) N = (1, 1) , therefore,

M N = ( 1 , 2 ) ( 1 , 1 ) = ( 0 , 1 ) = R ( M N ) = R ( 1 4 s , 3 4 s ) M - N = (1, 2) - (1,1) = (0, 1) = R (M' - N') = R ( \frac{1}{4} s , \dfrac{\sqrt{3}}{4} s )

Recall that a rotation matrix is of the form R = [ cos θ sin θ sin θ cos θ ] R = \begin{bmatrix} \cos \theta && -\sin \theta \\ \sin \theta && \cos \theta \end{bmatrix} . Hence,

( 0 , 1 ) = ( 1 4 s ( cos θ 3 sin θ ) , 1 4 s ( sin θ + 3 cos θ ) ) (0, 1) = ( \frac{1}{4} s ( \cos \theta - \sqrt{3} \sin \theta ) , \frac{1}{4} s ( \sin \theta + \sqrt{3} \cos \theta ) )

The x-coordinate of the above equation, implies that θ = π 6 \theta = \dfrac{\pi}{6} , and using this into the y-coordinate, yields s = 2 s = 2 .

Now, we have

M = ( 1 , 2 ) = p 0 + R M = p 0 + R ( 1 , 1 + 3 ) M = (1, 2) = p_0 + R M' = p_0 + R ( 1 , 1 + \sqrt{3} )

and

D = ( x d , y d ) = p 0 + R ( 0 , 2 ) D = (x_d, y_d) = p_0 + R ( 0, 2 )

Subtracting the first from second yields,

( x d 1 , y d 2 ) = R ( 1 , 1 3 ) = ( 3 2 1 2 + 3 2 , 1 2 + 3 2 3 2 ) = ( 1 2 , 2 + 3 2 ) ( x_d - 1 , y_d - 2) = R ( -1, 1 - \sqrt{3} ) = ( - \dfrac{\sqrt{3}}{2} - \frac{1}{2} +\dfrac{\sqrt{3}}{2} , -\frac{1}{2} + \dfrac{\sqrt{3}}{2} - \dfrac{3}{2} ) = ( -\frac{1}{2}, - 2 + \dfrac{\sqrt{3}}{2} )

Hence,

( x d , y d ) = ( 1 2 , 3 2 ) ( x_d , y_d ) = ( \dfrac{1}{2}, \dfrac{\sqrt{3}}{2} )

And therefore, the answer is, 1 2 + 3 2 1.366 \dfrac{1}{2} + \dfrac{\sqrt{3}}{2} \approx \boxed{1.366}

0 pending reports

×

Problem Loading...

Note Loading...

Set Loading...