Team:INSA Toulouse/contenu/project/binary reminder
From 2013.igem.org
Mesnageclem (Talk | contribs) |
|||
(12 intermediate revisions not shown) | |||
Line 82: | Line 82: | ||
- | <h1 class="title1"> | + | <h1 class="title1">Boolean Logic Based Devices</h1> |
- | |||
- | |||
- | |||
- | |||
- | |||
- | |||
- | |||
- | |||
- | |||
- | |||
- | |||
- | |||
- | |||
- | |||
- | |||
- | |||
- | |||
- | |||
- | |||
- | |||
- | |||
- | |||
- | |||
- | |||
- | |||
- | |||
<h2 class="title2">What is a logic gate?</h2> | <h2 class="title2">What is a logic gate?</h2> | ||
<br> | <br> | ||
- | <p class="texte">A logic gate is an idealized or physical device implementing a Boolean function | + | |
+ | <p class="texte">A logic gate is an idealized or physical device implementing a Boolean function. In other terms it performs a logical operation on one or more logical inputs and produces a single logical output <a href="http://en.wikipedia.org/wiki/Logic_gate" target="_blank">(From Wikipedia)</a>. Simply said: logic gates are the devices that perform the boolean logic operations.</p> | ||
<p class="texteleft"><span class="spantitle">AND Gate</span></br> | <p class="texteleft"><span class="spantitle">AND Gate</span></br> | ||
<br>For an AND gate, if the two inputs are equal to 1, the result equals 1.<p> | <br>For an AND gate, if the two inputs are equal to 1, the result equals 1.<p> | ||
Line 145: | Line 120: | ||
<br> | <br> | ||
- | <p class=" | + | |
- | < | + | |
+ | <p class="texte"><span class="spantitle">Electronic Full Adder</span></p> | ||
+ | |||
+ | <img src="https://static.igem.org/mediawiki/2013/9/9b/400px-Full_Adder.png" class="imgcontent" /> | ||
+ | |||
+ | <p class="texteright450">This is the truth table of a full adder.<p> | ||
<img src="https://static.igem.org/mediawiki/2013/5/52/Table_vérité_addition_-_200px.png" class="imgcontentleft" /> | <img src="https://static.igem.org/mediawiki/2013/5/52/Table_vérité_addition_-_200px.png" class="imgcontentleft" /> | ||
<div class="clear"></div> | <div class="clear"></div> | ||
+ | |||
+ | |||
+ | |||
+ | |||
+ | |||
+ | |||
+ | <h2 class="title2">How to count with binary numbers?</h2> | ||
+ | |||
+ | <p class="texte">For those who don’t remember your binary counting courses (or for those who don’t have any idea about binary counting), we provide a little reminder!</p> | ||
+ | |||
+ | <img src="https://static.igem.org/mediawiki/2013/c/c4/Binary_decimal_2.png" class="imgcontent" /> | ||
+ | |||
+ | <table class="tablecontent"> | ||
+ | |||
+ | <tr style="background-color:#20a8da; height:50px; color:#ffffff;" > | ||
+ | <td style="border-bottom:4px solid #e5e6e6; border-top-left-radius:9px;"> </td> | ||
+ | <td style="border-bottom:4px solid #e5e6e6; " colspan = "2">Operation</td> | ||
+ | <td style="border-bottom:4px solid #e5e6e6; border-top-right-radius:9px;">Result</td> | ||
+ | </tr> | ||
+ | <tr> | ||
+ | <td style="border-right:1px solid #e5e6e6;">Decimal</td> | ||
+ | <td style="border-right:1px solid #e5e6e6;">5</td> | ||
+ | <td style="border-right:1px solid #e5e6e6;">2</td> | ||
+ | <td>7</td> | ||
+ | </tr> | ||
+ | <tr style="border-top:1px solid #e5e6e6"> | ||
+ | <td style="border-right:1px solid #e5e6e6; border-top:1px solid #e5e6e6;">Binary</td> | ||
+ | <td style="border-right:1px solid #e5e6e6; border-top:1px solid #e5e6e6;">1 (1*2^2)<br>0 (0*2^1)<br>1 (1*2^0)</td> | ||
+ | <td style="border-right:1px solid #e5e6e6; border-top:1px solid #e5e6e6;">0 (0*2^2)<br>1 (1*2^1)<br>0 (0*2^0)</td> | ||
+ | <td style="border-top:1px solid #e5e6e6;">1 (1*2^2)<br>1 (1*2^1)<br>1 (1*2^0)</td> | ||
+ | </tr> | ||
+ | </table> | ||
+ | |||
+ | |||
</div> | </div> |
Latest revision as of 21:37, 3 October 2013
Boolean Logic Based Devices
What is a logic gate?
A logic gate is an idealized or physical device implementing a Boolean function. In other terms it performs a logical operation on one or more logical inputs and produces a single logical output (From Wikipedia). Simply said: logic gates are the devices that perform the boolean logic operations.
AND Gate
For an AND gate, if the two inputs are equal to 1, the result equals 1.
OR Gate
For an OR gate, if one or the other (or both) of the inputs are equal to 1, the result equals 1.
XOR Gate
For a XOR gate, if one or the other (but not both of them) of the inputs are equal to 1, the result equals 1.
Electronic Full Adder
This is the truth table of a full adder.
How to count with binary numbers?
For those who don’t remember your binary counting courses (or for those who don’t have any idea about binary counting), we provide a little reminder!
Operation | Result | ||
Decimal | 5 | 2 | 7 |
Binary | 1 (1*2^2) 0 (0*2^1) 1 (1*2^0) |
0 (0*2^2) 1 (1*2^1) 0 (0*2^0) |
1 (1*2^2) 1 (1*2^1) 1 (1*2^0) |