Determine the negation of the expression

  • Thread starter Thread starter ur5pointos2sl
  • Start date Start date
  • Tags Tags
    Expression
Join the discussion
Registration is free. Ask a follow-up in this thread, or start your own.
2 replies · 2K views
ur5pointos2sl
Messages
95
Reaction score
0
The question states:

Determine the negation of the expression.

p -> q ^ r.

I am having difficulty finding the negation. Below are the steps I have taken in an attempt to come to the solution.

The - symbol will be the negate symbol.

p -> q ^ r

(-p OR q) ^ r

-(-p OR q) ^ r

(p ^ -q) ^ r

-((p ^ -q) ^ r)

-p OR - r OR q

-(p ^ r) OR q

I feel like I am going in circles. I have made truth tables to compare but have had no luck. Please any advise would be appreciated.
 
Physics news on Phys.org


If you look at a truth table for a conditional statement such as [itex]P\rightarrow Q[/itex], you should find that the only time this statement is rendered false is if the antecedent (the first part, [itex]P[/itex]) is true and the consequent (the second part, [itex]Q[/itex]) is false.

So, what does that tell you about your problem? Keep the antecedent as it is, and negate the consequent, [itex](Q\wedge R)[/itex].
 


ironspud said:
If you look at a truth table for a conditional statement such as [itex]P\rightarrow Q[/itex], you should find that the only time this statement is rendered false is if the antecedent (the first part, [itex]P[/itex]) is true and the consequent (the second part, [itex]Q[/itex]) is false.

So, what does that tell you about your problem? Keep the antecedent as it is, and negate the consequent, [itex](Q\wedge R)[/itex].

Thank you!