I'm looking for a formalized way to be able to know whether adding an equation to a set of linear equations adds new information or not, does anyone know of a way?
For a really simple case, let's say I have these equations:
$A = 3\\ B+C = 4\\ D = 8 $
Obviously, the equation below doesn't add any new information:
$-A = -3$
But it gets less obvious when adding an equation like this:
$B + D = 6$
Or:
$C = 2$
When the list of equations is longer, it gets a lot less obvious to me as well:
$ A=3\\ B+C=4\\ D=8\\ C=4\\ F=3\\ E=12\\ F+G=4\\ H=1 $
If I want to add a new equation:
$D+E=7$
I can see that $D$ and $E$ are already fully specified, so this doesn't really add any new information, but a more complex expression would be harder for me to rule out.
Is there a formalized way to see whether or not adding a new equation will add more information? Possibly by looking at the matrix form of the equations?
Here is the last group of equations:
$ \begin{bmatrix} 1 & 0 & 0 & 0 & 0 & 0 & 0 & 0 \\ 0 & 1 & 1 & 0 & 0 & 0 & 0 & 0 \\ 0 & 0 & 0 & 1 & 0 & 0 & 0 & 0 \\ 0 & 0 & 1 & 0 & 0 & 0 & 0 & 0 \\ 0 & 0 & 0 & 0 & 0 & 1 & 0 & 0 \\ 0 & 0 & 0 & 0 & 1 & 0 & 0 & 0 \\ 0 & 0 & 0 & 0 & 0 & 1 & 1 & 0 \\ 0 & 0 & 0 & 0 & 0 & 0 & 0 & 1 \\ \end{bmatrix} * \begin{bmatrix} A \\ B \\ C \\ D \\ E \\ F \\ G \\ H \\ \end{bmatrix} = \begin{bmatrix} 3 \\ 4 \\ 8 \\ 4 \\ 3 \\ 12 \\ 4 \\ 1 \\ \end{bmatrix} $
And here is the equation I wanted to add to the set:
$ \begin{bmatrix} 0 & 0 & 0 & 1 & 1 & 0 & 0 & 0 \\ \end{bmatrix} * \begin{bmatrix} A \\ B \\ C \\ D \\ E \\ F \\ G \\ H \\ \end{bmatrix} = 7 $
Thanks for any help you can provide!
Let's say you have a set of $n$ equations in $m$ variables. You already know how to represent this set of equations as an $n \times m$ matrix $A$.
Now you want to augment that set of equations with one more. This new, larger set of equations can be represented by an $(n+1) \times m$ matrix, $B$.
The question "Does my last equation add any information to the collection?" is equivalent to "Is the rank of $B$ larger than the rank of $A$?". To answer this question, you need to: