I have this formula:
F = (¬A ∨ B) ∧ D ∧ (¬D ∨ E ∨ ¬C) ∧ C ∧ (¬C ∨ E ∨ ¬B) ∧ ¬B.
And I converted into a horns formula:
F = (A -> B) ∧ ( 1 -> D) ∧ (D ∧ C -> E) ∧ (1 -> C) ∧ (C ∧ B -> E) ∧ (B -> 0)
I now want to tell if this is satisfiable but I'm not sure how to do that. Any help will be much appreciated. Thanks!