X'Y'Z' + XYZ
I have the equation above (Boolean Algebra truth table), and as I know, if I get x' and the value of x is 0, the value will change to 1. But Y' with the top bar being higher, what happens if I replace Y wit 0? Will it also become a 1? Please mind my noob question, as I am still a noob.
X'Y'Z' + XYZ reads as "not X, not Y, and not Z, OR X, Y, and Z". By simple evaluation, we see that if you plug in 0 for X, X' becomes true and the expression simplifies to Y'Z'. If you plug in 1, X is true and the expression simplifies to YZ.
A similar thing happens if you only substitute for Y: Y=0 $\to$ X'Z', Y=1 $\to$ XZ. If Y=X', the expression evaluates to zero since XY=0 and X'Y'=0, regardless of Z. If Y=X, then the expression evaluates either to Z if X=Y=1 or Z' if X=Y=0.
In other words, it's all or nothing; the expression evaluates to 1 if X=Y=Z, regardless of whether the value of all three is 1 or 0. If any one of the three does not equal the others, the expression evaluates to zero.