Concept Flow - Distance metrics (euclidean, cosine, manhattan)
Start with two points
Choose distance metric
Euclidean: sqrt(sum((x_i - y_i)^2))
Cosine: 1 - (dot(x,y) / (||x||*||y||))
Manhattan: sum(|x_i - y_i|)
Calculate distance
Output distance value
We start with two points, pick a distance type, calculate it, then get the distance value.