I\'m supposed to prove it this way! a + b === some expression using only IF, a,
ID: 3880396 • Letter: I
Question
I'm supposed to prove it this way!
a + b === some expression using only IF, a, b, T, F
a * b === some expression using only IF, a, b, T, F
~a === some expression using only IF, a, T, F
Explanation / Answer
Basically, you want to prove And Or and Not operations using this so which can be done as below
a+b will be IF(A, T, B) here if a is true then the output is true else it depends on B
A*B will be IF(A, B, F) i.e if A is false then the output is false else it depends on B
~A will be IF(A, F, T) i.e. if A is True then output is False else the output is True
Do give a thumbs up as it matters a lot and in case there are doubts leave a comment.