Published on

Authors
  • avatar
    Name

A

B

C

(a,b)

(0,2)

(x₃,y₃)

x₁

x₂

4

在視頻中看見這道題,國中時常作的一道題。年老了,再回頭練練三角幾何與代數,同時也練練SVG畫幾何圖型。 圖中有A,B,C三個圓。A是半徑爲2的半圓,圓心在(0,2),B是半徑爲4的1/4圓,圓心在(0,0)。C是和A,B兩圓相切的小圓。我們要把它的圓心算出。 先畫兩條通過小圓圓心(a,b)的兩直線。這直線可以通過相切點,所以可以得到如下之關係:

L1:Y=b2aXL2:Y=baX(b2)2+a2=(2+b)2a2=8b(a2+b2)+b=42a=22b=1\begin{gather} L1:Y = \frac{b-2}{a} X \\ L2:Y = \frac{b}{a} X \\ (b-2)^2+a^2=(2+b)^2 \\ a^2=8b \\ \sqrt(a^2+b^2)+b=4^2 \\ a=2\sqrt2 \\ b=1 \end{gather}

再算算圓A與圓C相切點的位置, (c,d)。

c2+(d2)2=22=>c2+d24d+4=4=>c=(4dd2)(c22)2+(d1)2=12((4dd2)22)2+d22d+1=14dd242(4dd2)+8+d22d=02d+8=42(4dd2)4d2+32d+64=32(4dd2)=>9d2+24d+16=0d=43=>c=(163169)=>c=423\begin{gather} c^2+(d-2)^2=2^2 => c^2+d^2-4d+4=4 => c=\sqrt(4d-d^2)\\ (c-2\sqrt2)^2+(d-1)^2=1^2 \\ (\sqrt(4d-d^2)-2\sqrt2)^2+d^2-2d+1=1 \\ 4d-d^2-4\sqrt2\sqrt(4d-d^2)+8+d^2-2d=0 \\ 2d+8 = 4\sqrt2\sqrt(4d-d^2) \\ 4d^2+32d+64=32(4d-d^2) => 9d^2+24d+16=0\\ d=\frac{4}{3} => c=\sqrt(\frac{16}{3}-\frac{16}{9}) => c=\frac{4\sqrt2}{3} \end{gather}

再作一條直線通過上圓切點且和L1相垂直。

x1x3:Y=ab2X+C43=22432+C=>Y=22X40=22x14=>x1=2\begin{gather} \overline{x₁x₃}: Y=-\frac{a}{b-2}X+C \\ \frac{4}{3}=2\sqrt2 \frac{4}{3}\sqrt2+C => Y=2\sqrt2X-4 \\ 0=2\sqrt2x₁-4 => x₁=\sqrt2 \end{gather}

再來算圓B與圓C的圓切點,(e,f)

e2+f2=42=>e=(16f2)(e22)2+(f1)2=12=>(e2+f2)42e2f+8=0242f=42(16f2)=>57696f+4f2=51232f26496f+36f2=0=>f=43=>e=823\begin{gather} e^2+f^2=4^2 => e=\sqrt(16-f^2) \\ (e-2\sqrt2)^2+(f-1)^2=1^2=>(e^2+f^2)-4\sqrt2e-2f+8=0 \\ 24-2f=4\sqrt2\sqrt(16-f^2)=>576-96f+4f^2=512-32f^2 \\ 64-96f+36f^2=0=>f=\frac{4}{3}=>e=\frac{8\sqrt2}{3} \end{gather}

再作一條直線x2x3\overline{x₂x₃}與L2垂直且經過(e,f)切點

x2x3:Y=22X+C=>43=22823+CY=22X+120=22x2+12=>x2=32\begin{gather} \overline{x₂x₃}: Y=-2\sqrt2X+C=>\frac{4}{3}=-2\sqrt2\frac{8\sqrt2}{3}+C \\ Y=-2\sqrt2X+12 \\ 0=-2\sqrt2x₂+12=>x₂=3\sqrt2 \end{gather}

再下來就可以解出(x₃,y₃)

y3=22x3+12y3=22x34y3=4=>x3=22\begin{gather} y₃=-2\sqrt2x₃+12 \\ y₃=2\sqrt2x₃-4 \\ y₃=4 => x₃=2\sqrt2 \end{gather}

最終結果是圓C的圓心在(2√2,1),而以圓C爲內心圓的三角型的三頂點是(√2,0),(3√2,0),(2√2,4)