Mathology
쉬움기본 도형

교차하는 두 직선의 각

그림에서 두 직선이 한 점에서 만날 때 생기는 각의 크기를 구하는 문제입니다.

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

문제

다음 그림에서 두 직선 ABABCDCD가 한 점 OO에서 만날 때, AOC=60\angle AOC = 60^\circ이다. AOD\angle AOD의 크기는?

\documentclass[tikz, border=5mm]{standalone}
\usetikzlibrary{angles,quotes}
\begin{document}
\begin{tikzpicture}
\coordinate (O) at (0,0);
\coordinate (A) at (-2,0);
\coordinate (B) at (2,0);
\coordinate (C) at (-1,-1.732); % Roughly -60 degrees from negative x-axis
\coordinate (D) at (1,1.732);  % Roughly 60 degrees from positive x-axis

\draw (A) -- (B);
\draw (C) -- (D);

\node at (A) [left] {$A$};
\node at (B) [right] {$B$};
\node at (C) [below] {$C$};
\node at (D) [above] {$D$};
\node at (O) [below right] {$O$};

\pic [draw, "$60^\circ$", angle radius=10mm] {angle = C--O--A};
\end{tikzpicture}
\end{document}
🔐

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

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

이전 문제
#기본 도형##평각#교차하는 직선#중1 수학#수학#기본 도형
교차하는 두 직선의 각 - 기본 도형 풀이 | Mathology