Can someone simplified this boolean

  • Thread starter Thread starter tonyzgolfer
  • Start date Start date
Join the discussion
Ask a follow-up here, or get your own question answered by working scientists, mathematicians and engineers — people, not an autocomplete.
Real named experts · corrections over time · the nuance an AI answer skips
5 replies · 2K views
tonyzgolfer
Messages
1
Reaction score
0

Homework Statement


here are my function.

s = xy'z + x'y'z + xyz



Homework Equations


boolean algebra


The Attempt at a Solution


after i try many boolean law. i got this
c. F(x,y,z) = xy’z+x’y’z+xyz
= xy’z + x’y’z + x’y’z + xyz
= y’z(x + x’) + x’y’z + xyz
= y’z(x + x’) + z(x’y’+xy)
= y’z(1) + z(x’y’+xy)
but i stuck in this line
i know x'y'+xy is (x xor y )'



what is the simplest ?

thank in advance
 
Physics news on Phys.org
tonyzgolfer said:

Homework Statement


here are my function.

s = xy'z + x'y'z + xyz



Homework Equations


boolean algebra


The Attempt at a Solution


after i try many boolean law. i got this
c. F(x,y,z) = xy’z+x’y’z+xyz
= xy’z + x’y’z + x’y’z + xyz
= y’z(x + x’) + x’y’z + xyz
= y’z(x + x’) + z(x’y’+xy)
= y’z(1) + z(x’y’+xy)
but i stuck in this line
i know x'y'+xy is (x xor y )'



what is the simplest ?

thank in advance

First, you have two terms in the initial equation that have y'z in them. You have them correctly combined in your last equation above.

Second, if you use a Karnaugh map to help you see what to do in the logic, that may help. Draw a K-map of the 3 terms in the equation. See how the y'z combination becomes obvious? Do you see another combination that will get you to the minimim implementation?
 
Without using a Karnaugh map:

F(x,y,z) = xy'z + x'y'z + xyz
= (xy'z + x'y'z) + xyz
<< middle steps edited out by berkeman >>
= (y' + x)z
= y'z + xz
 
zgozvrm said:
Without using a Karnaugh map:

F(x,y,z) = xy'z + x'y'z + xyz
= (xy'z + x'y'z) + xyz
<< middle steps edited out by berkeman >>
= (y' + x)z
= y'z + xz

Please do not do all the work for the OP. They must be doing the bulk of the work on their homework/coursework problems.
 
I always prefer to use Karnaugh maps with these sort of problems since I'm more visual, so give that a try.
Otherwise, zgozvrm has posted a useful start. I'd continue using De Morgan's law.
 
I, too, prefer using Karnaugh maps for this sort of problem. I was simply showing how to solve the problem using Boolean algebra, since the OP was going that route. Perhaps, the original problem stated that Boolean algebra was required, or that Karnaugh maps were not to be used.