summaryrefslogtreecommitdiff
path: root/3827/CH2/EX2.6/EX2_6.sce
blob: 8a72534305c7b04ed3beb5c34054ad6204541344 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
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)')