retagged by
2,406 views

2 Answers

Best answer
4 votes
4 votes

[p → (q ∨ r)] ∧ (~q)} → (p → r)
= ((p' + q + r)q')' + p' + r
= (p'q' + rq')' + p' + r
= (p + q)(r' + q) + p' + r
= pr' + pq + qr' + q + p' + r
=pr' + (pq + qr' +q) + p' + r = (pr' + p') + q(p + r' +1) + r
= p' +r' + q + r
=p' + q + (r + r')
= p' +
 q + T
= TAUTOLOGY

 

selected by
5 votes
5 votes
implication is false when lhs is true and rhs is false

so rhs p->r is false if p is true and r is false (we assume RHS is false)

coming to lhs it is conjunction of two terms

-q is true  that means q is false

p->(q or r)    p is true q and r are false  so T->F is false

so lhs is false and false that gives false

F->F is true

so it is tautology(bcoz if rhs is false lhs is also false )

Related questions


Deprecated: Implicit conversion from float-string "1709662657.149" to int loses precision in /var/www/html/qadb/qa-include/app/format.php on line 796

Deprecated: Implicit conversion from float-string "1709662657.149" to int loses precision in /var/www/html/qadb/qa-include/app/format.php on line 801

Deprecated: Implicit conversion from float-string "1709662657.149" to int loses precision in /var/www/html/qadb/qa-include/app/format.php on line 802

Deprecated: Implicit conversion from float-string "1709662657.149" to int loses precision in /var/www/html/qadb/qa-include/app/format.php on line 803
147
views
1 answers
1 votes
1.2k
views
2 answers
0 votes
Shivam_j asked Oct 3, 2022
1,166 views
1.2k
views
0 answers
0 votes
rahul saxena asked Oct 16, 2017
1,196 views
I tried solving this question using normal approach of writing the whole truth table and evaluating each proposition. This seems to be a very error-prone method. It took ...