Mathology
어려움작도와 합동

정삼각형을 이용한 합동 찾기

주어진 삼각형의 두 변을 이용해 바깥쪽에 정삼각형을 그렸을 때, 반드시 참인 명제를 찾고 참이 아닌 것을 고르는 문제입니다.

2026학년도 수능중학교 1학년

문제

그림과 같이 ABC\triangle ABC의 두 변 ABABACAC를 각각 한 변으로 하는 정삼각형 ABDABDACEACEABC\triangle ABC의 바깥쪽에 그렸다. 선분 CDCDBEBE를 연결했을 때, 다음 중 반드시 참이라고 할 수 없는 것은?

\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] {AA} -- (B) node[below left] {BB} -- (C) node[below right] {CC} -- 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 = -1+21 + 2sqrt(3) % Rotated y' = x sin 60 + y cos 60 = -2sqrt(3)/2 + (-4)*0.5 = -sqrt(3) - 2 \coordinate (D) at ((A)+(1+2sqrt(3),sqrt(3)2)(A) + ({-1 + 2*sqrt(3)}, {-sqrt(3) - 2})); \draw (A) -- (D) node[above right] {DD} -- (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) = 1.521.5 - 2sqrt(3) % Rotated y'' = x sin(-60) + y cos(-60) = 3(-sqrt(3)/2) + (-4)0.5 = -1.5sqrt(3) - 2 \coordinate (E) at ((A)+(1.52sqrt(3),1.5sqrt(3)2)(A) + ({1.5 - 2*sqrt(3)}, {-1.5*sqrt(3) - 2})); \draw (A) -- (E) node[above left] {EE} -- (C);

% Draw lines CD and BE \draw[blue, dashed] (C) -- (D); \draw[red, dashed] (B) -- (E);

\end{tikzpicture} \end{center}

🔐

문제를 풀려면 로그인해주세요

로그인하면 답을 확인하고, 풀이를 보고,
틀린 문제는 오답노트에 자동 저장됩니다.

이전 문제
#중1수학#작도와합동#삼각형의합동#SAS합동#정삼각형#수학#작도와 합동
정삼각형을 이용한 합동 찾기 - 작도와 합동 풀이 | Mathology