so this might sound stupid but I have a problem when it comes to simplifying terms. lets take this simple term as example (it was taken from a truth-table where these are the 0 results, that means DNF right?): $$\neg a * b * \neg c * \neg d + \neg a * b * c * \neg d + a * b * \neg c * \neg d + a * b * c * \neg d$$
My first step would be looking for multiple appearances of a variable, I took b because it is in every block. I would do it like this:
- $b*(\neg a + \neg c + \neg d + \neg a + c + \neg d + a +\neg c + \neg d +a + c +\neg d)$, distributive law?
- sort: $b*(a+a+\neg a+\neg a+c+c+\neg c+\neg c+\neg d+\neg d+\neg d+\neg d)$, commutative law?
- $b*(a+\neg a+c+\neg c+\neg d)$, because $a+a = a$
- $b*(1+1+\neg d)$, because $a+ \neg a = 1 $
- $b*(1+\neg d)$
- $b*(1)$, because $a+1 = 1$
- $b$
so my result would be $b$ but it seems wrong. What am I doing wrong? it feels like I am always using the wrong rule!
I appreciate your help, I have looked through other asked questions but they couldn't answer my question! I know that I have knowledge gaps in terms of simple mathematical term-laws
b∗¬d∗(¬a∗(¬c+c)+a∗(¬c+c)), I am sorry, this is probably very, very basic stuff but I just need to understand the logic behind it – Zesa Rex Apr 26 '17 at 11:16