diff options
Diffstat (limited to '3827/CH2/EX2.1')
-rw-r--r-- | 3827/CH2/EX2.1/EX2_1.sce | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/3827/CH2/EX2.1/EX2_1.sce b/3827/CH2/EX2.1/EX2_1.sce new file mode 100644 index 000000000..6b9548db2 --- /dev/null +++ b/3827/CH2/EX2.1/EX2_1.sce @@ -0,0 +1,12 @@ +//EX2_1:Simplify Z = A'BC + A'
+
+//clears the screen
+clc
+
+//clears already existing variables
+clear
+
+disp('Z = A'' + A''BC')
+//This expression has the same form as absorption theorem
+disp('let X = A'' and Y = BC.')
+disp('Z = X + XY = X = A''.')
|