diff options
Diffstat (limited to '3827/CH3/EX3.4/Ex3_4.sce')
-rw-r--r-- | 3827/CH3/EX3.4/Ex3_4.sce | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/3827/CH3/EX3.4/Ex3_4.sce b/3827/CH3/EX3.4/Ex3_4.sce new file mode 100644 index 000000000..ebd1a45d0 --- /dev/null +++ b/3827/CH3/EX3.4/Ex3_4.sce @@ -0,0 +1,14 @@ +//EX3_4: Simplify A'B + A'B'C'D' + ABCD'
+
+//clears the screen
+clc
+
+//clears already existing variables
+clear
+
+disp('A''B + A''B''C''D'' + ABCD''')
+disp('= A''(B + B''C''D'') + ABCD''')
+disp('= A''(B + C''D'') + ABCD''')
+disp('= B(A'' + ACD'') + A''C''D''')
+disp('= B(A'' + CD'') + A''C''D''')
+disp('= A''B + BCD'' + A''C''D''')
|