edited by
6,637 views

3 Answers

Best answer
10 votes
10 votes
(X⊕Y)⊕Y=(XY'+XY')Y'+(XY+X'Y')Y

               =XY'+XY

               =X

Another way to solve problem

XOR operation is associative

(X⊕Y)⊕Y=X⊕(Y⊕Y)

              =X⊕0

               =X
edited by
2 votes
2 votes
X   Y   Xxor Y=C       Cxor Y=result

0   0     0                      0=X

0   1     1                      0=X

1   0     1                      1=X

1   1     0                      1=X

Therefore, answer is X.(An easy way to solve this type of question or if number of variables is restricted to 3.
1 votes
1 votes

(X⊕Y)⊕Y = (X⊕Y)Y' + (X⊕Y)'Y =  (X⊕Y)Y'  +  (X⊙Y)Y = (X'Y + XY')Y + (XY + X'Y')Y

                                                                                 = X'Y + XY = (X'+X)Y = Y  

Answer:

Related questions

11 votes
11 votes
3 answers
1
go_editor asked Jun 22, 2016
2,062 views
In Boolean algebra, rule $\left ( \text{X + Y} \right )\left ( \text{X + Z} \right ) =$$\text{Y + XZ}$$\text{X + YZ}$$\text{XY + Z}$$\text{XZ + Y}$
6 votes
6 votes
3 answers
2
go_editor asked Jun 23, 2016
3,329 views
In an $RS$ flip-flop, if the $S$ line (Set line) is set high ($1$) and the $R$ line (Reset line) is set low ($0$), then the state of the flip-flop is :Set to $1$Set to $0...
6 votes
6 votes
3 answers
3
go_editor asked Jun 22, 2016
2,483 views
The output expression of the following gate network is$\text{X.Y} + \overline{\text{X}} . \overline{\text{Y}}$$\text{X.Y + X.Y}$$\text{X.Y}$$\text{X + Y}$
10 votes
10 votes
1 answer
4
go_editor asked Jun 21, 2016
7,744 views
What is the decimal value of the floating-point number $C1D00000$ (hexadecimal notation)? (Assume $32$-bit, single precision floating point $\text{IEEE}$ representation)$...