I know i can invert X using NOT.
NOT x = x’
But, can i invert X just with OR & AND ?
Example
Given this function
F = W’.Y.Z’ + V.W’.Z’
Can i make a circuit just with OR & AND ?
Thanks
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.
It is not possible to make NOT out of AND and OR. The first obvious reason is that NOT takes only one argument, while both AND and OR take two. Even if you feed the same variable twice to the AND/OR gates, they will not invert its value
OTOH, you can define AND in terms of OR+NOT and you can define OR in terms of AND+NOT