When using the Consensus Theorem in Boolean algebra to minimize an expression, is it a legal move to find and add a redundant term to the expression and then use that term to find more redundant terms and then eliminate all of them?
For instance:
F = A'B + AC + B'A
If XY = AC and X'Z = A'B, then YZ = BC, so:
F = A'B + AC + B'A + BC
Then if XY = BC and X'Z = B'A, then YZ = AC
AC and BC are (possibly?) redundant terms, so drop them both:
F = A'B + B'A
Is this legal, or is it an odd hack/mathematical abomination?