I need to write the following sentence as a formula in propositional logic: Proposition a is false, if the two propositions b and c have different truth values; otherwise a is true.
This is how I solved it:
$$ a \lor (b \land c)$$
Is it correct? If my solution is wrong, what would the correct option be? I am a beginner and I am trying to learn this on my own so I have no one else to ask, don't be to harsh on me please!
Your attempt is incorrect. You have $$a \vee (b \wedge c)$$ This is true is $a$ is true or if $b$ and $c$ are both true. This is not at all what is asked for. The proposition is that $a$ is false, if and only if $b$ and $c$ have different values. This is the same as saying that $a$ is true if and only if $b$ and $c$ have the same truth value, right?
This $a \leftrightarrow p$ where $p$ expresses the proposition that $b$ and $c$ have the same truth value. You take it from here.