Is
f = a'ab;
the same as
f = 1
Is this possible? I got this when I was simplifying something.
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
If that’s meant to represent (and I think this is the likely case):
then, no, it’s false no matter the values of
aorb. That’s because one ofaorNOT-ais definitely false,FALSE AND anythingis false and the operation is associative:(a AND b) AND c == a AND (b AND c).If it’s meant to represent:
then, yes, it’s true no matter the values of
aorb. That’s because one ofaorNOT-ais definitely true andTRUE OR anythingis true. The associativity rules also apply here.