How can I determine if a propositional formula is in DNF or CNF or both. What conditions must a propositional formula satisfy?
For example, why is $(a \land b)$ both in CNF and DNF?
How can I determine if a propositional formula is in DNF or CNF or both. What conditions must a propositional formula satisfy?
For example, why is $(a \land b)$ both in CNF and DNF?
It is $DNF$ because it can be seen as $$ ... \text{nothing} \vee (a \wedge b) \vee \text{nothing}... $$ And $CNF$ : $$ (...\text{nothing} \vee a \vee \text{nothing}...) \wedge (...\text{nothing} \vee b \vee \text{nothing}...) $$ By $nothing$ I don't mean something always true or false (even thought it can be thought of $\bot$) but simply there is nothing, no character.