I have a system of $9$ linear equations in $9$ variables:
\begin{array}{rl} -c_{1}x_{1} + x_{2} + x_{3} + x_{4} + x_{5} + x_{6} + x_{7} + x_{8} + x_{9} &= 0 \\ x_{1} - c_{2}x_{2} + x_{3} + x_{4} + x_{5} + x_{6} + x_{7} + x_{8} + x_{9} &= 0 \\ x_{1} + x_{2} - c_{3}x_{3} + x_{4} + x_{5} + x_{6} + x_{7} + x_{8} + x_{9} &= 0 \\ x_{1} + x_{2} + x_{3} - c_{4}x_{4} + x_{5} + x_{6} + x_{7} + x_{8} + x_{9} &= 0 \\ x_{1} + x_{2} + x_{3} + x_{4} - c_{5}x_{5} + x_{6} + x_{7} + x_{8} + x_{9} &= 0 \\ x_{1} + x_{2} + x_{3} + x_{4} + x_{5} - c_{6}x_{6} + x_{7} + x_{8} + x_{9} &= 0 \\ x_{1} + x_{2} + x_{3} + x_{4} + x_{5} + x_{6} - c_{7}x_{7} + x_{8} + x_{9} &= 0 \\ x_{1} + x_{2} + x_{3} + x_{4} + x_{5} + x_{6} + x_{7} - c_{8}x_{8} + x_{9} &= 0 \\ x_{1} + x_{2} + x_{3} + x_{4} + x_{5} + x_{6} + x_{7} + x_{8} - c_{9}x_{9} &= 0 \end{array}
I want to find a general non-trivial solution for it. What would be the easiest and least time consuming way to find it by hand? I don't have a lot of background in maths, so I would very much appreciate if you actually found the solution and explained briefly.
Thanks in advance!
EDIT: Very important to mention is that always any $c_{i} > 1$ and any $x_{i} \geq 20$. Also it would be nice if someone posted how would a general non-trivial solution look in the form of $$S = \left \{( x_{1}, x_{2}, x_{3}, x_{4}, x_{5}, x_{6}, x_{7}, x_{8}, x_{9}\right )\}$$
If $T = x_1 + x_2 + \ldots + x_9$, you can write this as $$ T - (1+c_1) x_1 = T - (1 + c_2) x_2 = \ldots = T - (1+c_9) x_9 = 0$$
If any $c_i = -1$, then $T = 0$, and any $x_j$ for which $c_j \ne -1$ must be $0$, while those for which $c_j = -1$ must add to $0$.
On the other hand, if all $c_i \ne -1$, then each $x_i = T/(1+c_i)$, and then $$T = x_1 + \ldots + x_9 = T \left( \dfrac{1}{1+c_1} + \ldots + \dfrac{1}{1+c_9}\right) $$ Since you want a nontrivial solution, you don't want $T=0$ which would make all $x_i = 0$. So then you need $$ \dfrac{1}{1+c_1} + \ldots + \dfrac{1}{1+c_9} = 1$$ and $T$ can be anything.
EDIT: The added condition that all $c_i > 1$ rules out the case where some $c_i = -1$, so you need $1/(1+c_1) + \ldots + 1/(1+c_9) = 1$. You want $x_i \ge 20$, and since $x_i = T/(1+c_i)$ that says $T \ge 20 (1+c_i)$. So now the solutions are $$ (x_1, \ldots, x_9) = \left(\dfrac{T}{1+c_1}, \ldots, \dfrac{T}{1+c_9}\right)$$ where $1/(1+c_1) + \ldots + 1/(1+c_9) = 1$ and $T \ge 20 (1 + \max(c_1, \ldots, c_9))$.