평행선과 각의 크기 구하기
평행선이 다른 한 직선과 만날 때 생기는 각의 성질을 이용하여 미지수의 각을 구하는 문제입니다.
문제
오른쪽 그림에서 두 직선 과 이 평행할 때, 의 크기는?
\begin{tikzpicture} \draw[line width=0.5pt] (-2,0) -- (3,0) node[right] {}; \draw[line width=0.5pt] (-2,-2) -- (3,-2) node[right] {}; \draw[line width=0.5pt] (0,1) -- (2.5,-3); % Transversal
\coordinate (A) at (intersection of -2,0--3,0 and 0,1--2.5,-3); \coordinate (B) at (intersection of -2,-2--3,-2 and 0,1--2.5,-3);
% Angle 130 degrees: Top-left exterior angle relative to line l and transversal \path (A) ++(-1,0) coordinate (AL); % Left of A on line l \path (A) ++(-0.5,0.5) coordinate (AU); % Up-left from A on transversal \pic [draw, angle radius=0.6cm, ""] {angle = AL--A--AU};
% Angle x degrees: Bottom-right interior angle relative to line m and transversal \path (B) ++(1,0) coordinate (BR); % Right of B on line m \path (B) ++(0.5,-0.5) coordinate (BD); % Down-right from B on transversal \pic [draw, angle radius=0.6cm, ""] {angle = BR--B--BD};
\end{tikzpicture}
문제를 풀려면 로그인해주세요
로그인하면 답을 확인하고, 풀이를 보고,
틀린 문제는 오답노트에 자동 저장됩니다.