Continue to Site

Welcome to EDAboard.com

Welcome to our site! EDAboard.com is an international Electronics Discussion Forum focused on EDA software, circuits, schematics, books, theory, papers, asic, pld, 8051, DSP, Network, RF, Analog Design, PCB, Service Manuals... and a whole lot more! To participate you need to register. Registration is free. Click here to register now.

AND gate using XOR gate

Status
Not open for further replies.

spauls

Advanced Member level 2
Joined
Dec 17, 2002
Messages
524
Helped
26
Reputation
52
Reaction score
9
Trophy points
1,298
Activity points
3,355
and gate using xor gate

how to design an AND gate from XOR gate.
 

xor universal gate

A XOR gate gives TRUE as long as the inputs are the same.
So we use another XOR gate to seperate both LOW and both HIGH.
A.B = (A^B)^A = (A^B)^B
 

and gate using xor

Thanks ,
is it possible to make OR gate with XOR ,
Also can we make AND/OR gate using XNOR .
 

or gate using xor gate

Hi,
I think the solution given is not correct (A^B)^A does not give A.B
we get the following o/p
A B o/p
0 0 0
0 1 1
1 0 0
1 1 1
Can anyone provide the correct answer ?

Best Regards,
 

or gate using xor

My apologies, wasnt thinking too well. Anyway, this should work, although I'm not too sure if it uses the least XOR gates. Baiscally uses the idea of !A = 1^A.

A.B = (((A^B)^1)^A)^1

Any combinational circuit can be accomplished using NAND/NOT or NOR/NOT gates. THe idea is to manipulate using De Morgan's Theorem.
 

implement or gate using xor gate

By boolean algebra, (0,1,&,|) forms a field, (0,1,^,|) also forms a field. use de morgan dicipline, add ~ operator, (&, ~) is enough, (| ~) is also enough. but ^ can't benefit from de morgan, (^, ~) is not enough.
In this example, I think A.B can't be represented by only ^ operator.
 

xor using and gate

can ne body tell me how make And and OR gates using buffers?
 

or gate using xor and and

Yes!
You can't have AND gate using XOR gate! You can only get
buffer or inverter!

To be an universal gate a gate needs to satisfy both the following conditions!
1. You should be able to get inverter using the gate.
2. You should be able to block the input.

Here by 2 what i means is this....
Take a 2 input NAND gate
1. is satisfied if you connect one input to '1' o/p will be inversion of input!
2. is satisfied if you connect one input to '0' o/p will be '1' other input wont
have any effect on o/p. i.e. other input gets blocked!

Only a MUX, NAND and NOR gates satisfy both the above conditions and are
Universal gates!
XOR satisfies only 1st condition!
 

xor using and and or gate

bizoo said:
can ne body tell me how make And and OR gates using buffers?

No, You can't.
But you can make any gate using NAND gates. Or any gate using NOR gate.
NAND gate and NOR gate n-p complete.
 

and gate using xor gates

It seems that a XOR is not a universe gate,

it can't be used to construct a and gate.

am I right.

best regards




spauls said:
how to design an AND gate from XOR gate.
 

xor gate using and and or

Hi,
How to design basic gates using mux
 

    V

    Points: 2
    Helpful Answer Positive Rating
universal gate xor

AND: Y=A? B:0;
OR: Y=A? 1:B;
INV: Y=A? 0:1;

You can build any other logic from these.
I think some FPGAs like Actel used MUXes to build their combinational logic.
 

how to make a xor gate using and, or and not

why you construct and gate with xor gates?
 

make and gate from xor

Any combinational logic can be implemented using a universal gate. A nand gate and a nor gate are called as universal gate. (U even dont require a not gate). U can also implement a combinationla logic or basic gates using muxes. Implementing comb logic using muxes is useful in the cases of FPGAs, if you are having a shortage of comb gates.
 

Status
Not open for further replies.

Part and Inventory Search

Welcome to EDABoard.com

Sponsor

Back
Top