KTUG마당은 KTUG를 방문하는 모든 이용자가 대화를 나누고 소식을 전하는 곳입니다.

  • 로그인 없이 자유롭게 글을 읽고 쓸 수 있는 철학은 처음과 같이 계속됩니다.
  • Team Blog의 글을 이곳 게시판의 "정보글"로 모았습니다. Team blog는 기고자가 올린 글에 질문을 받는 부담을 줄이기 위하여 댓글을 허용하지 않았습니다. 그러나 이곳 게시판으로 모으면서 댓글을 달 수 있습니다. 게시물을 작성하실 때 댓글을 원하지 않으시면 댓글을 허용하시지 않으시기를 바랍니다. 또한 불필요한 소모성 댓글을 달지 않도록 주의하여 주시기를 바랍니다.
  • TeX과 관련된 질문이나 답변은 QnA 마당을 이용하십시오. TeX과 관련된 질문은 지웁니다
  • MathJax를 이용한 수식조판을 사용하실 수 있습니다. 여기를 참조하세요.
  • 스팸 글을 막기 위하여 짧은 시간 내에 다시 글이 등록되는 IP를 막거나, 광고 글을 막기 위하여 금지어로 .com, .net 등을 설정하고 있습니다. 다소간의 불편함이 있으시더라도 양해 바랍니다.
    • 금지어에서 stackexchange, stackoverflow, ctan, overleaf, , github, google.com, gmail.com, .org, .io, sil.org, wiki.com, tistory.com등은 해제하였습니다.
  • 사용하는 편집기는 CKeditor입니다. 편집기에서 [enter]를 누르면 <p> 태그가 들어가고, 문단으로 생각하고 한줄을 비웁니다. 글줄만 바꾸려면 shift-enter 를 누르시면 <BR>가 들어가므로 용도에 맞게 나누어 쓸 수 있습니다.

김퍼프

.mp파일이 업로드가 않되네요. 컴맹수준이라 여기에 원본 mp파일을 올립니다.

verbatimtex

\input kotexutf.tex

etex;

% In compiling, mpost foo (.mp omitted)

% and mptopdf foo (.mp omitted)

 

beginfig(1)%---------------둔각삼각형----------- refer to YOUTUBER, Michael Penn

u=10mm;

numeric a[],b[],c[],d[], h, k, r, rr;%center(h, k), radii r, rr;

pair A, B, C;

A=(-2, 0); %wlog, A=(-a, 0), B=(a, 0), C=(b, c)

B=(2, 0);

C=(-2.5, 3); %C=(0, 2*sqrt(3)) eqilateral triangle;

a1=xpart A;

a2=ypart A;

b1=xpart B;

b2=ypart B;

c1=xpart C;

c2=ypart C;

 

d1=abs(A-B);

d2=abs(B-C);

d3=abs(C-A);

 

%solve simultaneous eq.

% dist((h, k), mid(A,B))=r-dist(A,B)/2---(1)

% dist((h, k), mid(B,C))=r-dist(B,C)/2---(2)

% dist((h, k), mid(C,A))=r-dist(C,A)/2---(3)

 

numeric adotb, bdotc, cdota;

adotb=a1*b1+a2*b2;

bdotc=b1*c1+b2*c2;

cdota=c1*a1+c2*a2;

 

(a1-c1)*h+(a2-c2)*k-(d1-d2)*r=adotb-bdotc;%(1)-(2)

(b1-a1)*h+(b2-a2)*k-(d2-d3)*r=bdotc-cdota;%(2)-(3)

%get h, k in terms of r and substitute these to one of (1), (2), (3),

%and we have the quadratic eq.(*) with respect to radius r

 

numeric t[], s[];%temporary variables

 

t1=((d1-d2)*(b2-a2)-(d2-d3)*(a2-c2))/((a1-c1)*(b2-a2)-(b1-a1)*(a2-c2));

s1=((adotb-bdotc)*(b2-a2)-(bdotc-cdota)*(a2-c2))/((a1-c1)*(b2-a2)-(b1-a1)*(a2-c2));

 

t2=((d1-d2)*(b1-a1)-(d2-d3)*(a1-c1))/((a2-c2)*(b1-a1)-(b2-a2)*(a1-c1));

s2=((adotb-bdotc)*(b1-a1)-(bdotc-cdota)*(a1-c1))/((a2-c2)*(b1-a1)-(b2-a2)*(a1-c1));

 

numeric l, m, n;%coefficients of quadratic eq. l*r*r + m*r + n = 0 ---- (*)

 

l=t1*t1+t2*t2-1;

m=2*t1*s1+2*t2*s2-(a1+b1)*t1-(a2+b2)*t2+d1;

n=s1*s1+s2*s2-(a1+b1)*s1-(a2+b2)*s2+adotb;

 

r=(0-m+sqrt(m*m-4*l*n))/(2*l);%roots of quadratic eq.(*)

rr=(0-m-sqrt(m*m-4*l*n))/(2*l);

 

 

draw (A--B--C--cycle) scaled u;%---input triangle & circles

draw (fullcircle scaled d1 shifted 0.5[A,B]) scaled u withcolor red;

draw (fullcircle scaled d2 shifted 0.5[B,C]) scaled u withcolor green;

draw (fullcircle scaled d3 shifted 0.5[C,A]) scaled u withcolor blue;

 

h:=t1*rr+s1;

k:=t2*rr+s2;

 

