What does “realize SoP function using gates with arbitrary number of inputs” mean

logic-gates

I am confused what "gates with arbitrary number of inputs" mean. If we are asked to realize function SoP(0,2,3,6) using standard truth table using gates with arbitrary number of inputs… how is it different from standard boolean expression( after simplification from full sum of minterms):
$$x_1'x_3' + x_1'x_2 + x_2x_3'$$

This can be realized as follows:

schematic

simulate this circuit – Schematic created using CircuitLab

BUT, problem says to realize SoP(0,2,3,6) with gates of arbitrary number of inputs…
I am not sure what to do with it.
Need help!
Thanks

Best Answer

It means your AND and OR gates are allowed to have as many inputs as you need. For example, if you needed a product term with 8 inputs, that would be allowed.

If you had been asked to implement the circuit using standard 7400-series logic, for example, an 8-input gate might not be available, and you would have to make an equivalent circuit using several gates with fewer inputs per gate.

Related Topic