두 점 사이의 거리

(유클리드 거리, 두 점 사이의 거리에서 넘어옴)
  다른 뜻에 대해서는 두 점 사이의 거리 (유클리드) 문서를 참조하십시오.
  다른 뜻에 대해서는 두 점 사이의 거리 (확장) 문서를 참조하십시오.

1 개요[ | ]

Euclidean distance, Euclidean metric
유클리드 거리, 유클리디안 거리, 유클리디언 거리, 두 점 사이의 거리, 선분의 길이
두 점 사이의 유클리드 거리


2 1차원 (수직선)[ | ]

두 점 [math]\displaystyle{ A(x_1) }[/math], [math]\displaystyle{ B(x_2) }[/math] 사이의 거리

[math]\displaystyle{ d=\sqrt{(x_2-x_1)^2}=|x_2-x_1|=|x_1-x_2| }[/math]

3 2차원 (좌표평면)[ | ]

두 점 [math]\displaystyle{ A(x_1, y_1) }[/math], [math]\displaystyle{ B(x_2, y_2) }[/math] 사이의 거리

[math]\displaystyle{ d=\sqrt{(x_2-x_1)^2+(y_2-y_1)^2} }[/math]

4 3차원 (공간)[ | ]

두 점 [math]\displaystyle{ A(x_1, y_1, z_1) }[/math], [math]\displaystyle{ B(x_2, y_2, z_2) }[/math] 사이의 거리

[math]\displaystyle{ d=\sqrt{(x_2-x_1)^2+(y_2-y_1)^2+(z_2-z_1)^2} }[/math]

5 같이 보기[ | ]

6 참고[ | ]

문서 댓글 ({{ doc_comments.length }})
{{ comment.name }} {{ comment.created | snstime }}