엇갈린 두 선분의 길이 비
삼각형에서 주어진 변의 비를 이용하여 엇갈린 두 선분의 교점이 분할하는 비를 구하는 문제입니다.
문제
그림과 같이 에서 점 는 변 위에, 점 는 변 위에 있다. 이고, 이다. 선분 와 선분 의 교점을 라고 할 때, 를 가장 간단한 정수 비로 나타내면?
\begin{center} \begin{tikzpicture} \coordinate (A) at (0,3); \coordinate (B) at (-2,0); \coordinate (C) at (3,0);
\draw (A) -- (B) -- (C) -- cycle;
% D on AB with AD:DB = 2:1 \coordinate (D) at (); % 2/(2+1) = 2/3 % E on AC with AE:EC = 3:1 \coordinate (E) at (); % 3/(3+1) = 3/4
\draw (B) -- (E); \draw (C) -- (D);
\coordinate (P) at (intersection of B--E and C--D);
\node[above] at (A) {}; \node[below left] at (B) {}; \node[below right] at (C) {}; \node[left] at (D) {}; \node[right] at (E) {}; \node[above right] at (P) {};
% Label ratios % AD:DB \node[left] at () {\small }; \node[left] at () {\small }; % AE:EC \node[right] at () {\small }; \node[right] at () {\small };
\end{tikzpicture} \end{center}