Why input combinations producing output '1' are picked for forming a standard SOP (Sum of Products) expression and input combinations producing output '0' are picked for forming standard POS (Product of Sums) expression? Is there any specific reason behind it?
From the sample truth table,
Standard SOP expression is formed by picking the input combinations that produce an output of 1. (For an SOP expression input 1 is considered as A and input 0 is considered as A') i.e., Using the input combinations 011, 101, 110 and 111, SOP expression will formed as F = A'BC + AB'C +ABC' + ABC, where A' denotes A complement.
Standard POS expression is formed by picking the input combinations that produce an output of 0. (For a POS expression input 0 is considered as A and input 1 is considered as A') i.e., Using the input combinations 000, 001, 010 and 100, POS expression will formed as F = (A+B+C)(A+B+C')(A+B'+C)(A'+B+C), where A' denotes A complement.
Why the terms producing output 1 are being selected for SOP form and those producing output 0 are being selected for POS form?
1 Answer 1
Study these two circuits. It may help you understand.
-
1\$\begingroup\$ Could you please elaborate? \$\endgroup\$user8379230– user83792302019年02月06日 05:31:06 +00:00Commented Feb 6, 2019 at 5:31
-
1\$\begingroup\$ @user8379230 - The first circuit is SOP and the second one is POS. \$\endgroup\$Michael Karas– Michael Karas2019年02月06日 10:16:46 +00:00Commented Feb 6, 2019 at 10:16
-
\$\begingroup\$ Please go through the edited question and revert. \$\endgroup\$user8379230– user83792302019年02月07日 05:47:36 +00:00Commented Feb 7, 2019 at 5:47
-
1\$\begingroup\$ @user8379230 - Zero need to revert here. The answer to your question lies in understanding the equivalency of the above circuits. You will learn nothing out of this if you cannot figure this out from my answer. \$\endgroup\$Michael Karas– Michael Karas2019年02月07日 09:09:19 +00:00Commented Feb 7, 2019 at 9:09
F=A+B
and SOS cannot representF=A*B
. \$\endgroup\$