|
56 | 56 | "cell_type": "markdown", |
57 | 57 | "metadata": {}, |
58 | 58 | "source": [ |
59 | | - "3차원 공간의 직선을 벡터로 표시해 보자.<br>Let's describe a line on a 3D space using vectors.\n", |
| 59 | + "* Following parametric equation about $t$ can describe a line in a 3D space.<br>$t$에 관한 다음 매개변수 방정식으로 3차원 공간의 직선을 표시할 수 있다.\n", |
60 | 60 | "\n" |
61 | 61 | ] |
62 | 62 | }, |
|
65 | 65 | "metadata": {}, |
66 | 66 | "source": [ |
67 | 67 | "$$\n", |
68 | | - " \\mathbf{x}=\\mathbf{x_0}+t \\cdot \\mathbf{d}\n", |
| 68 | + "\\begin{pmatrix}\n", |
| 69 | + " x(t) \\\\ y(t) \\\\ z(t) \\\\\n", |
| 70 | + "\\end{pmatrix}\n", |
| 71 | + "=\n", |
| 72 | + "\\begin{pmatrix}\n", |
| 73 | + " x_0 + d_x \\cdot t \\\\\n", |
| 74 | + " y_0 + d_y \\cdot t \\\\\n", |
| 75 | + " z_0 + d_z \\cdot t \\\\\n", |
| 76 | + "\\end{pmatrix}\n", |
| 77 | + "$$" |
| 78 | + ] |
| 79 | + }, |
| 80 | + { |
| 81 | + "cell_type": "markdown", |
| 82 | + "metadata": {}, |
| 83 | + "source": [ |
| 84 | + "* Now let's think about the following vectors.<br>이제 다음 벡터를 생각해 보자.\n", |
| 85 | + "\n" |
| 86 | + ] |
| 87 | + }, |
| 88 | + { |
| 89 | + "cell_type": "markdown", |
| 90 | + "metadata": {}, |
| 91 | + "source": [ |
| 92 | + "$$\n", |
| 93 | + "\\begin{align}\n", |
| 94 | + " \\mathbf{x}(t) &= \\begin{pmatrix}\n", |
| 95 | + " x(t) \\\\ y(t) \\\\ z(t) \\\\\n", |
| 96 | + " \\end{pmatrix} \\\\\n", |
| 97 | + " \\mathbf{x}_0 &=\n", |
| 98 | + " \\begin{pmatrix}\n", |
| 99 | + " x_0 \\\\\n", |
| 100 | + " y_0 \\\\\n", |
| 101 | + " z_0 \\\\\n", |
| 102 | + " \\end{pmatrix} \\\\\n", |
| 103 | + " \\mathbf{d} &=\n", |
| 104 | + " \\begin{pmatrix}\n", |
| 105 | + " d_x \\\\\n", |
| 106 | + " d_y \\\\\n", |
| 107 | + " d_z \\\\\n", |
| 108 | + " \\end{pmatrix}\n", |
| 109 | + "\\end{align}\n", |
| 110 | + "$$" |
| 111 | + ] |
| 112 | + }, |
| 113 | + { |
| 114 | + "cell_type": "markdown", |
| 115 | + "metadata": {}, |
| 116 | + "source": [ |
| 117 | + "* These vectors can describe a 3D line as follows.<br>이러한 여러 벡터를 사용하여 3차원 직선을 표시할 수 있다.\n", |
| 118 | + "\n" |
| 119 | + ] |
| 120 | + }, |
| 121 | + { |
| 122 | + "cell_type": "markdown", |
| 123 | + "metadata": {}, |
| 124 | + "source": [ |
| 125 | + "$$\n", |
| 126 | + " \\mathbf{x}(t)=\\mathbf{x_0}+t \\cdot \\mathbf{d}\n", |
69 | 127 | "$$\n", |
70 | 128 | "\n" |
71 | 129 | ] |
|
74 | 132 | "cell_type": "markdown", |
75 | 133 | "metadata": {}, |
76 | 134 | "source": [ |
77 | | - "여기서 $\\mathbf{x_0}$는 직선 위의 점, $\\mathbf{d}$는 직선의 방향, $t$는 $-\\infty$ 와 $\\infty$ 사이에서 변화하는 매개변수이다. <br>Here, $\\mathbf{x_0}$ is a point on the line, $\\mathbf{d}$ is the direction of the line, and $t$ is a parameter that changes between $-\\infty$ and $\\infty$. \n", |
| 135 | + "* Here, $\\mathbf{x_0}$ is a point on the line, $\\mathbf{d}$ is the direction of the line, and $t$ is a parameter that changes between $-\\infty$ and $\\infty$. <br>여기서 $\\mathbf{x_0}$는 직선 위의 점, $\\mathbf{d}$는 직선의 방향, $t$는 $-\\infty$ 와 $\\infty$ 사이에서 변화하는 매개변수이다.\n", |
78 | 136 | "\n" |
79 | 137 | ] |
80 | 138 | }, |
81 | 139 | { |
82 | 140 | "cell_type": "markdown", |
83 | 141 | "metadata": {}, |
84 | 142 | "source": [ |
85 | | - "예를 들어 $\\mathbf{x}_0=(-1, 1, 1)^T$ 을 지나고 방향은 $\\mathbf{d}=(1, 1, 1)^T$ 인 직선을 그려보자.<br>\n", |
86 | | - "For example, let's plot a line passing $\\mathbf{x}_0=(-1, 1, 1)^T$ with direction of $\\mathbf{d}=(1, 1, 1)^T$.\n", |
| 143 | + "* For example, let's plot a line passing $\\mathbf{x}_0=(-1, 1, 1)^T$ with direction of $\\mathbf{d}=(1, 1, 1)^T$.<br>예를 들어 $\\mathbf{x}_0=(-1, 1, 1)^T$ 을 지나고 방향은 $\\mathbf{d}=(1, 1, 1)^T$ 인 직선을 그려보자.\n", |
87 | 144 | "\n" |
88 | 145 | ] |
89 | 146 | }, |
|
0 commit comments