I have several related questions, rooted in the fact that I don't think I fully understand the definition of the complement of a decision problem. First, some definitions from my Discrete Mathematics lecture notes:
Given a decision problem $X$, its complement $\bar X$ is the same decision problem with the yes and no answers reversed.
SATISFIABLE: the set of all Boolean formulae that are satisfiable (a satisfiable formula evaluates to TRUE for some assignment of truth values to its literals). Given a Boolean formula $B$, if there's an assignment of truth values to the literals in $B$ such that $B$ evaluates to TRUE, then $B$ results in a yes answer; else $B$ results in a no answer.
NOT-SATISFIABLE: the set of all Boolean formulae that are not satisfiable (a formula that is not satisfiable evaluates to FALSE for all assignments of truth values to the literals). Given a Boolean formula $B$, if there's an assignment of truth values to the literals in $B$ such that $B$ evaluates to TRUE, then $B$ results in a no answer; else $B$ results in a yes answer.
TAUTOLOGY: the set of all Boolean formulae that are tautologies (a tautology evaluates to TRUE for all assignments of truth values to its literals). Given a Boolean formula $B$, if there's an assignment of truth values to the literals in $B$ such that $B$ evaluates to FALSE, then $B$ results in a no answer; else $B$ results in a yes answer.
NOT-TAUTOLOGY: the set of all Boolean formulae that are not tautologies (a formula that is not a tautology evaluates to FALSE for some assignment of truth values to its literals). Given a Boolean formula $B$, if there's an assignment of truth values to the literals in $B$ such that $B$ evaluates to FALSE, then $B$ results in a yes answer; else $B$ results in a no answer.
I understand that $A$ is a tautology $\iff \neg A$ is unsatisfiable.
I am trying to understand the claim that SATISFIABLE is the complement of TAUTOLOGY. If so, then NOT-SATISFIABLE should be equivalent to TAUTOLOGY. Yet this is not the case: in the above definitions, their FALSE and TRUE are reversed! Why is this so, please?
Is my following reasoning is sound?
If the yes answers for SATISFIABLE are changed to no, then SATISFIABLE is transformed to NOT-TAUTOLOGY, and vice versa. If the yes answers for TAUTOLOGY are changed to no, then TAUTOLOGY is transformed to NOT-SATISFIABLE, and vice versa.
Hence SATISFIABLE is equivalent to NOT-TAUTOLOGY, and TAUTOLOGY is equivalent to NOT-SATISFIABLE.
