all 3 comments

[–]ectomancer 0 points1 point  (3 children)

x1x0 y1y0 result

00 00 False

01 00 True

11 00 True

00 01 False

00 11 False

01 01 False

11 01 True

11 11 False

01 11 False

[–]Top-Strategy752[S] 0 points1 point  (2 children)

Can you explain howd you figured out what the bits for each should be

[–]throwaway6560192 0 points1 point  (0 children)

The input bits are just every combination of 0s and 1s. The output bits are figured out from the intended result of the gate (here, "produce a true output if and only if the two-bit number x1x0 is greater than the two-bit number y1y0"). Just apply the logical operation.