so I have been trying to learn simplifying boolean Algebra, lets look at this term : $$ (a*b)+(a*\neg b)+(\neg a * \neg b)$$
I have several questions, I know how the right solution looks like but why couldn't I collect $a$ and $\neg a$?
so :
1. $a* \neg a *(b+\neg b+\neg b)$
2. $0*(1)$
is the way I simplifyied it right, is it just non-sense doing it like this or what is I wrong with this?
$(a\cdot b) + (a \cdot \neg b) + (\neg a)\cdot (\neg b) = (a \cdot b) + (\neg b) = (a+\neg b) \cdot (b + \neg b) = a + \neg b$
– Mike Apr 28 '17 at 12:28