IGEM:IMPERIAL/2007/Tutorials/Guide for Biologists: Difference between revisions

From OpenWetWare
Jump to navigationJump to search
No edit summary
No edit summary
Line 20: Line 20:
In logic circuitry, an OR gate consists of two or more inputs, the output of which is equivalent to the OR combination of these inputs.
In logic circuitry, an OR gate consists of two or more inputs, the output of which is equivalent to the OR combination of these inputs.
The operation is such that the output is HIGH (logic 1) if at least one of the inputs is HIGH. So, for a two-input OR Gate, the output is HIGH if either ''A or B or both'' are HIGH. Otherwise, the output is LOW (logic 0), i.e. only if all its inputs are LOW. <br>
The operation is such that the output is HIGH (logic 1) if at least one of the inputs is HIGH. So, for a two-input OR Gate, the output is HIGH if either ''A or B or both'' are HIGH. Otherwise, the output is LOW (logic 0), i.e. only if all its inputs are LOW. <br>
The Boolean expression for the OR operation is given as: <math> OUT = A\oplusB </math>
The Boolean expression for the OR operation is given as: <math> OUT = A\oplus B </math>
<br>  
<br>  
<br> [[Image:OR_Gate.jpg]]
<br> [[Image:OR_Gate.jpg]]

Revision as of 18:31, 15 July 2007

==Background==

I'm sure all the biologists - like me - are wondering what Engineering is about... so this page is for us biologists and biochemists to familiarize ourselves with engineering concepts. Also, if there're any silly questions, feel free to add them here!

Engineering Concepts

  • Engineering Cycle
  • Abstraction
  • Logic Gates

Questions on Engineering

--Ben Yi Tew 19:01, 10 July 2007 (EDT): Unclear about anything? Ask the engineers here!

--Johnsy 07:22, 12 July 2007 (EDT): Hi Ben (and the rest of the 2007 team)...I don't know whether to put this in the discussion page or on the main page...One thing I suggest to put on this page is also some stuff on modeling biological situations. These include Michaelis-Menten kinetics and rate laws governing transcription, translation, etc. But one thing to note is that these equations are continuous equation and can't necessarily be applied to the situations you might be working with over the summer in iGEM. In the case where you have one or a few molecules going into a cell, it might be helpful to try stochastic modeling since at that level, it is more of a discrete distribution of molecules within your volume rather than a continuous distribution. Starting to understand the modeling early is very helpful in being able to model the different biological systems that you will inevitably encounter in your project...something which I'm sure Vincent can attest to. Good luck with your project!


Logic Gates

OR Gate

In logic circuitry, an OR gate consists of two or more inputs, the output of which is equivalent to the OR combination of these inputs. The operation is such that the output is HIGH (logic 1) if at least one of the inputs is HIGH. So, for a two-input OR Gate, the output is HIGH if either A or B or both are HIGH. Otherwise, the output is LOW (logic 0), i.e. only if all its inputs are LOW.
The Boolean expression for the OR operation is given as: [math]\displaystyle{ OUT = A\oplus B }[/math]

AND Gate

Here, the AND operation is performed on the gate's inputs. The output will be HIGH only when all the inputs are HIGH; for all other cases, the output will be LOW.
The Boolean expression for the AND operation is given as: [math]\displaystyle{ OUT = A\cdot{B} }[/math]

NOT Gate/Inverter

The Inverter takes one input and produces an output which is the logical inverse (complement) of the input.

The Boolean expression for the AND operation is given as: [math]\displaystyle{ OUT = \overline{A} }[/math].