View Single Post
  #31 (permalink)  
Old 10-04-2008, 09:34 AM
WingedPanther's Avatar   
WingedPanther WingedPanther is offline
Super Moderator
 
Join Date: Jul 2006
Age: 35
Posts: 4,092
Last Blog:
Why Learn Data Structu...
Credits: 28
Rep Power: 45
WingedPanther is a splendid one to beholdWingedPanther is a splendid one to beholdWingedPanther is a splendid one to beholdWingedPanther is a splendid one to beholdWingedPanther is a splendid one to beholdWingedPanther is a splendid one to beholdWingedPanther is a splendid one to behold
Default Re: Homework For LuLz

Effectively, here's what my Venn diagrams are doing:

F = y’z’ + x’yz + x’y + xyz + xz’
F = (xy'z' + x'y'z') + (x'yz) + (x'yz + x'yz') + (xyz) + (xyz' + xy'z') //write each xyz combo explicitly
F = xyz + xyz' + xy'z' + x'yz + x'yz' + x'y'z' //write each value once
F = (xyz + xyz' + xy'z') + (x'yz + x'yz' + x'y'z') + (xyz + xyz' + x'yz + x'yz') + (xy'z' + x'y'z') + (xyz + x'yz) + (xyz' + xy'z' + x'yz' + x'y'z') // write all the items that correspond to x, x', y, y', z, z', duplicating as necessary
F = (xyz + xyz' + xy'z') + (x'yz + x'yz' + x'y'z') + y + (xy'z' + x'y'z') + (xyz + x'yz) + z' // any quads get rewritten as single letters, highlight any items that they covered
F = y + z' // ignore any sets that are covered by the singletons
__________________
CodeCall Blog | CodeCall Wiki | Shareware | Linux Forum
Programming is a branch of mathematics.
Reply With Quote