I actually don’t get “an odd number of inputs are true”.
I found or(x,y,z) = or(or(x,y),or(z,z)). Truth table:
I read ahead found this related to the assignment:
I read ahead on accident and see that maybe or(or(x,y),z) is shorter? Since or(z,z) is identity then why not just use z by itself?
This is what i read accidentally ahead:
or(or(x,y),or(y,z)) = or(or(x,y), z)
ET said it was correct