I tried to study the puzzle involving light bulbs placed on a circle with the following rule : each bulb has a switch and flipping it also flip the two adjacent switches. Given an initial configuration, the aim is to turn every bulb on.
I proceed as follow. Let $n\in\mathbb{N}^*$. For all $i\in\{1,\dots,n\}$, we define a function $\alpha_i$ such that : \begin{align*} \alpha_i\colon \mathbb{F}_2^n &\longrightarrow\mathbb{F}_2^n\\ (l_1,\dots,l_n) &\longmapsto \alpha_i(l):=(l_1,\dots, l_{i-2},l_{i-1}+1,l_i+1,l_{i+1}+1,l_{i+2},\dots,l_n) \end{align*} where indices are written modulo $n$. I then realized that the problem could be seen as the study of a group action of the power set (with the symmetric difference $\Delta$) : \begin{align*} \alpha\colon (\mathcal{P}(\{1,\dots,n\}),\Delta)\times\mathbb{F}_2^n &\longrightarrow\mathbb{F}_2^n\\ (I,l) &\longmapsto \alpha_I(l):=l+\sum_{i\in I}u_{\sigma^{i-1}} \end{align*} where $u=(1,1,0,\dots,0,1)$ belongs to $\mathbb{F^n_2}$, $\sigma$ denotes the circular shift $(1\ 2\ \dots \ n)$ and, for $x=(x_1,\dots,x_n)\in\mathbb{F}_2^n$, $x_{\sigma^{i-1}}:=(x_{\sigma^{i-1}(1)},\dots,x_{\sigma^{i-1}(n)})$.
My question is : can it be generalized to an other finite field? The $\alpha_i$'s can be used to study the problem over any finite field but it seems that the group action $\alpha$ cannot help since the symmetric difference $I\Delta I=\emptyset$ which implies that it can't "match" the characteristic of many fields. Can anyone think of a useful generalization of the symmetrical difference?