#karnaugh map

1 messages · Page 1 of 1 (latest)

elder slate
#

Can anybody helps me ?

Simplify the following Boolean function using the Karnaugh Map!
a. f(x,y,z) = x'z + x'y + xy'z + yz
b. f(w,x,y,z) = w'x'y' + x'yz' + w'xyz' + wx'y'

gritty topaz
#

First convert them into SOP form

#

AND the missing terms as (T+T') to convert them into SOP

#

For (a) question

x'z(y+y') + x'y(z+z') + xy'z + yz(x+x')

#

Simplify to get every term in xyz format