Using sticks to count was a great idea for its time. And using symbols instead of real sticks was much better.

Similar documents
Electronic Data and Instructions

Intermediate Programming & Design (C++) Notation

Module 1: Information Representation I -- Number Systems

Discussion. Why do we use Base 10?

The type of all data used in a C++ program must be specified

计算机信息表达. Information Representation 刘志磊天津大学智能与计算学部

Lecture 1: What is a computer?

REPRESENTING INFORMATION:

Binary Codes. Dr. Mudathir A. Fagiri

Chapter Two. Hardware Basics: Inside the Box

CC411: Introduction To Microprocessors

The type of all data used in a C (or C++) program must be specified

Dec Hex Bin ORG ; ZERO. Introduction To Computing

Teaching KS3 Computing. Session 3 Theory: More on binary and representing text Practical: Introducing IF

Analogue vs. Discrete data

[301] Bits and Memory. Tyler Caraza-Harter

Full file at

IT 1204 Section 2.0. Data Representation and Arithmetic. 2009, University of Colombo School of Computing 1

Computer Number Systems Supplement

Microprocessors I MICROCOMPUTERS AND MICROPROCESSORS

Holds data, instructions, and information for future use Storage medium is physical material used for storage

An Overview of the Computer System. Kafui A. Prebbie 24

Memory Addressing, Binary, and Hexadecimal Review

User. Application program. Interfaces. Operating system. Hardware

Number codes nibble byte word double word

Unit - II. Computer Concepts and C Programming 06CCP13. Unit II

HARDWARE AND OPERATING SYSTEMS

umber Systems bit nibble byte word binary decimal

Storage. Chapter3 ITBIS105

Sahalsoftware college. Welcome To understanding Basic Computer Concept

CMSC 104 -Lecture 2 John Y. Park, adapted by C Grasso

1.1 Bits and Bit Patterns. Boolean Operations. Figure 2.1 CPU and main memory connected via a bus. CS11102 Introduction to Computer Science

Worksheet - Storing Data

Number Systems Prof. Indranil Sen Gupta Dept. of Computer Science & Engg. Indian Institute of Technology Kharagpur Number Representation

Computers Are Your Future

Data Representation. Types of data: Numbers Text Audio Images & Graphics Video

Experimental Methods I

Computer Architecture and System Software Lecture 02: Overview of Computer Systems & Start of Chapter 2

What is a computer? Units of Measurement. - A machine that: - Counts.

CSC 170 Introduction to Computers and Their Applications. Lecture #1 Digital Basics. Data Representation

The x86 Microprocessors. Introduction. The 80x86 Microprocessors. 1.1 Assembly Language

data within a computer system are stored in one of 2 physical states (hence the use of binary digits)

Digital Logic. The Binary System is a way of writing numbers using only the digits 0 and 1. This is the method used by the (digital) computer.

A comprehensive view of software in detail.

Chapter 3 DATA REPRESENTATION

OCR J276 GCSE Computer Science

Admin. ! Assignment 3. ! due Monday at 11:59pm! one small error in 5b (fast division) that s been fixed. ! Midterm next Thursday in-class (10/1)

Objective 1.02 Understand Numbering Systems

Admin CS41B MACHINE. Midterm topics. Admin 2/11/16. Midterm next Thursday in-class (2/18) SML. recursion. math. David Kauchak CS 52 Spring 2016

INTRODUCTION TO COMPUTERS

CMSC 1513 Lecture 1.2

Computers Are Your Future

Thus needs to be a consistent method of representing negative numbers in binary computer arithmetic operations.

COMP Computer Basics. Yi Hong May 13, 2015

Chapter 4 The Components of the System Unit

Beyond Base 10: Non-decimal Based Number Systems

What is the typical configuration of a computer sold today? 1-1

LOGIC DESIGN. Dr. Mahmoud Abo_elfetouh

Final Labs and Tutors

Digital Fundamentals. CHAPTER 2 Number Systems, Operations, and Codes

Information Communications Technology (CE-ICT) 6 th Class

Discovering Computers 2008

Homeschool Enrichment. The System Unit: Processing & Memory

9/3/2015. Data Representation II. 2.4 Signed Integer Representation. 2.4 Signed Integer Representation

Example 1: Denary = 1. Answer: Binary = (1 * 1) = 1. Example 2: Denary = 3. Answer: Binary = (1 * 1) + (2 * 1) = 3

Unit 2 Digital Information. Chapter 1 Study Guide

Beyond Base 10: Non-decimal Based Number Systems

Zimmer CSCI /24/18. CHAPTER 1 Overview. COMPUTER Programmable devices that can store, retrieve, and process data.

CS 105 Review Questions #3

1.1. INTRODUCTION 1.2. NUMBER SYSTEMS

