Like many before me I am trying to write a proposition in DNF. I have tried to follow all of the previous articles but I'm unsure who to correctly transfer from CNF to DNF. I have done the following
Prop - (p→q)∧(q→p)
= (p→q) = (p∧q)∨(⌐p∧q)∨(⌐p∧⌐q) = (p∧q)∨⌐p = ⌐p∨q
= (q→p) = (q∧p)∨(⌐q∧p)∨(⌐q∧⌐p) = (q∧p)∨⌐q = ⌐q∨p
= (⌐p∨q)∧(⌐q∨p)
From the above I have a conjunction that needs to be changed, do I simply work out the values of each prop and repeat the process for the disjunction?