diff options
Diffstat (limited to '3827/CH2/EX2.7/EX2_7.sce')
-rw-r--r-- | 3827/CH2/EX2.7/EX2_7.sce | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/3827/CH2/EX2.7/EX2_7.sce b/3827/CH2/EX2.7/EX2_7.sce new file mode 100644 index 000000000..1fca0b3ea --- /dev/null +++ b/3827/CH2/EX2.7/EX2_7.sce @@ -0,0 +1,13 @@ +//EX2_7 To find complement of (A' + B)C'
+
+//clears the screen
+clc
+
+//clears already existing variables
+clear
+
+//Using 2.12 i.e. (XY)' = X' + Y'
+disp('((A'' + B)C'')'' = (A'' + B)'' + (C'')''')
+//Now using 2.13 i.e. (X + Y)' = X'.Y'
+disp('(A'' + B)C'' = AB'' + C')
+
|