Learn How to Implement Equations on a Breadboard | Intro to Logic Lab Help

  • Thread starter Thread starter gotem3303
  • Start date Start date
  • Tags Tags
    Breadboard
AI Thread Summary
Implementing equations on a breadboard involves wiring logic gates to represent the equations, allowing for visual output through LEDs. The user is tasked with constructing three specific equations using AND, OR, and NOT gates, ensuring that each behaves consistently. It's crucial to tie off any unused inputs to avoid noise and potential issues with floating inputs, particularly in CMOS technology. The discussion emphasizes the importance of understanding how to connect these gates properly and the implications of leaving inputs unconnected. Proper implementation will demonstrate the desired logic functions effectively during the lab.
gotem3303
Messages
29
Reaction score
0
So I am taking intro to logic and our first lab has to do with implementing equations on a breadboard. I understand the equations and I get how a breadboard works.
this might be a dumb question but what does it mean to implement an equation on a breadboard? do you wire it up and then make a LED light up or what?

my three equations I have to implement are:

f = x'y'z' + x'yz' + xyz + xy'z
g= x'z' + xz
h= (x' + z')(x + z')

how would you put these on a breadboard, like what am i aiming to accomplish? I am supposed to wire each one seperatly and make sure that they all behave the same way.
 
Engineering news on Phys.org
gotem3303 said:
So I am taking intro to logic and our first lab has to do with implementing equations on a breadboard. I understand the equations and I get how a breadboard works.
this might be a dumb question but what does it mean to implement an equation on a breadboard? do you wire it up and then make a LED light up or what?

my three equations I have to implement are:

f = x'y'z' + x'yz' + xyz + xy'z
g= x'z' + xz
h= (x' + z')(x + z')

how would you put these on a breadboard, like what am i aiming to accomplish? I am supposed to wire each one seperatly and make sure that they all behave the same way.


You can either use a logic analyzer (or a multi-channel oscilloscope) to demonstrate the IO transfer function, or yes, you could use DIP switches at the inpurs (x,y,z) and LEDs at the outputs (f,g,h) to show identical behavior. You implement those equations on the breadboard using ICs with gates inside them.

Which ICs are you going to use? What is the voltage of your power supply? What do you think you should do with any unused inputs to your logic gates?
 
im to use AND, OR, and NOT gates to construct those equations. I believe the voltage is 5 volts? but I am not sure about the other inputs, i thought i just could leave them unconnected.
 
gotem3303 said:
im to use AND, OR, and NOT gates to construct those equations. I believe the voltage is 5 volts? but I am not sure about the other inputs, i thought i just could leave them unconnected.

Nope, tie off any unused inputs either high or low. Quiz question -- how do you tie off unused inputs on the following gates so as to not affect the output of the gate adversely?

AND gate --

OR Gate --

NAND gate --

NOR gate --
 
no idea lol
 
I would review "Sum of Products" and "Product of Sums" in your class literature. There should also be a section in the book/notes that show you how to implement these two forms. Remember that an "OR" gate is represented by addition and that an "AND" gate is represented by multiplication.
 
berkeman said:
Nope, tie off any unused inputs either high or low. Quiz question -- how do you tie off unused inputs on the following gates so as to not affect the output of the gate adversely?

AND gate --

OR Gate --

NAND gate --

NOR gate --

That is a very good question...(to one I don't think I know if my answer is correct or not) This reminds me why I see unused parts of the chip still connected to something on schematics.
 
berkeman said:
Nope, tie off any unused inputs either high or low. Quiz question -- how do you tie off unused inputs on the following gates so as to not affect the output of the gate adversely?

AND gate --

OR Gate --

NAND gate --

NOR gate --

typically just tie the input to gnd and let the output float, at least that is what i do if I'm not using that pin. if its an AND gate then to high so you can toggle the other input to make the output high or low.
 
edmondng said:
typically just tie the input to gnd and let the output float, at least that is what i do if I'm not using that pin. if its an AND gate then to high so you can toggle the other input to make the output high or low.

Correct. Because:

x AND 1 = x

x OR 0 = x
 
  • #10
berkeman, were you the one who said on this forum before that if you let the inputs float. This could confuse the gate and cause noise voltage to appear at the output of used gates.
 
  • #11
thanks guys, i think i actually get it now. i put this thing together tomorrow in my lab so hopefully i get it. thanks for your help!
 
  • #12
Corneo said:
berkeman, were you the one who said on this forum before that if you let the inputs float. This could confuse the gate and cause noise voltage to appear at the output of used gates.
That's correct.
How big a problem this is depends on the exact logic family being used.
It is a very important consideration for cmos parts.
 
  • #13
Corneo said:
berkeman, were you the one who said on this forum before that if you let the inputs float. This could confuse the gate and cause noise voltage to appear at the output of used gates.

The two big problems with floating CMOS inputs is noise (the gate can buzz as the inputs float around between high and low), and increased Idd when the gate input floats near mid-supply (turning on both the pullup and pulldown transistors in the input stage). Bad news.
 
  • #14
yo can use the pspice to simulte that equation by drawing those gates. Then, it'll be easy to verify what you got pratically. use some gates and hook them up to a 5v and LEDs ...good luck
 
  • #15
berkeman said:
The two big problems with floating CMOS inputs is noise (the gate can buzz as the inputs float around between high and low), and increased Idd when the gate input floats near mid-supply (turning on both the pullup and pulldown transistors in the input stage). Bad news.

Does this cause the gate to latch up and draw a lot of current? Or just causes the signals are the used outputs to be noisy?
 
  • #16
Corneo said:
Does this cause the gate to latch up and draw a lot of current? Or just causes the signals are the used outputs to be noisy?

No latchup, just noise and extra (and variable) Idd. To get SCR latchup, the input needs to be driven outside of the rails (like above 5V or below GND) by a diode drop or more, and the source for that drive needs to be able to supply the minimum latchup gate current. When you do get SCR latchup, though, that turns on a low impedance between Vdd and GND, and can fry the chip.
 
Back
Top