Objectives. Connecting with Computer Science 2

Java Module Lesson 2A Practice Exercise

Digital Fundamentals

Logic Circuits I ECE 1411 Thursday 4:45pm-7:20pm. Nathan Pihlstrom.

Review of Number Systems

MACHINE LEVEL REPRESENTATION OF DATA

CS & IT Conversions. Magnitude 10,000 1,

Introduction to Computers. Joslyn A. Smith

Computer Science 324 Computer Architecture Mount Holyoke College Fall Topic Notes: Bits and Bytes and Numbers

Electricity: Voltage. Gate: A signal enters the gate at a certain voltage. The gate performs operations on it, and sends it out was a new signal.

Chapter 9: A Closer Look at System Hardware

Chapter 9: A Closer Look at System Hardware 4

Computer Organization and Assembly Language. Lab Session 01

Topic Notes: Bits and Bytes and Numbers

Introduction to Informatics

Reminder. You must be familiar with the following formulas: x x... x, a times (1) x a = x a = 1 x a (2) (3)

Data Representation and Applets

BINARY SYSTEM. Binary system is used in digital systems because it is:

Chapter 3: Number Systems and Codes. Textbook: Petruzella, Frank D., Programmable Logic Controllers. McGraw Hill Companies Inc.

GIRLS SECONDARY, L-IMRIEĦEL HALF YEARLY EXAMINATIONS 2015/2016

2011 Francisco Delgadillo

Day 3. Storage Devices + Types of Memory + Measuring Memory + Computer Performance

Information Science 1

Chapter 4 The Components of the System Unit

Review of Data Representation & Binary Operations Dhananjai M. Rao CSA Department Miami University

Applets and the Graphics class

COMP 273 Winter physical vs. virtual mem Mar. 15, 2012

Computer Systems. IGCSE OCR AQA Edexcel Understand the term. embedded system and how an Purpose of embedded system

Digital Fundamentals

TOPIC: NUMBER SYSTEMS

Transcription:

2- Numbering Systems Tutorial 2-1 What is it? There are many ways to represent the same numeric value. Long ago, humans used sticks to count, and later learned how to draw pictures of sticks in the ground and eventually on paper. So, the number 5 was first represented as: (for five sticks). Later on, the Romans began using different symbols for multiple numbers of sticks: still meant three sticks, but a V now meant five sticks, and an X was used to represent ten of them. Using sticks to count was a great idea for its time. And using symbols instead of real sticks was much better. 2-2 Decimal System Most people today use decimal representation to count. In the decimal system there are 10 digits: 0, 1, 2, 3, 4, 5, 6, 7, 8, 9 These digits can represent any value, for example: 754. The value is formed by the sum of each digit, multiplied by the base (in this case it is 10 because there are 10 digits in decimal system) in power of digit position (counting from zero): Position of each digit is very important! for example if you place "7" to the end: 547 it will be another value: ١٢

Important note: any number in power of zero is 1, even zero in power of zero is 1: 2-3 Binary System Computers are not as smart as humans are (or not yet), it's easy to make an electronic machine with two states: on and off, or 1 and 0. Computers use binary system, binary system uses 2 digits: 0, 1 And thus the base is 2. Each digit in a binary number is called a BIT, 4 bits form a NIBBLE, 8 bits form a BYTE, two bytes form a WORD, two words form a DOUBLE WORD (rarely used): There is a convention to add "b" in the end of a binary number, this way we can determine that 101b is a binary number with decimal value of 5. The binary number 10100101 b equals to decimal value of 165: ١٣

2-4 Hexadecimal System Hexadecimal System uses 16 digits: 0, 1, 2, 3, 4, 5, 6, 7, 8, 9, A, B, C, D, E, F And thus the base is 16. Hexadecimal numbers are compact and easy to read. It is very easy to convert numbers from binary system to hexadecimal system and viceversa, every nibble (4 bits) can be converted to a hexadecimal digit using this table: Decimal Binary (base 10) (base 2) 0 0000 0 1 0001 1 2 0010 2 3 0011 3 4 0100 4 5 0101 5 6 0110 6 7 0111 7 8 1000 8 9 1001 9 10 1010 A 11 1011 B 12 1100 C 13 1101 D 14 1110 E 15 1111 F Hexadecimal (base 16) There is a convention to add "h" in the end of a hexadecimal number, this way we can determine that 5F h is a hexadecimal number with decimal value of 95. We also add "0" (zero) in the beginning of hexadecimal numbers that begin with a letter (A...F), for example 0E120 h. The hexadecimal number 1234 h is equal to decimal value of 4660: ١٤

