I am trying to investigate this system of equations:
$$ x^Tx-\mathbf{1}^T x=x^TP^tx=c $$
where $c\in\mathbb{Z}^+$ is a given positive integer, $\mathbf{1}=\{1,1,\ldots,1\}$ is a vector with as much ones as elements in $x$ and nothing else, $t\in\mathbb{Z}^+$ is any positive integer except if $P^t=I$ and
$$P=\begin{pmatrix} 0 & 1 & 0 & 0 & \cdots & 0 & 0 \\ 0 & 0 & 1 & 0 & \cdots & 0 & 0 \\ 0 & 0 & 0 & 1 & \cdots & 0 & 0 \\ \vdots & \vdots& \vdots & \ddots & \ddots & \vdots & \vdots \\ 0 & 0 & 0 & \cdots & 0 & 1 &0 \\ 0 & 0 & 0 & \cdots & 0 & 0 & 1 \\ 1 & 0 & 0 & \cdots & 0 & 0 & 0 \end{pmatrix}$$
is a permutation matrix that shifts the elements of $x$ by one position at a time.
Using alternative notation we can write the same equations as $\sum x_ix_{i+t}=c$ where $i+t$ should be done $\mod n$ (number of components in $x$). and we have different equation for $t=0$: $\sum x_i^2 - \sum x_i=c$.
Question
I am familiar with basics of linear algebra, matrices etc. but I don't think I am familiar with systems like this one. I need a bit of guidance to get a grasp, anything of the following might be of a great help:
- How do we generally deal with equations $x^TAx=c$? And with $x^TA^tx=c$?
- Is there a special name for this system of equations?
- Is there any theory around such systems, what keywords should I search for?
- More exactly - how can I analyze this system, what can I learn about $x$ from these equations?
Some results
By summing all of the equations one can find that
$$ (\mathbf{1}^Tx)^2 - \mathbf{1}^Tx = n\lambda $$
It's useful to assign the root to $c'$: $$ c'= \mathbf{1}^Tx = (1\pm\sqrt{1+4nc})/2 $$
It appears (numerical evidence) that: $$\sum\limits_{\text{even }i} x_i = (c' \pm \sqrt{c'})/2$$ $$\sum\limits_{\text{odd }i} x_i = (c' \mp \sqrt{c'})/2$$
But I only managed to show that explicitly for $n=2$ and $n=4$. It is done by combining equations to eliminate anything but $x_1$ or $x_1+x_3$ respectively which than turns out to be described by a quadratic equation with the above roots.
Using similar approach I found that for $n=3$: $$ \frac{(c'- 2\sqrt{c'})}{3} \leq x_i \leq \frac{(c'+ 2\sqrt{c'})}{3} $$
