blob: 6b9548db210a28be532c11c440af716cf00f6550 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
//EX2_1:Simplify Z = A'BC + A'
//clears the screen
clc
//clears already existing variables
clear
disp('Z = A'' + A''BC')
//This expression has the same form as absorption theorem
disp('let X = A'' and Y = BC.')
disp('Z = X + XY = X = A''.')
|