I have a statement
Either it's not Saturday or I have to go to work
that I want to write in if-then (conditional statement) form.
I know that
$-p V q ≡ p → q$
So I identified the propositions as such:
p = it's not Saturday
q= I have to go to work
and this would give me
if it's not Saturday then I have to go to work
My confusion is this: the statement "It's not Saturday" is already negated in its ENGLISH form.
It is correct to say p = It's not Saturday or should it be -p = It's not Saturday?
I'm getting really confused between when the English statement is already negated.
Instead, let $P$ = "It's Saturday".
Then, letting $Q$ = "I have to go to work", the given statement is $$\lnot P \lor Q$$ which is equivalent to $$P \rightarrow Q$$ or in words, "If it's Saturday, then I have to go to work".