[Math] What does this logic question mean

logic

I'm doing homework for this math class i'm taking, and the question is:

  1. A set of propositions is consistent if there is an assignment of truth values to each of the
    variables in the propositions that makes each proposition true. Is the following set of
    propositions consistent?

    • The system is in multi-user state if and only if it is operating normally.

    • If the system is operating normally, the kernel is functioning.

    • The kernel is not functioning or the system is in interrupt mode.

    • If the system is not in multiuser state, then it is in interrupt mode. The system is in interrupt mode.

I made a truth table and got the results, but don't know what to do with them because i don't know what the question is asking. Can someone explain?

Best Answer

You can abbreviate the statements as

$M$: multi-user state

$N$: operating normally

$K$: kernel functioning

$I$: in interrupt mode

so that your statments are $$M \iff N, \quad N \implies K,\quad \neg K \vee I, \quad \neg M \implies I, \quad I.$$ You want truth values so that all these statments are true. Clearly $I$ must be true, and in this case so are the third and fourth statements. Just choose values for $M$, $N$, and $K$ that make the first two statements true. One possibility is if $M$, $N$, and $K$ all share the same truth value.

Related Question