diff options
Diffstat (limited to '3827/CH2/EX2.6/EX2_6.sce')
-rw-r--r-- | 3827/CH2/EX2.6/EX2_6.sce | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/3827/CH2/EX2.6/EX2_6.sce b/3827/CH2/EX2.6/EX2_6.sce new file mode 100644 index 000000000..8a7253430 --- /dev/null +++ b/3827/CH2/EX2.6/EX2_6.sce @@ -0,0 +1,14 @@ +//EX2_6 Factor C'D + C'E' + G'H
+
+//clears the screen
+clc
+
+//clears already existing variables
+clear
+
+//Using ordinary distributive law
+disp('C''D + C''E'' + G''H = C''(D + E'') +G''H')
+//Now applying second distributive law
+disp('= (C'' +G''H)((D + E'') + G''H)')
+//Now identify X , Y and Z in each expression and complete the factoring
+disp('= (C'' + G'')(C'' H)(D + E'' G'')(D + E'' +H)')
|