Suppose I want to check if a (11, 6, 4) code exists.
I cannot prove non-existence using the singleton and the hamming bound. I also cannot prove existence using the gilbert-varshamov bound. I'm not sure what is the best way to go then - shall I just try to create a parity-check matrix?
I tried to simply create a parity check matrix for the code and it turned out to be quite easier than I thought.
Assuming $r = n - k = 5$
$$ H=\left(\begin{array}{l} 11100\\ 01110\\ 00111\\ 10011\\ 11001\\ 11111\\ 10000\\ 01000\\ 00100\\ 00010\\ 00001 \end{array}\right) $$
Any 3 $(d-1)$ rows are linearly independent and there is at least one set of of 4 $(d)$ linearly dependent rows.