draw (fullcircle scaled (2*rr) shifted (h,k)) scaled u dashed dashpattern(on 2bp off 3bp);%---results

pair P,Q,R;%tangent points

P:=(rr/(rr-0.5*d1))[(h,k), 0.5[A,B]];

Q:=(rr/(rr-0.5*d2))[(h,k), 0.5[B,C]];

R:=(rr/(rr-0.5*d3))[(h,k), 0.5[C,A]];

 

for i=P, Q, R: drawarrow ((h,k)--i) scaled u dashed dashpattern(on 2bp off 3bp); endfor;

 

h:=t1*r+s1;

k:=t2*r+s2;

 

draw (fullcircle scaled (2*r) shifted (h,k)) scaled u dashed dashpattern(on 2bp off 2bp);%---results

P:=(r/(r-0.5*d1))[(h,k), 0.5[A,B]];

Q:=(r/(r-0.5*d2))[(h,k), 0.5[B,C]];

R:=(r/(r-0.5*d3))[(h,k), 0.5[C,A]];

 

for i=P, Q, R: drawarrow ((h,k)--i) scaled u dashed dashpattern(on 2bp off 2bp); endfor;

 

endfig;

 

beginfig(2)%직각삼각형

numeric a[],b[],c[],d[], h, k, r, rr;%center(h, k), radii r, rr;

pair A, B, C;

A=(-2, 0); %wlog, A=(-a, 0), B=(a, 0), C=(b, c)

B=(2, 0);

C=(-2, 3);

a1=xpart A;

a2=ypart A;

b1=xpart B;

b2=ypart B;

c1=xpart C;

c2=ypart C;

 

d1=abs(A-B);

d2=abs(B-C);

d3=abs(C-A);

 

%solve simultaneous eq.

% dist((h, k), mid(A,B))=r-dist(A,B)/2---(1)

% dist((h, k), mid(B,C))=r-dist(B,C)/2---(2)

% dist((h, k), mid(C,A))=r-dist(C,A)/2---(3)

 

numeric adotb, bdotc, cdota;

adotb=a1*b1+a2*b2;

bdotc=b1*c1+b2*c2;

cdota=c1*a1+c2*a2;

 

(a1-c1)*h+(a2-c2)*k-(d1-d2)*r=adotb-bdotc;%(1)-(2)

(b1-a1)*h+(b2-a2)*k-(d2-d3)*r=bdotc-cdota;%(2)-(3)

%get h, k in terms of r and substitute these to one of (1), (2), (3),

%and we have the quadratic eq.(*) with respect to radius r

 

numeric t[], s[];%temporary variables

 

t1=((d1-d2)*(b2-a2)-(d2-d3)*(a2-c2))/((a1-c1)*(b2-a2)-(b1-a1)*(a2-c2));

s1=((adotb-bdotc)*(b2-a2)-(bdotc-cdota)*(a2-c2))/((a1-c1)*(b2-a2)-(b1-a1)*(a2-c2));

 

t2=((d1-d2)*(b1-a1)-(d2-d3)*(a1-c1))/((a2-c2)*(b1-a1)-(b2-a2)*(a1-c1));

s2=((adotb-bdotc)*(b1-a1)-(bdotc-cdota)*(a1-c1))/((a2-c2)*(b1-a1)-(b2-a2)*(a1-c1));

 

numeric l, m, n;%coefficients of quadratic eq. l*r*r + m*r + n = 0 ---- (*)

 

l=t1*t1+t2*t2-1;

m=2*t1*s1+2*t2*s2-(a1+b1)*t1-(a2+b2)*t2+d1;

n=s1*s1+s2*s2-(a1+b1)*s1-(a2+b2)*s2+adotb;

 

r=(0-m+sqrt(m*m-4*l*n))/(2*l);%roots of quadratic eq.(*)

rr=(0-m-sqrt(m*m-4*l*n))/(2*l);

 

 

draw (A--B--C--cycle) scaled u;%---input triangle & circles

draw (fullcircle scaled d1 shifted 0.5[A,B]) scaled u withcolor red;

draw (fullcircle scaled d2 shifted 0.5[B,C]) scaled u withcolor green;

draw (fullcircle scaled d3 shifted 0.5[C,A]) scaled u withcolor blue;

 

h:=t1*rr+s1;

k:=t2*rr+s2;

 

draw (fullcircle scaled (2*rr) shifted (h,k)) scaled u dashed dashpattern(on 2bp off 3bp);%---results

pair P,Q,R;%tangent points

P:=(rr/(rr-0.5*d1))[(h,k), 0.5[A,B]];

Q:=(rr/(rr-0.5*d2))[(h,k), 0.5[B,C]];

R:=(rr/(rr-0.5*d3))[(h,k), 0.5[C,A]];

 

for i=P, Q, R: drawarrow ((h,k)--i) scaled u dashed dashpattern(on 2bp off 3bp); endfor;

 

h:=t1*r+s1;

k:=t2*r+s2;

 

draw (fullcircle scaled (2*r) shifted (h,k)) scaled u dashed dashpattern(on 2bp off 2bp);%---results

P:=(r/(r-0.5*d1))[(h,k), 0.5[A,B]];

Q:=(r/(r-0.5*d2))[(h,k), 0.5[B,C]];

R:=(r/(r-0.5*d3))[(h,k), 0.5[C,A]];

 

for i=P, Q, R: drawarrow ((h,k)--i) scaled u dashed dashpattern(on 2bp off 2bp); endfor;

 

endfig;

end




XE Login