blob: bbc7354e987321592ef96a2f919c94f8520bcfbc (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
//example 5.3//
clc
//clears the screen//
clear
//clears already existing variables//
//conversion of given equation to its canonical POS form//
disp('given=> Y=(A+B)(A+C)(B+C'')')
disp('on solving')
disp('Y=(A+B+CC'')(A+BB''+C)(AA''+B+C'')')
disp('Y=(A+B+C)(A+B+C'')(A+C+B)(A+C+B'')(A+B+C'')(A''+B+C'')')
//using theorem 1.10//
disp('Y=(A+B+C)(A+B+C'')(A+B''+C)(A''+B+C'')')
//using theorem 1.6//
//result//
|