From b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b Mon Sep 17 00:00:00 2001 From: priyanka Date: Wed, 24 Jun 2015 15:03:17 +0530 Subject: initial commit / add all books --- 48/CH3/EX3.11/eg_3_11.sce | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) create mode 100755 48/CH3/EX3.11/eg_3_11.sce (limited to '48/CH3/EX3.11') 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 -- cgit