<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>Technology Everysecond &#187; digitization</title>
	<atom:link href="http://mnunioni.org/tag/digitization/feed/" rel="self" type="application/rss+xml" />
	<link>http://mnunioni.org</link>
	<description>seabloggers INC</description>
	<lastBuildDate>Wed, 14 Jul 2010 03:30:23 +0000</lastBuildDate>
	
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>Basic Digital Concepts</title>
		<link>http://mnunioni.org/2009/09/11/basic-digital-concepts/</link>
		<comments>http://mnunioni.org/2009/09/11/basic-digital-concepts/#comments</comments>
		<pubDate>Fri, 11 Sep 2009 10:24:22 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[technology]]></category>
		<category><![CDATA[Basics of digital electronics]]></category>
		<category><![CDATA[Basics of digital electronics and tagged Basic Digital Concepts]]></category>
		<category><![CDATA[digital electronics]]></category>
		<category><![CDATA[digitization]]></category>

		<guid isPermaLink="false">http://mnunioni.org/?p=655</guid>
		<description><![CDATA[By converting continuous analog signals into a nite number of discrete states, a process
called digitization, then to the extent that the states are suciently well separated so that
noise does create errors, the resulting digital signals allow the following (slightly idealized):
 storage over arbitrary periods of time
 flawless retrieval and reproduction of the stored information
 flawless [...]]]></description>
			<content:encoded><![CDATA[<p>By converting continuous analog signals into a nite number of discrete states, a process<br />
called digitization, then to the extent that the states are suciently well separated so that<br />
noise does create errors, the resulting digital signals allow the following (slightly idealized):<br />
 storage over arbitrary periods of time<br />
 flawless retrieval and reproduction of the stored information<br />
 flawless transmission of the information<br />
Some information is intrinsically digital, so it is natural to process and manipulate it<br />
using purely digital techniques. Examples are numbers and words.<br />
The drawback to digitization is that a single analog signal (e.g. a voltage which is a<br />
function of time, like a stereo signal) needs many discrete states, or bits, in order to give<br />
a satisfactory reproduction. For example, it requires a minimum of 10 bits to determine a<br />
voltage at any given time to an accuracy of  0:1%. For transmission, one now requires 10<br />
lines instead of the one original analog line.<br />
The explosion in digital techniques and technology has been made possible by the incred-<br />
ible increase in the density of digital circuitry, its robust performance, its relatively low cost,<br />
and its speed. The requirement of using many bits in reproduction is no longer an issue:<br />
The more the better.<br />
This circuitry is based upon the transistor, which can be operated as a switch with<br />
two states. Hence, the digital information is intrinsically binary. So in practice, the terms<br />
digital and binary are used interchangeably. In the following sections we summarize some<br />
conventions for dening the binary states and for doing binary arithmetic.</p>
]]></content:encoded>
			<wfw:commentRss>http://mnunioni.org/2009/09/11/basic-digital-concepts/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Binary Arithmetic</title>
		<link>http://mnunioni.org/2009/09/11/binary-arithmetic/</link>
		<comments>http://mnunioni.org/2009/09/11/binary-arithmetic/#comments</comments>
		<pubDate>Fri, 11 Sep 2009 10:20:19 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[Basics of digital electronics]]></category>
		<category><![CDATA[Basics of digital electronics | Tagged Basic Digital Concepts]]></category>
		<category><![CDATA[digital electronics]]></category>
		<category><![CDATA[digitization]]></category>

		<guid isPermaLink="false">http://mnunioni.org/?p=647</guid>
		<description><![CDATA[Each digit in binary is a 0 or a 1 and is called a bit, which is an abbreviation of binary digit.
There are several common conventions for representation of numbers in binary.
The most familiar is unsigned binary. An example of a 8-bit number in this case is 010011112 = 027 + 126 +  + [...]]]></description>
			<content:encoded><![CDATA[<p>Each digit in binary is a 0 or a 1 and is called a bit, which is an abbreviation of binary digit.<br />
There are several common conventions for representation of numbers in binary.<br />
The most familiar is unsigned binary. An example of a 8-bit number in this case is 010011112 = 027 + 126 +  + 120 = 64 + 8 + 4 + 2 + 1 = 7910 (Generally the subscripts will be omitted, since it will be clear from the context.) To convert from base 10 to binary, one can use a decomposition like above, or use the following algorithm illustrated by 79: 79=2 = 39, remainder 1, then 39=2 = 19 r 1, and so forth. Then assemble all the remainders in reverse order. The largest number which can be represented by n bits is 2n ? 1. For example, with 4 bits the largest number is 11112 = 15. The most signicant bit (MSB) is the bit representing the highest power of 2, and the LSB represents the lowest power of 2. Arithmetic with unsigned binary is analogous to decimal. For example 1-bit addition and multiplication are as follows: 0 + 0 = 0, 0 + 1 = 1, 1 + 1 = 0, 0 0 = 0, 01 = 0, and 1  1 = 1. Note that this is dierent from Boolean algebra, as we shall see shortly, where 1 + 1 = 1.<br />
Another convention is called BCD (\binary coded decmal”). In this case each decimal digit is separately converted to binary. Therefore, since 7 = 01112 and 9 = 10012, then 79 = 01111001 (BCD). Note that this is dierent than our previous result. We will use BCD quite often in this course. It is quite convenient, for example, when decimal numerical displays are used.</p>
]]></content:encoded>
			<wfw:commentRss>http://mnunioni.org/2009/09/11/binary-arithmetic/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
