summaryrefslogtreecommitdiff
path: root/48/CH3/EX3.11
diff options
context:
space:
mode:
authorpriyanka2015-06-24 15:03:17 +0530
committerpriyanka2015-06-24 15:03:17 +0530
commitb1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b (patch)
treeab291cffc65280e58ac82470ba63fbcca7805165 /48/CH3/EX3.11
downloadScilab-TBC-Uploads-b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b.tar.gz
Scilab-TBC-Uploads-b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b.tar.bz2
Scilab-TBC-Uploads-b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b.zip
initial commit / add all books
Diffstat (limited to '48/CH3/EX3.11')
-rwxr-xr-x48/CH3/EX3.11/eg_3_11.sce16
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