I have the following linear equation system: $$ (S)=\left\{ \begin{array}{ll} a2008 + b = 34.564\\ a2009 + b = 35.104\\ a2010 + b = 35.481\\ a2011 + b = 36.891\\ a2012 + b = 37.331\\ a2013 + b = 38.061\\ a2016 + b = 39.071\\ a2018 + b = 39.345 \end{array} \right. $$ and the corresponding augmented matrix $$ \mathbf{M} = \left[ \begin {array}{ccc} 2008&1& 34.564\\ {}2009&1& 35.104\\ {}2010&1& 35.481\\ {}2011&1& 36.891\\ {}2012&1& 37.331\\ {}2013&1& 38.061\\ {}2016&1& 39.071\\ {}2018&1& 39.345\end {array} \right] $$ After bringing this to reduced row-echelonform it is evident that rank $\mathbf{M}$ > rank $\mathbf{A}$ and that the linear equation system therefore is inconsistent - note that $\mathbf{A}$ is the coefficient matrix.
However, bringing the augmented matrix to RREF takes time, and for some reason I was able to figure that it was consistent before performing any row operations. I think it is because that there are all ones in the second column but it does not seem like a satisfactory argument/explanation.
So how would you argue that this linear equation system clearly has no solution (is inconsistent) without having the calculate anything?
Since you have only two independent variables $a$ and $b$, any two linear equations in $a$ and $b$ will have a unique solution (as long as they are independent). So you can pick two pairs of equations from your list, solve for $a$ and $b$, and see if the solutions are the same.
In this case it is particular easy to see that the equations in $S$ are not consistent:
$2008a + b = 34.564 \\ 2009a + b = 35.104 \\ \Rightarrow a = 35.104 - 34.564 = 0.54$
$2009a + b = 35.104 \\ 2010a + b = 35.481 \\ \Rightarrow a = 35.481 - 35.104 = 0.377$