blob: b08694ed0bc1413ca28ac60b8546553fa47faf07 (
plain)
1
2
3
4
5
6
7
8
9
10
|
//Chapter-15, Example 15.19, Page 519
//=============================================================================
clc
clear
//CALCULATIONS
//The adjacent cells that can be combined together are the cells 000 and 100 and the cell 011 and 111
//By combining the adjacent cells,we get
disp('((A''+A)B''C'')+(A''+A)BC)')//------>step 1
disp('(B''C'')+(BC)')//------>step 2
//=================================END OF PROGRAM=======================================================================================================
|