MHB Dealing with 5 input variable Kmaps

  • Thread starter Thread starter shamieh
  • Start date Start date
  • Tags Tags
    Input Variable
AI Thread Summary
The discussion focuses on verifying a 5-input Karnaugh map (K-map) for the function f(V, W, Z, Y, X) and determining the minimal Sum of Products (SOP) equation. The K-map is organized with WX as the top column variables and YZ as the horizontal row variables. The user presents two K-map configurations, one for v = 0 and another for v = 1, detailing the outputs for each combination of inputs. The proposed minimal SOP equation is vzw + zw\bar{x} + \bar{v}\bar{y}z\bar{w}. The user seeks confirmation on the accuracy of their work.
shamieh
Messages
538
Reaction score
0
Just need someone to check my work. Thank you for your time. First time doing a 5 input Kmap.

Determine the following 5 input Karnaugh map for function f(V,W,Z,Y,Z) determine the minimal SOP equation. NOTE: (WX are the variables associated with the top column, and YZ are the variables associated with the other column horizontally.)

[TABLE="class: grid, width: 250"]
[TR]
[TD]YZ|WX
[/TD]
[TD]00
[/TD]
[TD]01
[/TD]
[TD]11
[/TD]
[TD]10
[/TD]
[/TR]
[TR]
[TD]00
[/TD]
[TD]0
[/TD]
[TD]0
[/TD]
[TD]0
[/TD]
[TD]0
[/TD]
[/TR]
[TR]
[TD]01
[/TD]
[TD]1
[/TD]
[TD]1
[/TD]
[TD]0
[/TD]
[TD]1
[/TD]
[/TR]
[TR]
[TD]11
[/TD]
[TD]0
[/TD]
[TD]0
[/TD]
[TD]0
[/TD]
[TD]1
[/TD]
[/TR]
[TR]
[TD]10
[/TD]
[TD]0
[/TD]
[TD]0
[/TD]
[TD]0
[/TD]
[TD]0
[/TD]
[/TR]
[/TABLE]
v = 0

[TABLE="class: grid, width: 250"]
[TR]
[TD]YZ|WX
[/TD]
[TD]00
[/TD]
[TD]01
[/TD]
[TD]11
[/TD]
[TD]10
[/TD]
[/TR]
[TR]
[TD]00
[/TD]
[TD]0
[/TD]
[TD]0
[/TD]
[TD]0
[/TD]
[TD]0
[/TD]
[/TR]
[TR]
[TD]01
[/TD]
[TD]0
[/TD]
[TD]0
[/TD]
[TD]1
[/TD]
[TD]1
[/TD]
[/TR]
[TR]
[TD]11
[/TD]
[TD]0
[/TD]
[TD]0
[/TD]
[TD]1
[/TD]
[TD]1
[/TD]
[/TR]
[TR]
[TD]10
[/TD]
[TD]0
[/TD]
[TD]0
[/TD]
[TD]0
[/TD]
[TD]0
[/TD]
[/TR]
[/TABLE]
v = 1

My Answer: $$vzw + zw\bar{x} +\bar{v}\bar{y}z\bar{w}$$
 
Technology news on Phys.org
Looks good to me.
 
Dear Peeps I have posted a few questions about programing on this sectio of the PF forum. I want to ask you veterans how you folks learn program in assembly and about computer architecture for the x86 family. In addition to finish learning C, I am also reading the book From bits to Gates to C and Beyond. In the book, it uses the mini LC3 assembly language. I also have books on assembly programming and computer architecture. The few famous ones i have are Computer Organization and...
I have a quick questions. I am going through a book on C programming on my own. Afterwards, I plan to go through something call data structures and algorithms on my own also in C. I also need to learn C++, Matlab and for personal interest Haskell. For the two topic of data structures and algorithms, I understand there are standard ones across all programming languages. After learning it through C, what would be the biggest issue when trying to implement the same data...

Similar threads

Back
Top