Plane equation은 다음과 같음.
$$\textbf{n}^T\textbf{r}_\text{plane}+b_\text{bias}=0$$
where
- $\textbf{n}$ : normal vector to a plane.
- $\textbf{r}_{\text{plane}}$ : plane에 속하는 점들의 position vector
- $b_{\text{bias}}$ : bias. (scalar)임.
그림에서
- Point $\textbf{P}$와 $\textbf{P}_0$는 평면 위의 서로 다른 점이며 position vector $\textbf{r}$과 $\textbf{r}_0$로 표현 가능함.
- $\textbf{n}$은 평면에 대한 normal vector( 평면의 속하는 모든 vector와 orthogonal)
$\textbf{P}$와 $\textbf{P}_0$를 잇는 vector $\textbf{r}-\textbf{r}_0$는 평면에 속하므로 $\textbf{n}$과 orthogonal 이므로 다음과 같이 $\textbf{n}$과 $\textbf{r}-\textbf{r}_0$는 내적이 0임.
$$\textbf{n}\cdot\left(\textbf{r}-\textbf{r}_0\right)=0$$
위의 관계는 평면에 속하는 모든 $\textbf{r}$이 만족해야하기 때문에 평면에 대한 vector equation이라고 불림.
즉, 한 점 $\textbf{P}_0$ (position vector $\bf{r}_0$)를 지나면서 $\textbf{n}$을 normal vector로 가지는 평면(plane)은 위의 평면의 vector equation으로 정의됨.
$\textbf{n}=\langle a,b,c \rangle$이고, $\textbf{r}_0=\langle x_0,y_0,z_0 \rangle$라면 위의 평면의 vector equation은 다음과 같음.
$$a(x-x_0)+b(y-y_0)+c(z-z_0)=0\\ax+by+cz=ax_0+by_0+cz_0\\ax+by
+cz=-\text{bias}\\ax+by+cz+\text{bias}=0$$
where,
- $\textbf{r}_\text{plane}$은 평면에 속하는 점들의 position vector.
- $\textbf{n}$은 normal vector 이며 평면의 방정식의 coef.에 해당.
- $\text{bias}$는 평행한 무한한 갯수의 평면들 중에서 특정 평면을 정해주는 상수로 bias라고 불림.
- 원점과 $\textbf{r}_0$의 difference vector와 normal vector $\textbf{n}$의 내적임 : 즉, 원점과 방정식이 나타내는 평면과의 거리에 해당함.
- 즉, normal vector $\textbf{n}$에 orthogonal하고 원점을 가지고 plane에 속하는 모든 점들 각각에 대해 $\textbf{r}_0$ 만큼 이동시킨 결과가 바로 평면의 방정식이 나타내는 평면임.
참고로, $\bf{n}$은 plane equation에 대한 일종의 derivative라고 볼 수 있음.
position vector의 각 component로 partial derivative를 한 것들을 column vector로 만들면 바로 $\bf{n}$임.
'... > Math' 카테고리의 다른 글
[Math] Normal Equation : Vector derivative(Numerator Layout)를 이용한 유도 (0) | 2022.06.01 |
---|---|
[Math] 필요조건, 충분조건, 필요충분조건 (0) | 2022.05.19 |
[Math] Orthogonal Projection (정사영) (0) | 2022.05.19 |
[Math] Distance between Point and Plane : 점과 직선의 거리 (0) | 2022.05.19 |
[Math] Entropy 란 (평균정보량, 정보량의 기댓값) (0) | 2022.05.12 |