Welcome to the Vector Similarity Game! This game is designed to help you understand the concept of cosine similarity between vectors.
Cosine similarity measures the cosine of the angle between two non-zero vectors in a multi-dimensional space. It's a value between -1 and 1, where 1 means the vectors are identical, 0 means they are orthogonal (independent), and -1 means they are completely opposite.
The formula for cosine similarity is:
\( \text{Cosine Similarity} (A, B) = \frac{A \cdot B}{\|A\| \|B\|} \)
where \( A \cdot B \) is the dot product of vectors A and B, and \( \|A\| \) and \( \|B\| \) are the magnitudes (lengths) of vectors A and B.
Your score is based on how close your guess is to the actual cosine similarity. The closer you are, the better your score!
Good luck and have fun!
Back to Game