blob: 82994c8e7ac70be6dd5782e00b12ea2fd06583d7 (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
//example 3.2
clc;
clear;
disp("Multipl the factors of the foregoing equation to get");
disp('Y = A''A + A''B + BA +BB');
disp('it becomes, Y = A''B + AB + B ');
disp('We can factor the foregooing equation as follows :');
disp('Y = B(A'' + A) + B = B + B = B ');
disp('this says that output Y equals to B, so all we have to do is connect a wire between input B and output Y.');
|