diff --git a/content/notes/university/year3/cs3002/cs3002-lab1.md b/content/notes/university/year3/cs3002/cs3002-lab1.md index 7f01cd4cc4cc..a73c951ae4be 100644 --- a/content/notes/university/year3/cs3002/cs3002-lab1.md +++ b/content/notes/university/year3/cs3002/cs3002-lab1.md @@ -26,12 +26,15 @@ I chose 3 and 4. **a)** What is the Euclidean distance between each of them? ed = $\sqrt{(32-18)^2+(110-85)^2+(23-27)^2} =$ + = $\sqrt{196 + 625 + 16}$ + = $\sqrt{837} = 29$ **b)** What is the Manhattan distance between each of them? $|32 - 18| + |110 - 85| + |23-27| =$ + = $14 + 25 + 4 = 43$ **Q2)** Briefly describe three different forms of hierarchical clustering methods.