정삼각형을 이용한 합동 찾기
주어진 삼각형의 두 변을 이용해 바깥쪽에 정삼각형을 그렸을 때, 반드시 참인 명제를 찾고 참이 아닌 것을 고르는 문제입니다.
문제
그림과 같이 의 두 변 와 를 각각 한 변으로 하는 정삼각형 와 를 의 바깥쪽에 그렸다. 선분 와 를 연결했을 때, 다음 중 반드시 참이라고 할 수 없는 것은?
\begin{center} \begin{tikzpicture}[scale=1.5] % Vertices of ABC \coordinate (A) at (0,4); \coordinate (B) at (-2,0); \coordinate (C) at (3,0);
% Draw triangle ABC \draw (A) node[above] {} -- (B) node[below left] {} -- (C) node[below right] {} -- cycle;
% Calculate D for equilateral triangle ABD (rotate B around A by 60 degrees counter-clockwise from vector AB) % Vector AB = (B.x-A.x, B.y-A.y) = (-2, -4) % Rotated x' = x cos 60 - y sin 60 = -2*0.5 - (-4)*sqrt(3)/2 = -sqrt(3) % Rotated y' = x sin 60 + y cos 60 = -2sqrt(3)/2 + (-4)*0.5 = -sqrt(3) - 2 \coordinate (D) at (); \draw (A) -- (D) node[above right] {} -- (B);
% Calculate E for equilateral triangle ACE (rotate C around A by -60 degrees clockwise from vector AC) % Vector AC = (C.x-A.x, C.y-A.y) = (3, -4) % Rotated x'' = x cos(-60) - y sin(-60) = 30.5 - (-4)(-sqrt(3)/2) = sqrt(3) % Rotated y'' = x sin(-60) + y cos(-60) = 3(-sqrt(3)/2) + (-4)0.5 = -1.5sqrt(3) - 2 \coordinate (E) at (); \draw (A) -- (E) node[above left] {} -- (C);
% Draw lines CD and BE \draw[blue, dashed] (C) -- (D); \draw[red, dashed] (B) -- (E);
\end{tikzpicture} \end{center}
문제를 풀려면 로그인해주세요
로그인하면 답을 확인하고, 풀이를 보고,
틀린 문제는 오답노트에 자동 저장됩니다.