maybe I miss something and I like to know where is my mistake:
Lets suppose we play Nim with $n$ piles, and lets say we we limit each pile to be between $0$ to $k$.
Now, according to this question: How to prove that subset at odd size is equal to subset at even size? the amount of the winning situations should be equal to the loosing situations, why?
Because we can translate the piles to binary numbers, like: $$\begin{array}{ccccc} 1 & 0 & 0 & 1 & 0\\ 1 & 1 & 1 & 0 & 0\\ 0 & 0 & 0 & 1 & 0\\ 0 & 1 & 0 & 0 & 1\\ 1 & 0 & 0 & 0 & 1 \end{array}$$
And we are loosing iff the sum of each column is $0$.
In other words - we are loosing if each column have even times of $1$'s (like: 0,2,4,...).
Now, what I'm not understating is this:
The amount of even times of 1's is equals the the odd times of 1's, so why the we have more winning situation the loosing situations? (I run a program to check it and this was the result).
I assume it's because the AND, i.e. that each column must be with even amount of 1's.
But I'm stack here....
I'd like to understnad what I miss here.
Thank you!