2-5 Converting from Decimal System to Any Other In order to convert from decimal system, to any other system, it is required to divide the decimal value by the base of the desired system, each time you should remember the result and keep the remainder, the divide process continues until the result is zero. The remainders are then used to represent a value in that system. Let's convert the value of 39 (base 10) to Hexadecimal System (base 16): As you see we got this hexadecimal number: 27 h. All remainders were below 10 in the above example, so we do not use any letters. Here is another more complex example: let's convert decimal number 43868 to hexadecimal form: ١٥

The result is 0AB5C h, we are using the above table to convert remainders over 9 to corresponding letters. Using the same principle we can convert to binary form (using 2 as the divider), or convert to hexadecimal number, and then convert it to binary number using the above table: As you see we got this binary number: 1010101101011100 b 2-6 Signed Numbers There is no way to say for sure whether the hexadecimal byte 0FF h is positive or negative, it can represent both decimal value "255" and "- 1". 8 bits can be used to create 256 combinations (including zero), so we simply presume that first 128 combinations (0...127) will represent positive numbers and next 128 combinations (128...256) will represent negative numbers. In order to get "- 5", we should subtract 5 from the number of combinations (256), so it we'll get: 256-5 = 251. Using this complex way to represent negative numbers has some meaning, in math when you add "- 5" to "5" you should get zero. This is what happens when processor adds two bytes 5 and 251, the result gets over 255, ١٦

because of the overflow processor gets zero! When combinations 128...256 are used the high bit is always 1, so this maybe used to determine the sign of a number. The same principle is used for words (16 bit values), 16 bits create 65536 combinations, first 32768 combinations (0...32767) are used to represent positive numbers, and next 32768 combinations (32767...65535) represent negative numbers. 2-7 The Binary System: The first thing to understand is that computers run on electricity. Electricity is either on or off. This two-state situation allows computers to use the binary system to represent data-and programs. The decimal system that we are known has 10 digits (0, 1, 2, 3, 4, 5, 6, 7, 8, and 9). By contrast, the binary system has only two digits: 0 and 1. Thus, in the computer, the 0 can be represented by the electrical current being off and the 1 by the current being on. All data and program instructions that go into the computer are represented in terms of these binary numbers. For example, the letter G is a translation of the electronic signal 01000111, or off-on-offoff-off-on-on-on. When you press the key for G on the computer keyboard, the character is automatically converted into the series of electronic impulses that the computer can recognize. Inside the computer, that character G is represented by a combination of eight transistors. Some are closed (representing the 0s), and some are open (representing the 1s). How many representations of 0s and 1s will a computer or a storage device, such as a hard disk, hold? Capacity is denoted by bits and bytes and multiples thereof: (1) Bit: In the binary system, each 0 or 1 is called a bit, which is short for "binary digit." (2) Byte: To represent letters, numbers, or special characters (such as! or ), bits are combined into groups. A group of 8 bits is called a byte, and a byte represents one character, digit, or other value. (ex: 01000111 represents the letter G.) The capacity of a computer's memory or of a floppy disk is expressed in numbers of bytes or multiples such as kilobytes and megabytes. ١٧

(3) A kilobyte (KB) is about 1000 bytes.(actually, it's precisely 1024 bytes, but the figure is commonly rounded.) The kilobyte was a common unit of measure for memory or secondary-storage capacity on older computers. (4) A megabyte (MB) is about 1 million bytes (1,048,576 bytes). 1 MB equals 1024 KB. Measures of microcomputer primary-storage capacity today are expressed in megabytes. (5) A gigabyte (GB) is about 1 billion bytes (1,073,741,824 bytes). 1 GB equals 1024 MB. This measure was formerly used mainly with mainframes computers, but is typical of secondary storage (hard disk) capacity of today's microcomputers. (6) Terabyte: A terabyte (TB) represents about 1 trillion bytes (1,009,511,627,776 bytes). 1 TB equals 1024 GB. (7) Petabyte: A petabyte (PB) represents about 1 quadrillion bytes (1,048,576 gigabytes). 1 PB equals 1024 TB. Letters, numbers, and special characters are represented within a computer system by means of binary coding schemes. That is, the off/on 0s and 1s are arranged in such a way that they can be made to represent characters, digits, or other values. (1) ASCII: Pronounced "Ask-ee," ASCII stands for American Standard Code for Information Interchange and is the binary code most widely used with microcomputers. Besides more conventional characters, ASCII includes such characters as math symbols and Greek letters. (2) EBCDIC: Pronounced "Eb-see-dick," EBCDIC stands for Extended Binary Coded Decimal Interchange Code and is a binary code used with large computers, such as mainframes. (3) Unicode: A subset of ASCII, Unicode uses two bytes (16 bits) for each character, rather than one byte (8 bits). Instead of the 256 character combinations of ASCII, Unicode can handle 65,536 character combinations. Thus it allows almost all the written languages of the world to be represented using a single character set. ١٨