I have this problem in calculating Jaccard Similarity for Sets (Bit-Vectors):
v1 = 10111
v2 = 10011
Size of intersection = 3; (How could we find it out?)
Size of union = 4, (How could we find it out?)
Jaccard similarity = (intersection/union) = 3/4
But I don't understand how could we find out the "intersection" and "union" of the two vectors.
Please help me.