Variables are $E, B, S, V_1, V_2, V_3$
Here is the Boolean expression that I need to simplify
$$EB'SV_1'V_2'V_3 + EB'SV_1'V_2V_3 + EB'SV_1V_2'V_3 + EB'SV_1V_2V_3' + EB'SV_1V_2V_3$$
And this is how I simplified,
$$\begin{align} &EB'SV_1'V_2'V_3 + EB'SV_1'V_2V_3 + EB'SV_1V_2'V_3 + EB'SV_1V_2V_3' + EB'SV_1V_2V_3 \\ &EB'S(V_1'V_2'V_3 + V_1'V_2V_3 + V_1V_2'V_3 + V_1V_2V_3' + V_1V_2V_3) \\ &EB'S[V_2'V_3(V_1 + V_1') + V_2V_3(V_1 + V_1') + V_1V_2V_3'] \\ &V_1 + V_1' = 1 \end{align}$$
So,
$$\begin{align} &EB'S[V_2'V_3 + V_2V_3 + V_1V_2V_3'] \\ &EB'S[V_3(V_2 + V_2') + V_1V_2V_3'] \\ &V_2 + V_2' = 1 \end{align}$$
So,
$$EB'S(V_3 + V_1V_2V_3')$$
But when I solve this equation through a simulator, it gives me the simplified expression as
$$EB'S(V_3 + V_1V_2)$$
Can anyone tell me where did I do wrong?
$V_1$gives $V_1;$ better: avoid the subscripts and use $P,Q,R$ instead. – ryang Jul 07 '22 at 12:11