Assume a bloom filter api, with 2 parameters - 1. number of bits in bloom filter (n) and 2. expected number of insertions (m).
Question:
Will m > n always lead to complete false positives? By complete I intend to say, will every test for 'contains(element)' method return true, after m > n condition ?