diff options
Diffstat (limited to '48/CH3/EX3.11/eg_3_11.sce')
-rwxr-xr-x | 48/CH3/EX3.11/eg_3_11.sce | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/48/CH3/EX3.11/eg_3_11.sce b/48/CH3/EX3.11/eg_3_11.sce new file mode 100755 index 000000000..399ff30e7 --- /dev/null +++ b/48/CH3/EX3.11/eg_3_11.sce @@ -0,0 +1,16 @@ +clear;
+clc;
+disp("x NOR x=(x+x)^");
+disp("NOT Gate");
+disp("x NOR x=x^x^=x^");
+disp("OR Gate");
+disp("(x NOR y) NOR (x NOR y) = (x^ NOR y^)^ = x+y");
+disp("AND Gate");
+disp("(x NOR x) NOR (y NOR y )= x^ NOR y^ = xy");
+disp("NAND Gate");
+disp(" NOT ((x NOR x) NOR (y NOR y))= NOT (x^ NOR y^) = NOT(xy) = (xy)^");
+disp("XOR Gate");
+disp("(x^ NOR y^) NOR (x NOR y) = x^y+xy^");
+disp("XNOR Gate");
+disp("(x^ NOR y) NOR (x NOR y^) = xy+x^y^");
+disp("Since every other gate can be implemented using NOR gate it is said to be functionally complete")
\ No newline at end of file |