<?xml version="1.0" encoding="UTF-8"?><rss version="2.0">
<channel>
<title>numbers</title>
<link>http://www.computersight.com/tags/numbers</link>
<description>New posts about numbers</description>
<item>
<title>Converting Numbers Into Binary</title>
<link>http://www.computersight.com/Programming/Converting-Numbers-Into-Binary.85878</link>
<description>
<![CDATA[<p>There are only 10 kinds of people: those who understand binary, and those who don't. “But, what about the other eight kinds of people?”, you might ask. Well, for the other eight kinds of people, there's this article.</p>
 
 <p>First, I'd like to say that an article similar to this has already been written by Joshua Alias-Vigathon. While that article gave the concepts and basics of binary, the goal of this article is to give a little more detail about conversion </em>between the binary and decimal systems. One other thing I should mention is that I don't think this is the “official” method of conversion. This is only a method I came up with that has proved useful for me. </p>
 
 <p>As the name suggests, binary consists of only two numbers: 0 and 1. Coincidentally, the binary system is also based on powers of 2 (i.e. 1, 2, 4, 8, 16, 32, 64, 128 etc.). The system works because every decimal number can be build using those numbers and, if we represent those numbers with 1's and 0', any decimal number can be written using only 1's and 0's. That being said, let's get converting! </p>
 
 <p>For this example, we'll try converting the number 2 into decimal and we'll call the number 2 “n“. </p>
 
 <p>First, start by drawing a horizontal table with two rows. It should look something like this: </p>
 
 <p><IMG alt="" src="http://i11.photobucket.com/albums/a191/quicksilver9797/Triond/Converting%20Numbers%20to%20Binary/BlankTable.jpg"> </p>
 
 <p>The top row is for numbers from the decimal system and the bottom row is for binary numbers. </p>
 
 <p>Next, fill in the top row with powers of 2, going from right to left, starting with the number 1. Your table might look something like this: </p>
 
 <p><IMG alt="" src="http://i11.photobucket.com/albums/a191/quicksilver9797/Triond/Converting%20Numbers%20to%20Binary/Decimalnumbersfilledout.jpg"> </p>
 
 <p>Note: The table only has to be as long as the biggest decimal number that can fit into n (the number we're trying to convert into binary), in this case, 2. </p>
 
 <p>For our final step, starting from the biggest number that can fit into n, we fill in a “1” if it fits into our number, and a “0” if it doesn't. Obviously, 128 is much bigger than 2 and cannot fit into it, so under 128 we would put a “0“. The same goes for 64, 32, 16, 8 and 4. 2, however, perfectly fits into 2, so we can write a “1” under the 2. Once we write a “1” under the 2, we would subtract that number from n (n-2 or 2-2), which would leave us with zero. Our last number 1, can't fit into 0, so we would write a “0” under 1. That may have been a little confusing, but if you made it through, you might have something like this: </p>
 
 <p><IMG alt="" src="http://i11.photobucket.com/albums/a191/quicksilver9797/Triond/Converting%20Numbers%20to%20Binary/Completetable1.jpg"> </p>
 
 <p>There, on the bottom row, is our binary equivalent of 2: 00000010. Now, much like the 0's in front of a decimal number don't matter (i.e. 00000002 is the same as 2), the 0's in front of binary numbers don't matter. Instead of writing 00000010 then, our number could simply be written as 10. So the number 2, converted to binary, would be 10. </p>
 <p>Let's try one more example, this time, converting the number 35 into binary and again, let's call 35 “n“. </p>
 
 <p>Once again, we start by drawing an empty table and filling the top row with powers of 2, going right to left, starting with 1: </p>
 
 <p><IMG alt="" src="http://i11.photobucket.com/albums/a191/quicksilver9797/Triond/Converting%20Numbers%20to%20Binary/Decimalnumbersfilledout.jpg"> </p>
 
 <p>Neither 128 or 64 can fit into 35 so we'd write 0's under both. 32 can fit however, so we can write a “1” under 32. Since we wrote a “1“, take n and subtract 32 (35-32). That leaves us with 3 left over. The numbers 16, 8, and 4 cannot fit into 3, so we write 0's under those. 2 fits into 3 so we write a “1” under 2 and subtract 2 from 3, leaving us with one. Finally, 1 fits into 1 so we can write a “1” under 1. Hopefully, your table looks similar to this: </p>
 
 <p><IMG alt="" src="http://i11.photobucket.com/albums/a191/quicksilver9797/Triond/Converting%20Numbers%20to%20Binary/Completetable2.jpg"> </p>
 
 <p>If so, you've pretty much gotten the hang of it. You should be left with 00100011 or, without the 0's in front, 100011. So 35, in binary would be written as 100011. </p>
 
 <p>If you feel confident about converting to binary or want some more practice, try converting these numbers into binary: </p>
 
 <p>Number - Answer </p>
 <p>3 - 11 </p>
 <p>11 - 1001 </p>
 <p>31 - 11111 </p>
 <p>74 - 1001010 </p>
 <p>200 - 11001000 </p>
 <p>351 - 101011111 </p>
 
 <p>This process will likely be confusing, but don't give up, understanding comes with practice. There are likely many other ways to convert numbers into binary so if this method doesn't work for you, try another. Finally, if you have any questions or suggestions, leave a comment. Thanks for reading this article and happy converting! </p><a href="http://www.pheedo.com/click.phdo?x=&u=http%3A%2F%2Fwww.computersight.com%2FProgramming%2FConverting-Numbers-Into-Binary.85878"><img src="http://www.pheedo.com/img.phdo?x=&u=http%3A%2F%2Fwww.computersight.com%2FProgramming%2FConverting-Numbers-Into-Binary.85878" border="0"/></a>]]></description>
<pubDate>Wed, 20 Feb 2008 06:33:01 PST</pubDate></item>
<item>
<title>Alt #'s Key</title>
<link>http://www.computersight.com/Computers/Alt-s-Key.112365</link>
<description>
<![CDATA[<p><ul><li><strong> 0=</strong>0 </li>
 <li><strong>1=</strong>? </li>
<li><strong> 2=</strong>? </li>
<li><strong> 3=</strong>? </li>
<li><strong> 4=</strong>?</li>
<li><strong> 5=</strong>? </li>
 <li><strong>6=</strong>? </li>
<li><strong> 7=</strong>• </li>
<li><strong> 8=</strong>? </li>
<li><strong> 9=</strong>? </li>
<li><strong> 10=</strong>? </li>
 <li><strong>11=</strong>? </li>
<li><strong> 12=</strong>? </li>
 <li><strong>13=</strong>? </li>
<li><strong> 14=</strong>? </li>
<li><strong> 15=</strong>? </li>
<li><strong> 16=</strong>? </li>
<li><strong> 17=</strong>? </li>
<li><strong> 18=</strong>? </li>
<li><strong> 19=</strong>? </li>
<li><strong> 20=</strong>¶ </li>
<li><strong> 21=</strong>§ </li>
<li><strong> 22=</strong>? </li>
<li><strong> 23=</strong>? </li>
<li><strong> 24=</strong>? </li>
<li><strong> 25=</strong>? </li>
<li><strong> 26=</strong>? </li>
<li><strong> 27=</strong>? </li>
<li><strong> 28=</strong>? </li>
<li><strong> 29=</strong>? </li>
<li><strong> 30=</strong>? </li>
<li><strong> 31=</strong>? </li>
<li><strong> 32=</strong>space</li>
<li><strong> 33=</strong>!</li>
<li><strong> 34=</strong>”</li>
<li><strong> 35=</strong># </li>
<li><strong> 36=</strong>$</li>
<li><strong> 37=</strong>% </li>
<li><strong> 38=</strong>&amp; </li>
<li><strong> 39=</strong>'</li>
<li><strong> 40=</strong>(</li>
<li><strong> 41=</strong>)</li>
<li><strong> 42=</strong>*</li>
<li><strong> 43=</strong>+</li>
<li><strong> 44=</strong>, </li>
<li><strong> 45=</strong>-</li>
<li><strong> 46=</strong>. </li>
<li><strong> 47=</strong>/ </li>
<li><strong> 48=</strong>0, </li>
<li><strong> 49=</strong>1,</li>
<li><strong> 50=</strong>2, </li>
<li><strong> 51=</strong>3,</li>
<li><strong> 52=</strong>4,</li>
<li><strong> 53=</strong>5, </li>
<li><strong> 54=</strong>6, </li>
<li><strong> 55=</strong>7, </li>
<li><strong> 56=</strong>8, </li>
<li><strong> 57=</strong>9,</li>
<li><strong> 58=</strong>: </li>
<li><strong> 59-</STRONG>; </li>
<li><strong> 60-</STRONG>< </li>
<li><strong> 61-</STRONG>=</li>
<li><strong> 62-</STRONG>> </li>
<li><strong> 63-</STRONG>? </li>
<li><strong> 64-</STRONG>@ </li>
<li><strong> 65-</STRONG>A </li>
<li><strong> 66-</STRONG>B </li>
<li><strong> 67-</STRONG>C </li>
<li><strong> 68-</STRONG>D </li>
<li><strong> 69-</STRONG>E </li>
<li><strong> 70-</STRONG>F </li>
<li><strong> 71-</STRONG>G </li>
<li><strong> 72-</STRONG>H </li>
<li><strong> 73-</STRONG>I </li>
<li><strong> 74-</STRONG>J  </li>
<li><strong> 75-</STRONG>K </li>
<li><strong> 76-</STRONG>L  </li>
<li><strong> 77-</STRONG>M </li>
<li><strong> 78-</STRONG>N  </li>
<li><strong> 79-</STRONG>O </li>
<li><strong> 80-</STRONG>P </li>
<li><strong> 81-</STRONG>Q </li>
<li><strong> 82-</STRONG>R </li>
 <li><strong>83-</STRONG>S </li>
 <li><strong>84-</STRONG>T </li>
 <li><strong>85-</STRONG>U  </li>

 <li><strong>86-</STRONG>V </li>
<li><strong> 87-</STRONG>W  </li>
<li><strong> 88-</STRONG>X  </li>
<li><strong> 89-</STRONG>Y </li>
 <li><strong>90-</STRONG>Z </li>
 <li><strong>91-</STRONG>[  </li>
 <li><strong>92-</STRONG> </li>
 <li><strong>93-</STRONG>]  </li>
<li><strong> 94-</STRONG>^  </li>
<li><strong> 95-</STRONG>_ </li>

<li><strong> 96-</STRONG>` </li>

<li><strong> 97-</STRONG>a </li>

<li><strong> 98-</STRONG>b </li>
 <li><strong>99-</STRONG>c </li>
 <li><strong>100-</STRONG>d </li>
 <li><strong>101-</STRONG>e </li>
 <li><strong>102-</STRONG>f </li>
 <li><strong>103-</STRONG>g </li>
<li><strong> 104-</STRONG>h </li>
<li><strong> 105-</STRONG>I </li>
<li><strong> 106-</STRONG>j </li>
 <li><strong>107-</STRONG>k </li>
 <li><strong>108-</STRONG>l  </li>
 <li><strong>109-</STRONG>m  </li>
<li><strong> 110-</STRONG>n  </li>
 <li><strong>111-</STRONG>o  </li>
<li><strong> 112-</STRONG>p </li>
<li><strong> 113-</STRONG>q </li>
 <li><strong>114-</STRONG>r </li>
<li><strong> 115-</STRONG>s </li>
 <li><strong>116-</STRONG>t </li>
<li><strong> 117-</STRONG>u </li>
 <li><strong>118-</STRONG>v </li>
 <li><strong>119-</STRONG>w </li>
<li><strong> 120-</STRONG>x  </li>
 <li><strong>121-</STRONG>y  </li>
 <li><strong>122-</STRONG>z  </li>
<li><strong> 123-</STRONG>{ </li>
<li><strong> 124-</STRONG>| </li>
 <li><strong>125-</STRONG>} </li>
<li><strong> 126-</STRONG>~ </li>
 <li><strong>127-</STRONG>? </li>
 <li><strong>128-</STRONG>Ç </li>
 <li><strong>129-</STRONG>ü </li>
 <li><strong>130-</STRONG>é  </li>
 <li><strong>131-</STRONG>â  </li>
 <li><strong>132-</STRONG>ä </li>
 <li><strong>133-</STRONG>à </li>
 <li><strong>134-</STRONG>å </li>
<li><strong> 135-</STRONG>ç </li>
<li><strong> 136-</STRONG>ê </li>
 <li><strong>137-</STRONG>ë </li>
<li><strong> 138-</STRONG>è </li>
<li><strong> 139-</STRONG>ï </li>
<li><strong> 140-</STRONG>î </li>
<li><strong> 141-</STRONG>ì  </li>
<li><strong> 142-</STRONG>Ä  </li>
 <li><strong>143-</STRONG>Å  </li>
<li><strong> 144-</STRONG>É </li>
<li><strong> 145-</STRONG>æ </li>
<li><strong> 146-</STRONG>Æ </li>
<li><strong> 147-</STRONG>ô </li>
 <li><strong>148-</STRONG>ö </li>
 <li><strong>149-</STRONG>ò </li>
 <li><strong>150-</STRONG>û </li>
 <li><strong>151-</STRONG>ù </li>
 <li><strong>152-</STRONG>ÿ </li>
<li><strong> 153-</STRONG>Ö </li>
<li><strong> 154-</STRONG>Ü </li>
<li><strong> 155-</STRONG>¢ </li>
<li><strong> 156-</STRONG>£ </li>
 <li><strong>157-</STRONG>¥ </li>
<li><strong> 158-</STRONG>? </li>
<li><strong> 159-</STRONG>ƒ </li>
 <li><strong>160-</STRONG>á  </li>
<li><strong> 161-</STRONG>í </li>
<li><strong> 162-</STRONG>ó </li>
 <li><strong>163-</STRONG>ú  </li>
<li><strong> 164-</STRONG>ñ </li>
 <li><strong>165-</STRONG>Ñ </li>
<li><strong> 166-</STRONG>ª </li>
<li><strong> 167-</STRONG>º </li>
 <li><strong>168-</STRONG>¿  </li>
<li><strong> 169-</STRONG>?  </li>
<li><strong> 170-</STRONG>¬ </li>
<li><strong> 171-</STRONG>½ </li>
<li><strong> 172-</STRONG>¼ </li>
<li><strong> 173-</STRONG>¡  </li>
<li><strong> 174-</STRONG>«  </li>
<li><strong> 175-</STRONG>»  </li>
<li><strong> 176-</STRONG>? </li>
 <li><strong>177-</STRONG>? </li>
<li><strong> 178-</STRONG>? </li>
<li><strong> 179-</STRONG>?  </li>
<li><strong> 180-</STRONG>? </li>
<li><strong> 181-</STRONG>? </li>
<li><strong> 182-</STRONG>? </li>
<li><strong> 183-</STRONG>? </li>
 <li><strong>184-</STRONG>?  </li>
 <li><strong>185-</STRONG>? </li>
<li><strong> 186-</STRONG>?  </li>
 <li><strong>187-</STRONG>? </li>
<li><strong> 188-</STRONG>? </li>
<li><strong> 189-</STRONG>?  </li>
<li><strong> 190-</STRONG>? </li>
 <li><strong>191-</STRONG>? </li>
<li><strong> 192-</STRONG>?  </li>
<li><strong> 193-</STRONG>?  </li>
<li><strong> 194-</STRONG>?  </li>
<li><strong> 195-</STRONG>?  </li>
<li><strong> 196-</STRONG>?  </li>
<li><strong> 197-</STRONG>?  </li>
<li><strong> 198-</STRONG>?  </li>
<li><strong> 199-</STRONG>?  </li>
 <li><strong>200-</STRONG>? </li>
<li><strong> 201-</STRONG>? </li>
<li><strong> 202-</STRONG>? </li>
 <li><strong>203-</STRONG>? </li>
 <li><strong>204-</STRONG>? </li>
 <li><strong>205-</STRONG>?  </li>
<li><strong> 206-</STRONG>? </li>
<li><strong> 207-</STRONG>? </li>
 <li><strong>208-</STRONG>?  </li>
<li><strong> 209-</STRONG>?</li>
 <li><strong>210-</STRONG>-?</li>

   
<li><strong> 211-</STRONG>? </li>
<li><strong> 212-</STRONG>? </li>
<li><strong> 213-</STRONG>?  </li>
<li><strong> 214-</STRONG>?  </li>
<li><strong> 215-</STRONG>?  </li>
<li><strong> 216-</STRONG>?   </li>
<li><strong> 217-</STRONG>?   </li>
<li><strong> 218-</STRONG>?  </li>
<li><strong> 219-</STRONG>?</li>
<li><strong> 220-</STRONG>? </li>
<li><strong> 221-</STRONG>?    </li>
<li><strong> 222-</STRONG>?    </li>
<li><strong> 223-</STRONG>?   </li>
<li><strong> 224-</STRONG>?  </li>  
 <li><strong>225-</STRONG>ß  </li>  
 <li><strong>226-</STRONG>?  </li> 
<li><strong> 227-</STRONG>?  </li>   
<li><strong> 228-</STRONG>?  </li>  
 <li><strong>229-</STRONG>?</li>
<li><strong> 230-</STRONG>µ </li>
<li><strong> 231-</STRONG>?  </li> 
<li><strong> 232-</STRONG>?  </li> 
<li><strong> 233-</STRONG>?  </li>
<li><strong> 234-</STRONG>? </li>
 <li><strong>235-</STRONG>?  </li>
<li><strong> 236-</STRONG>? </li> 
<li><strong> 237-</STRONG>?  </li>
<li><strong> 238-</STRONG>?  </li>
 <li><strong>239-</STRONG>?</li>
 <li><strong>240-</STRONG>? </li>

 <li><strong>241-</STRONG>±  </li>

 <li><strong>242-</STRONG>?  </li>
 <li><strong>243-</STRONG>?  </li>
<li><strong> 244-</STRONG>?  </li>
<li><strong> 245-</STRONG>? </li> 
<li><strong> 246-</STRONG>÷  </li> 
<li><strong> 247-</STRONG>?  </li> 
 <li><strong>248-</STRONG>°  </li> 
 <li><strong>249-</STRONG>?</li>
<li><strong> 250-</STRONG>· </li>
 <li><strong>251-</STRONG>?  </li>
 <li><strong>252-</STRONG>?  </li> 
 <li><strong>253-</STRONG>²  </li> 
<li><strong> 254-</STRONG>?  </li>
 <li><strong>255-</STRONG>   
<li><strong> 256-</STRONG>?  </li>
 <li><strong>257-</STRONG>? </li>
<li><strong> 258-</STRONG>?  </li>
<li><strong> 259-</STRONG>?</li>
<li><strong> 260-</STRONG>?  </li></ul></p><a href="http://www.pheedo.com/click.phdo?x=&u=http%3A%2F%2Fwww.computersight.com%2FComputers%2FAlt-s-Key.112365"><img src="http://www.pheedo.com/img.phdo?x=&u=http%3A%2F%2Fwww.computersight.com%2FComputers%2FAlt-s-Key.112365" border="0"/></a>]]></description>
<pubDate>Sun, 06 May 2007 08:41:30 PST</pubDate></item>
</channel>
</rss>
