I am trying to understand how to determine whether a sentence is a tautology, satisfiable but not tautology or unsatisfiable using the right approach
Example: (¬up → ¬down) → ¬up
I tried the following
(¬up → ¬down) → ¬up = (up ⋁ ¬down) → ¬up
then I get stucked in the next step
The easiest way to check whether a formula is satisfiable, tautological or contradictory is to have a look at the truth table:
So let's have a look at the truth table for the formula $(\neg u \to \neg d) \to \neg u$ ("u" abbreviates "up", "d" abbreviates "down"):
Since the last column has at least one row with true, the formula is satisfiable/non-contradictory.
Since the last row has alwo rows with false, the formlua is not tautological.
A formula which is satisfiable but not tautological, i.e. which has both true's and false's in its truth table, is also called contingent.