summaryrefslogtreecommitdiff
path: root/3827/CH4/EX4.1/EX4_1.sce
diff options
context:
space:
mode:
Diffstat (limited to '3827/CH4/EX4.1/EX4_1.sce')
-rw-r--r--3827/CH4/EX4.1/EX4_1.sce12
1 files changed, 12 insertions, 0 deletions
diff --git a/3827/CH4/EX4.1/EX4_1.sce b/3827/CH4/EX4.1/EX4_1.sce
new file mode 100644
index 000000000..8b9f6d747
--- /dev/null
+++ b/3827/CH4/EX4.1/EX4_1.sce
@@ -0,0 +1,12 @@
+//EX4_1:Find the minterm expansion of f(a, b, c, d) = a′(b′ + d) + acd′.
+
+//clears the screen
+clc
+
+//clears already existing variables
+clear
+disp('f = a''b'' + a''d + acd''');
+disp('= a''b''(c + c'')(d + d'') + a''d(b + b'')(c + c'') + acd''(b + b'')');
+disp('= a''b''c''d'' + a''b''c''d + a''b''cd'' + a''b''cd + a''bc''d + a''bcd + abcd'' + ab''cd''');
+disp('f = a''b''c''d'' + a''b''c''d + a''b''cd'' + a''b''cd + a''bc''d + a''bcd + abcd'' + ab''cd''');
+disp('f = Σ m(0, 1, 2, 3, 5, 7, 10, 14)');