summaryrefslogtreecommitdiff
path: root/1964/CH15/EX15.19/ex15_19.sce
diff options
context:
space:
mode:
authorpriyanka2015-06-24 15:03:17 +0530
committerpriyanka2015-06-24 15:03:17 +0530
commitb1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b (patch)
treeab291cffc65280e58ac82470ba63fbcca7805165 /1964/CH15/EX15.19/ex15_19.sce
downloadScilab-TBC-Uploads-b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b.tar.gz
Scilab-TBC-Uploads-b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b.tar.bz2
Scilab-TBC-Uploads-b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b.zip
initial commit / add all books
Diffstat (limited to '1964/CH15/EX15.19/ex15_19.sce')
-rwxr-xr-x1964/CH15/EX15.19/ex15_19.sce10
1 files changed, 10 insertions, 0 deletions
diff --git a/1964/CH15/EX15.19/ex15_19.sce b/1964/CH15/EX15.19/ex15_19.sce
new file mode 100755
index 000000000..b08694ed0
--- /dev/null
+++ b/1964/CH15/EX15.19/ex15_19.sce
@@ -0,0 +1,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=======================================================================================================