edited by
15,260 views
52 52 votes

Given $f_1$, $f_3$ and $f$ in canonical sum of products form (in decimal) for the circuit

$f_1 = \Sigma m(4, 5, 6, 7, 8)$

$f_3 = \Sigma m(1, 6, 15)$

$f = \Sigma m(1, 6, 8, 15)$

then $f_2$ is

  1. $\Sigma m(4, 6)$

  2. $\Sigma m(4, 8)$

  3. $\Sigma m(6, 8)$

  4. $\Sigma m(4, 6, 8)$

6 Answers

54 54 votes

$\begin{matrix} \text{Options} & f_1 \cdot f_2 & f_3 + (f_1 \cdot f_2) & \\ A & \{4,6\} & \{1,4, 6,15\} & {\color{Red}{fails}} \\ B & \{4,8\} & \{1,4,6, 8,15\} & {\color{Red} {fails}}\\ C & \{6,8\} & \{1,6,8,15\} & ok\\ D & \{4,6, 8\} & \{1,4,6, 8, 15\} & {\color{Red} {fails} } \end{matrix}$

answer = option C

6 6 votes
option c is correct.

first of all the and term is one only when when both are one. and or is one when any one is one. so the terms in answer wll be there which comes either in f1.f2 or in f3 . as there is an "OR" between them . so the terms 1,6,15 are contributed by f3 while 8 should be contributed by f1.f2. so we want that f1.f2 should atleast result in 8. and we know for that both should contain 8. f1 is having 8 so f2 atleast should contain 8. now what if f2 contain 4 also. then 4 should apper in f. which is not. so 6,8 is the valid option
5 5 votes
Expression Boils down to:

$f1.f2 + f3 = f$

$(f1 ⋂ f2) U f3 = f$

we use intersection for AND because if a f1 and f2 both are true for a minterm then only output will be true.

we use Union for OR because if one among  f1 and f2 is true for a minterm then output will be true.

${4,5,6,7,8}⋂ f2 U {1,6,15} = {1,6,8,15}$

${4,5,6,7,8}⋂ f2 = {8}$

$f2 = {8,any other elements preset in f }$

check for options c contains {6,8} 6 is in f

option (C)
0 0 votes
After solving the Logic Gate, we got equation –

f = f1.f2 + f3

which means what is present in f3 is always present in f because we are taking union with f3.

as f3 is (1,6,15) so f must have these , and instead of these we have one extra i.e. 8( which means 8 is comes from intersection of f1.f2)

and 6 is already be there in f3, so may be it is not present in f2, But 4 is also not present in f2 because , if it is present then f1.f2 = { 4 } which also comes in f & it is not present in f.

 

That’s why options which have 4 is not correct answer.

and we find answer as {6 , 8}
0 0 votes

Detailed Video Explanation with Complete Analysis: https://youtu.be/r7V6uY_t7X4?t=6304

Must Watch the above Complete Lecture to learn Combining Boolean Fuctions wrt Minterms & Maxterms for all standard boolean operations.

Note: $2^{12}$ different functions are possible for $f_2$ (Watch above video solution), & Option C is just one such function possible for $f_2.$

Answer:
Position:
Show:

Related questions

74 74 votes
4 answers 4 answers
35.0k
35.0k views
Kathleen asked Sep 12, 2014
35,005 views
Which of the following are NOT true in a pipelined processor?Bypassing can handle all RAW hazardsRegister renaming can eliminate all register carried WAR hazardsControl h...
44 44 votes
4 answers 4 answers
17.6k
17.6k views
Kathleen asked Sep 11, 2014
17,639 views
If $P, Q, R$ are Boolean variables, then$(P + \bar{Q}) (P.\bar{Q} + P.R) (\bar{P}.\bar{R} + \bar{Q})$ simplifies to$P.\bar{Q}$$P.\bar{R}$$P.\bar{Q} + R$$P.\bar{R} + Q$
40 40 votes
5 answers 5 answers
11.9k
11.9k views
Kathleen asked Sep 11, 2014
11,876 views
In the Karnaugh map shown below, $X$ denotes a don’t care term. What is the minimal form of the function represented by the Karnaugh map?$\bar{b}.\bar{d} + \bar{a}.\bar{d...
55 55 votes
2 answers 2 answers
18.8k
18.8k views
Kathleen asked Sep 11, 2014
18,816 views
In the IEEE floating point representation the hexadecimal value $0\text{x}00000000$ corresponds toThe normalized value $2^{-127}$The normalized value $2^{-126}$The normal...