/media/sda-magnetic/david/Dokumente-15/fernuni-hagen/cs-i-ii/old-cs-2-03/fsm-2021-07-16-PC2/automat02.txt


        b a x   b a y
0       0 0 0   1 0 1
1       0 0 1   0 0 0
2       0 1 0   0 0 1
3       0 1 1   0 0 1
4       1 0 0   0 1 0
5       1 0 1   0 1 0
6       1 1 0   0 0 0
7       1 1 1   0 0 1


        b a x   b
0       0 0 0   1
1       0 0 1   0
2       0 1 0   0
3       0 1 1   0
4       1 0 0   0
5       1 0 1   0
6       1 1 0   0
7       1 1 1   0

        b a x   a
0       0 0 0   0
1       0 0 1   0
2       0 1 0   0
3       0 1 1   0
4       1 0 0   1
5       1 0 1   1
6       1 1 0   0
7       1 1 1   0

        b a x   y
0       0 0 0   1
1       0 0 1   0
2       0 1 0   1
3       0 1 1   1
4       1 0 0   0
5       1 0 1   0
6       1 1 0   0
7       1 1 1   1



        b a x   b
0       0 0 0   1

b := (not b and not and not x)

        b a x   a
4       1 0 0   1
5       1 0 1   1

4;5     1 0 -

a := (b and not a)

        b a x   y
0       0 0 0   1
2       0 1 0   1
3       0 1 1   1
7       1 1 1   1

        b a x   y
Gruppe 0
0       0 0 0   1
Gruppe 1
2       0 1 0   1
Gruppe 2
3       0 1 1   1
Gruppe 3
7       1 1 1   1

0;2     0 - 0
2;3     0 1 -
3;7     - 1 1 

y := (not b and not x) or (not b and a) or (a and x)


b := (not b and not and not x)
a := (b and not a)
y := (not b and not x) or (not b and a) or (a and x)