I am learning about Hashing and have struggles with the following assignment:
$U$ is a universe of keys with $Z(m)=\{0,\ldots, m-1 \}$ the amount of possible hash-values.
Given $U= \mathbb{Z}_{55} = \{0, \ldots, 54 \}$ and $m=5$.
Does the function $h(k,i)= (k+i) \bmod{5}$ fulfill the conditions for Uniform Hashing?
Uniform Hashing should be given when the probability that to a random key, a specific probe sequence trough the hash function is assigned, is $1/m!$ for all possible probe sequences... But I don't know how to proceed with checking whether this is given for the function above.
Any help and suggestions would be appreciated! :)