Introduction to Digital Logic Missouri S&T University CPE 2210 Number Systems

Size: px
Start display at page:

Download "Introduction to Digital Logic Missouri S&T University CPE 2210 Number Systems"

Transcription

1 Introduction to Digital Logic Missouri S&T University CPE 2210 Number Systems Egemen K. Çetinkaya Egemen K. Çetinkaya Department of Electrical & Computer Engineering Missouri University of Science and Technology 26 August 2016 rev Egemen K. Çetinkaya

2 Number Systems Outline Signals and representations Number systems Summary 26 August 2016 MST CPE2210 Number Systems 2

3 Digital vs. Analog Analog Signal Signal: physical phenomenon has unique value at every instant of time Analog signal (aka continuous signal) Infinite set of possible values Examples: temperature: F degrees human speech pressure light value time Possible values: 1.00, 1.01, ,... infinite possibilities 26 August 2016 MST CPE2210 Number Systems 3

4 Digital vs. Analog Digital Signal Signal: physical phenomenon has unique value at every instant of time Digital signal (aka discrete signal) Finite set of possible values Examples: pressing a button on keypad switch on/off value time Possible values: 0, 1, 2, 3, or 4. That s it. 26 August 2016 MST CPE2210 Number Systems 4

5 Digital Systems Representations Digital signals represented by two values on/off, 0/1 Two-value representation: binary representation A single value is called bit (binary digit) Digital system: take digital inputs generates digital outputs Digital circuits: connection of digital components value Embedded systems: for a particular purpose 1 0 time 26 August 2016 MST CPE2210 Number Systems 5

6 Why binary system? Digital Systems Representations 26 August 2016 MST CPE2210 Number Systems 6

7 Why binary system? Digital Systems Representations Ease of operation compared to 3 digits or more ease of storage, computing, transmission Transistors operate on two-value logic transistor is a basic electrical circuit component 26 August 2016 MST CPE2210 Number Systems 7

8 Digital-Analog Conversion (a) ADC (A2D) and DAC (D2A) wire microphone analog-todigital converter Volts samples Egemen K. Çetinkaya analog signal on wire time digitized signal (b) read from tape, CD, etc. wire speaker digital-toanalog converter Volts analog signal reproduced from digitized signal time 26 August 2016 MST CPE2210 Number Systems 8

9 Digital vs. Analog Pros and Cons What are the pros and cons of analog vs. digital? 26 August 2016 MST CPE2210 Number Systems 9

10 Digital vs. Analog Pros and Cons What are the pros and cons of analog vs. digital? Analog signal is prone to noise amplified during transmission, storage, processing Digitized analog signal is never exact due to sampling Digital signal can be compressed repetitive patterns can be encoded in other way August 2016 MST CPE2210 Number Systems 10

11 Number Systems Overview Type Natural numbers N Explanation {0, 1, 2, } Integers Z {, -2, -1, 0, 1, 2, } Rational numbers Q m/n where m and n are integers and n 0: e.g. 5/4, -8/3 Irrational numbers JJ Any real number that can t be expressed as ratio of integers e.g.: π, e, 2 Real numbers R Rational & irrational numbers, +, 0, or Complex numbers C a+bi, where i 2 = 1 and a and b are real numbers 26 August 2016 MST CPE2210 Number Systems 11

12 Number Systems Representation Type Explanation positive x > 0 negative x < 0 non-negative x 0 non-positive x 0 signed (in computing) represents both negative and positive numbers unsigned (in computing) represents only non-negative numbers 26 August 2016 MST CPE2210 Number Systems 12

13 Number Systems Representations Important bases throughout the class: Decimal (base 10) [0, 1, 2, 3, 4, 5, 6, 7, 8, 9] Binary (base 2) [0, 1] Octal (base 8) [0, 1, 2, 3, 4, 5, 6, 7] Hexadecimal (base 16) [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, A, B, C, D, E, F] For the number 3205, what is the minimum base? 26 August 2016 MST CPE2210 Number Systems 13

14 Number Systems Floating Point vs. Fixed Point Representation Floating point approximates real number = x 10 3 exponent sign mantissa (significand) base IEEE 754 standard is followed Fixed point: radix is fixed at a point less costly to represent compared to floating point Other real number representations: binary-coded decimal (BCD) logarithmic number systems 26 August 2016 MST CPE2210 Number Systems 14

15 Number Systems Decimal Representation position weight b 3 b 2 b 1 b 0 b -1 b -2 digit a 3 a 2 a 1 a 0 a -1 a -2 decimal example weight decimal example digit whole part fractional part radix (decimal) point 26 August 2016 MST CPE2210 Number Systems 15

16 Number Systems Binary Representation position weight b 3 b 2 b 1 b 0 b -1 b -2 digit a 3 a 2 a 1 a 0 a -1 a -2 binary example weight binary example digit binary point 26 August 2016 MST CPE2210 Number Systems 16

17 Number Systems Octal Representation position weight b 3 b 2 b 1 b 0 b -1 b -2 digit a 3 a 2 a 1 a 0 a -1 a -2 octal example weight octal example digit August 2016 MST CPE2210 Number Systems 17

18 Number Systems Hexadecimal Representation position weight b 3 b 2 b 1 b 0 b -1 b -2 digit a 3 a 2 a 1 a 0 a -1 a -2 hex example weight hex example digit 2 0 A F August 2016 MST CPE2210 Number Systems 18

19 Binary Systems Powers of Two 2 0 = 2 1 = 2 2 = 2 3 = 2 4 = 2 5 = 2 6 = 2 7 = 2 8 = 2 9 = 2 10 = 26 August 2016 MST CPE2210 Number Systems 19

20 Binary Systems Powers of Two 2 0 = = = = = = = = = = = August 2016 MST CPE2210 Number Systems 20

21 Number System Conversion Binary to Decimal binary 1 binary weight 2 0 multiply weights and add decimal 1 binary 1 0 binary weight decimal = 2 binary binary weight decimal = 5 Egemen K. Çetinkaya 26 August 2016 MST CPE2210 Number Systems 21

22 Number System Conversion Binary to Decimal Egemen K. Çetinkaya binary binary weight decimal = 3 binary binary weight decimal = August 2016 MST CPE2210 Number Systems 22

23 Number System Conversion Decimal to Binary Egemen K. Çetinkaya Desired decimal number: 12 Current sum Binary number (a) 16 > 12, too big; Put 0 in 16 s place (b) 8 <= 12, so put 1 in 8 s place, current sum is (c) 8+4=12 <= 12, so put 1 in 4 s place, current sum is a (d) Reached desired 12, so put 0s in remaining places done August 2016 MST CPE2210 Number Systems 23

24 Number Systems Base 16 System hex binary hex binary A 3 B 4 C 5 D 6 E 7 F 26 August 2016 MST CPE2210 Number Systems 24

25 Number Systems Base 16 System hex binary hex binary A 1010 B 1011 C 1100 D 1101 E 1110 F August 2016 MST CPE2210 Number Systems 25

26 Number System Conversion Hex to Binary Examples Egemen K. Çetinkaya 26 August 2016 MST CPE2210 Number Systems 26

27 Number System Conversion Binary to Hex Examples Egemen K. Çetinkaya 26 August 2016 MST CPE2210 Number Systems 27

28 Number System Conversion Hex to Decimal Examples Egemen K. Çetinkaya 26 August 2016 MST CPE2210 Number Systems 28

29 Number System Conversion Decimal to Hex Examples Egemen K. Çetinkaya 26 August 2016 MST CPE2210 Number Systems 29

30 LSB: Least Significant Bit right-most bit MSB: Most Significant Bit higher-order bit left-most bit Number Systems Representations Example: where is LSB and MSB? August 2016 MST CPE2210 Number Systems 30

31 LSB: Least Significant Bit right-most bit MSB: Most Significant Bit higher-order bit left-most bit Example: LSB MSB Number Systems Representations August 2016 MST CPE2210 Number Systems 31

32 bit: binary digit (b) Byte: 8-bits (B) nibble: 4-bits Number Systems Representations high nibble low nibble 26 August 2016 MST CPE2210 Number Systems 32

33 Performance Metrics Unit Multipliers SI decimal 10 1 deci d 10 1 deka da 10 2 centi c 10 2 hecto h EIC binary 10 3 milli m 10 3 kilo k 2 10 kibi Ki 10 6 micro µ 10 6 Mega M 2 20 mebi Mi 10 9 nano n 10 9 Giga G 2 30 gibi Gi pico p Tera T 2 40 tebi Ti femto f Peta P 2 50 pebi Pi atto a Exa E 2 60 exbi Ei zepto z Zetta Z yocto y Yotta Y Egemen K. Çetinkaya 26 August 2016 MST CPE2210 Number Systems 33

34 Signals can be: analog: continuous digital: discrete Important terminology: bit, byte, nibble, LSB, MSB Number Systems Summary Important number systems: decimal, binary, hex, octal Conversions will be needed throughout your careers: know by heart 26 August 2016 MST CPE2210 Number Systems 34

35 References and Further Reading [V2011] Frank Vahid, Digital Design with RTL Design, VHDL, and Verilog, 2nd edition, Wiley, August 2016 MST CPE2210 Number Systems 35

36 End of Foils 26 August 2016 MST CPE2210 Number Systems 36

Introduction to Digital Logic Missouri S&T University CPE 2210 Number Systems

Introduction to Digital Logic Missouri S&T University CPE 2210 Number Systems Introduction to Digital Logic Missouri S&T University CPE 2210 Number Systems Egemen K. Çetinkaya Egemen K. Çetinkaya Department of Electrical & Computer Engineering Missouri University of Science and

More information

Math 230 Assembly Language Programming (Computer Organization) Numeric Data Lecture 2

Math 230 Assembly Language Programming (Computer Organization) Numeric Data Lecture 2 Math 230 Assembly Language Programming (Computer Organization) Numeric Data Lecture 2 1 Decimal Numbers Recall base 10 3582 = 3000 + 500 + 80 + 2 = 3 10 3 + 5 10 2 + 8 10 1 + 2 10 0 2 Positional Notation

More information

Lesson 1.1 MEASUREMENT, UNITS, SCIENTIFIC NOTATION, AND PRECISION

Lesson 1.1 MEASUREMENT, UNITS, SCIENTIFIC NOTATION, AND PRECISION Lesson 1.1 MEASUREMENT, UNITS, SCIENTIFIC NOTATION, AND PRECISION I. Measurements Measurements can be either Qualitative or Quantitative Qualitiative Quality, like a color or smell, are simple observations

More information

INDUSTRIAL ELECTRICITY

INDUSTRIAL ELECTRICITY INDUSTRIAL ELECTRICITY TODAY S TOPICS: Introduction (cont) Scientific Notation DUE Mon 1/13 11:00am HOMEWORK 1 Reading quizzes 1 & 2 Worksheet 1 QUESTIONS?? Scantron Use for reading quizzes only Don t

More information

Introduction to Digital Logic Missouri S&T University CPE 2210 Subtractors

Introduction to Digital Logic Missouri S&T University CPE 2210 Subtractors Introduction to Digital Logic Missouri S&T University CPE 2210 Egemen K. Çetinkaya Egemen K. Çetinkaya Department of Electrical & Computer Engineering Missouri University of Science and Technology cetinkayae@mst.edu

More information

1.1 - Scientific Theory

1.1 - Scientific Theory 1.1 - Scientific Theory Babylonians/Egyptians Observation for the practical Religious Agriculture Pseudosciences (science + nonscience) Alchemy Astrology, etc. Greeks Good Theoreticians (knowledge for

More information

Unit 3. Digital encoding

Unit 3. Digital encoding Unit 3. Digital encoding Digital Electronic Circuits (Circuitos Electrónicos Digitales) E.T.S.I. Informática Universidad de Sevilla 9/2012 Jorge Juan 2010, 2011, 2012 You are free to

More information

Defining Physical Science

Defining Physical Science Defining Physical Science Defining Physical Science: Physical Science: The study of matter and energy A merging of two major braches of Science: 1. Chemistry: Study of the composition and changes of matter

More information

Precision, Accuracy Measurements, Units, Scientific Notation

Precision, Accuracy Measurements, Units, Scientific Notation Precision, Accuracy Measurements, Units, Scientific Notation DIMENSIONAL ANALYSIS It is a technique used in chemistry to give precise and accurate values. I. Accuracy and Precision Accuracy how close a

More information

Chapter 1: The Science of Physics. Physics 1-2 Mr. Chumbley

Chapter 1: The Science of Physics. Physics 1-2 Mr. Chumbley Chapter 1: The Science of Physics Physics 1-2 Mr. Chumbley The Topics of Physics The origin of the word physics comes from the ancient Greek word phusika meaning natural things The types of fields of

More information

Chemistry 11. Unit 2 : Introduction to Chemistry

Chemistry 11. Unit 2 : Introduction to Chemistry Chemistry 11 Unit 2 : Introduction to Chemistry 1 2 1. Unit conversion In Chemistry 11 and 12, a mathematical method called Unit Conversions will be used extensively. This method uses CONVERSION FACTORS

More information

Lecture 2: Units/Coordinates/Definitions

Lecture 2: Units/Coordinates/Definitions Lecture 2: Units/Coordinates/Definitions This Week s Announcements: Please get your iclickers this week if at all possible Class Webpage: http://kestrel.nmt.edu/~dmeier/phys121/phys121.html visit regularly

More information

Introduction to Chemistry

Introduction to Chemistry Introduction to Chemistry A. Unit Conversions 1. In Chemistry 11 and 12, a mathematical method called Unit Conversions will be used extensively. This method uses CONVERSION FACTORS to convert or change

More information

ENG2410 Digital Design Introduction to Digital Systems. Fall 2017 S. Areibi School of Engineering University of Guelph

ENG2410 Digital Design Introduction to Digital Systems. Fall 2017 S. Areibi School of Engineering University of Guelph ENG2410 Digital Design Introduction to Digital Systems Fall 2017 S. Areibi School of Engineering University of Guelph Resources Chapter #1, Mano Sections 1.1 Digital Computers 1.2 Number Systems 1.3 Arithmetic

More information

Worksheet 1 Units, Signifiant Figures, Dimensional Analysis, & Density

Worksheet 1 Units, Signifiant Figures, Dimensional Analysis, & Density Name: Name: Name: Name: Worksheet 1 Units, Signifiant Figures, Dimensional Analysis, & Density Objeitives To recognize and use both S.I. and English units correctly. To be able to record a measurement

More information

Introduction to Digital Logic Missouri S&T University CPE 2210 Combinatorial Circuit Analysis and Synthesis

Introduction to Digital Logic Missouri S&T University CPE 2210 Combinatorial Circuit Analysis and Synthesis Introduction to Digital Logic Missouri S&T University CPE 2210 Combinatorial Circuit Analysis and Synthesis Egemen K. Çetinkaya Department of Electrical & Computer Engineering Missouri University of Science

More information

Design of Digital Circuits Reading: Binary Numbers. Required Reading for Week February 2017 Spring 2017

Design of Digital Circuits Reading: Binary Numbers. Required Reading for Week February 2017 Spring 2017 Design of Digital Circuits Reading: Binary Numbers Required Reading for Week 1 23-24 February 2017 Spring 2017 Binary Numbers Design of Digital Circuits 2016 Srdjan Capkun Frank K. Gürkaynak http://www.syssec.ethz.ch/education/digitaltechnik_16

More information

Chapter 5 Measurements and Calculations Objectives

Chapter 5 Measurements and Calculations Objectives Objectives 1. To show how very large or very small numbers can be expressed in scientific notation 2. To learn the English, metric, and SI systems of measurement 3. To use the metric system to measure

More information

SPH3U Measurement and Analysis Mr. LoRusso Introduction

SPH3U Measurement and Analysis Mr. LoRusso Introduction Introduction Standard Unit: Metric is the preferred unit of measure in science. Metric is often referred to as S.I for Systèm Internatianale. Historically, S.I. has been referred to as MKS system for meters,

More information

QUANITY NAME OF UNIT ABBREVIATION length meter m mass kilogram kg time second s

QUANITY NAME OF UNIT ABBREVIATION length meter m mass kilogram kg time second s Mathematics Review Sheet AP Physics 1 Systems of Units Physics involves an objective description of the world, so measurement is a crucial tool. In measuring, we make use of a group of standard units comprising

More information

ENGIN 112 Intro to Electrical and Computer Engineering

ENGIN 112 Intro to Electrical and Computer Engineering ENGIN 112 Intro to Electrical and Computer Engineering Lecture 3 More Number Systems Overview Hexadecimal numbers Related to binary and octal numbers Conversion between hexadecimal, octal and binary Value

More information

Chapter 1 CSCI

Chapter 1 CSCI Chapter 1 CSCI-1510-003 What is a Number? An expression of a numerical quantity A mathematical quantity Many types: Natural Numbers Real Numbers Rational Numbers Irrational Numbers Complex Numbers Etc.

More information

Section 5.1 Scientific Notation and Units Objectives

Section 5.1 Scientific Notation and Units Objectives Objectives 1. To show how very large or very small numbers can be expressed in scientific notation 2. To learn the English, metric, and SI systems of measurement 3. To use the metric system to measure

More information

CPE100: Digital Logic Design I

CPE100: Digital Logic Design I Chapter 1 Professor Brendan Morris, SEB 3216, brendan.morris@unlv.edu http://www.ee.unlv.edu/~b1morris/cpe100/ CPE100: Digital Logic Design I Section 1004: Dr. Morris From Zero to One Chapter 1 Background:

More information

Four Important Number Systems

Four Important Number Systems Four Important Number Systems System Why? Remarks Decimal Base 10: (10 fingers) Most used system Binary Base 2: On/Off systems 3-4 times more digits than decimal Octal Base 8: Shorthand notation for working

More information

ENGIN 112 Intro to Electrical and Computer Engineering

ENGIN 112 Intro to Electrical and Computer Engineering ENGIN 112 Intro to Electrical and Computer Engineering Lecture 2 Number Systems Russell Tessier KEB 309 G tessier@ecs.umass.edu Overview The design of computers It all starts with numbers Building circuits

More information

ECE380 Digital Logic. Positional representation

ECE380 Digital Logic. Positional representation ECE380 Digital Logic Number Representation and Arithmetic Circuits: Number Representation and Unsigned Addition Dr. D. J. Jackson Lecture 16-1 Positional representation First consider integers Begin with

More information

What is Physics? It is a Science

What is Physics? It is a Science It is a Science What is Physics? (What is science?) Physics is a physical science (as compared to earth or life science). Physics is the study of motion and energy. Science is a study Science How is science

More information

Introduction to Digital Logic Missouri S&T University CPE 2210 PLDs

Introduction to Digital Logic Missouri S&T University CPE 2210 PLDs Introduction to Digital Logic Missouri S&T University CPE 2210 PLDs Egemen K. Çetinkaya Egemen K. Çetinkaya Department of Electrical & Computer Engineering Missouri University of Science and Technology

More information

CSE 241 Digital Systems Spring 2013

CSE 241 Digital Systems Spring 2013 CSE 241 Digital Systems Spring 2013 Instructor: Prof. Kui Ren Department of Computer Science and Engineering Lecture slides modified from many online resources and used solely for the educational purpose.

More information

Introduction to Digital Logic Missouri S&T University CPE 2210 Multiplexers/Demultiplexers

Introduction to Digital Logic Missouri S&T University CPE 2210 Multiplexers/Demultiplexers Introduction to Digital Logic Missouri S&T University CPE 2210 Multiplexers/Demultiplexers Egemen K. Çetinkaya Department of Electrical & Computer Engineering Missouri University of Science and Technology

More information

Introduction to Digital Logic Missouri S&T University CPE 2210 Boolean Algebra

Introduction to Digital Logic Missouri S&T University CPE 2210 Boolean Algebra Introduction to Digital Logic Missouri S&T University CPE 2210 Boolean Algebra Egemen K. Çetinkaya Egemen K. Çetinkaya Department of Electrical & Computer Engineering Missouri University of Science and

More information

How do computers represent numbers?

How do computers represent numbers? How do computers represent numbers? Tips & Tricks Week 1 Topics in Scientific Computing QMUL Semester A 2017/18 1/10 What does digital mean? The term DIGITAL refers to any device that operates on discrete

More information

8/17/2016. Summary. Summary. Summary. Chapter 1 Quantities and Units. Passive Components. SI Fundamental Units. Some Important Electrical Units

8/17/2016. Summary. Summary. Summary. Chapter 1 Quantities and Units. Passive Components. SI Fundamental Units. Some Important Electrical Units Passive Components Chapter 1 Quantities and Units Welcome to the Principles of Electric Circuits. You will study important ideas that are used in electronics. You may already be familiar with a few of

More information

Introduction to Digital Logic Missouri S&T University CPE 2210 Karnaugh Maps

Introduction to Digital Logic Missouri S&T University CPE 2210 Karnaugh Maps Introduction to Digital Logic Missouri S&T University CPE 2210 Karnaugh Maps Egemen K. Çetinkaya Egemen K. Çetinkaya Department of Electrical & Computer Engineering Missouri University of Science and Technology

More information

Representation of SI Units and Prefixes

Representation of SI Units and Prefixes CANopen Representation of SI Units and Prefixes CiA Draft Recommendation DRP-303-2 Version 1.1 Date: 19. January 2000 CAN in Automation (CiA) 1 1 Scope This document recommends the representation of the

More information

Worksheet 2 Units, Signifiant Figures, Dimensional Analysis, & Density

Worksheet 2 Units, Signifiant Figures, Dimensional Analysis, & Density Name: Name: Name: Name: Worksheet 2 Units, Signifiant Figures, Dimensional Analysis, & Density Objeitives To recognize and use both S.I. and English units correctly. To be able to record a measurement

More information

Introduction to digital systems. Juan P Bello

Introduction to digital systems. Juan P Bello Introduction to digital systems Juan P Bello Analogue vs Digital (1) Analog information is made up of a continuum of values within a given range At its most basic, digital information can assume only one

More information

Name of Lecturer: Mr. J.Agius. Lesson 41. Chapter 8: Prefixes. In the Metric System there are standard ways of talking about big and small numbers:

Name of Lecturer: Mr. J.Agius. Lesson 41. Chapter 8: Prefixes. In the Metric System there are standard ways of talking about big and small numbers: Lesson 41 Chapter 8: Prefixes Metric Numbers In the Metric System there are standard ways of talking about big and small numbers: "kilo" for a thousand, "mega" for a million, and more... Example: A long

More information

Measuring Time, Space, and Matter. Units of Measurement

Measuring Time, Space, and Matter. Units of Measurement Measuring Time, Space, and Matter Physics is an experimental science. To understand physics we must be able to connect our theoretical description of nature with our experimental observations of nature.

More information

Unit Conversions. O Keefe - LBHS

Unit Conversions. O Keefe - LBHS Unit Conversions O Keefe - LBHS Unit Conversion Necessary in science and engineering to work across different systems of measurement or to express quantities in different units within a single system Unit

More information

Clinical Chemistry Lecture Guide

Clinical Chemistry Lecture Guide Clinical Chemistry Lecture Guide Key Terms Basic Principles Buffer Centrifugation Colligative property Conductivity Deionized water Density Dilution Distilled water Equivalent weight ( EqW ) Molality Molarity

More information

Unit 1. ET Unit 1. Quantities, Units, and Electrical Safety. Electronics Fundamentals Circuits, Devices and Applications - Floyd

Unit 1. ET Unit 1. Quantities, Units, and Electrical Safety. Electronics Fundamentals Circuits, Devices and Applications - Floyd ET 115 - Unit 1 Quantities, Units, and Electrical Safety Scientific and Engineering Notation Very large and very small numbers are represented with scientific and engineering notation. 47,000,000 = 4.7

More information

Table of SI prefixes

Table of SI prefixes Chapter 2: Analyzg Data Units and Measurement Système Internationale d Unités (SI) Base units: (fundamental units) an dependent unit of measure from a physical standard Time t (s) from the frequency of

More information

Advanced Physics Summer Assignment.

Advanced Physics Summer Assignment. Advanced Physics Summer Assignment. Part 1 - Review /Read through the notes provided. Part 2 Assignment: Complete the math assignment sections that follow the notes. Metric Units & Conversion Multiplier

More information

14:332:231 DIGITAL LOGIC DESIGN. Why Binary Number System?

14:332:231 DIGITAL LOGIC DESIGN. Why Binary Number System? :33:3 DIGITAL LOGIC DESIGN Ivan Marsic, Rutgers University Electrical & Computer Engineering Fall 3 Lecture #: Binary Number System Complement Number Representation X Y Why Binary Number System? Because

More information

EE260: Digital Design, Spring n Digital Computers. n Number Systems. n Representations. n Conversions. n Arithmetic Operations.

EE260: Digital Design, Spring n Digital Computers. n Number Systems. n Representations. n Conversions. n Arithmetic Operations. EE 260: Introduction to Digital Design Number Systems Yao Zheng Department of Electrical Engineering University of Hawaiʻi at Mānoa Overview n Digital Computers n Number Systems n Representations n Conversions

More information

MET 487 Instrumentation and Automatic Control. Lecture 3

MET 487 Instrumentation and Automatic Control. Lecture 3 MET 487 Instrumentation and Automatic Control Lecture 3 Electrical Circuits and Components http://www.etcs.ipfw.edu/~lin Lecture 2 - By P. Lin 1 Electrical Circuits and Components Basic Electrical Elements

More information

Serway AP Physics. Chapter 1

Serway AP Physics. Chapter 1 Serway AP Physics Chapter 1 1.1 Units must be defined to for measuring quantities. Units such as kg, m and sec are common in physics. The fundamental units are length (m), mass (Kg), and time (sec) which

More information

Appendix: a brief history of numbers

Appendix: a brief history of numbers Appendix: a brief history of numbers God created the natural numbers. Everything else is the work of man. Leopold Kronecker (1823 1891) Fundamentals of Computing 2017 18 (2, appendix) http://www.dcs.bbk.ac.uk/~michael/foc/foc.html

More information

A negative exponent is equal to the inverse of the same number with a positive exponent. 18!! = 1 18!

A negative exponent is equal to the inverse of the same number with a positive exponent. 18!! = 1 18! Part A: Powers of Ten My Guess The Answer 10 1 = 10 2 = 10 3 = 10 4 = 10 5 = 10 0 = 10-1 = 10-2 = 10-3 = 10-4 = 10-5 = Rule for 0 th Powers: The 0 th power of anything is always equal to 1. Rule for Negative

More information

SI UNITS AND SOME CONVERSION FACTORS. A. Woldai, B. Makkawi, and D. Al-Gobaisi International Center for Water and Energy Systems, Abu Dhabi, UAE

SI UNITS AND SOME CONVERSION FACTORS. A. Woldai, B. Makkawi, and D. Al-Gobaisi International Center for Water and Energy Systems, Abu Dhabi, UAE SI UNITS AND SOME CONVERSION FACTORS A. Woldai, B. Makkawi, and D. Al-Gobaisi International Center for Water and Energy Systems, Abu Dhabi, UAE Keywords : SI units, Dynamic viscosity, Surface tension,

More information

ECE260: Fundamentals of Computer Engineering

ECE260: Fundamentals of Computer Engineering Data Representation & 2 s Complement James Moscola Dept. of Engineering & Computer Science York College of Pennsylvania Based on Computer Organization and Design, 5th Edition by Patterson & Hennessy Data

More information

AQA Physics A-level Section 1: Measurements and Their Errors

AQA Physics A-level Section 1: Measurements and Their Errors AQA Physics A-level Section 1: Measurements and Their Errors Key Points The base units are the set of seven units of measure from which all other SI units can be derived. Units All other units can be expressed

More information

Number Representation and Waveform Quantization

Number Representation and Waveform Quantization 1 Number Representation and Waveform Quantization 1 Introduction This lab presents two important concepts for working with digital signals. The first section discusses how numbers are stored in memory.

More information

Lecture notes on * Measurement and Error * Least Square Fitting

Lecture notes on * Measurement and Error * Least Square Fitting Lecture notes on * Measurement and Error * Least Square Fitting Department of Optical Engineering University of Gaziantep Oct 2016 Sayfa 1 PART I Measurement and Error Sayfa 2 System of Units Physics is

More information

Introduction to Digital Logic Missouri S&T University CPE 2210 Boolean Representations

Introduction to Digital Logic Missouri S&T University CPE 2210 Boolean Representations Introduction to Digital Logic Missouri S&T University CPE 2210 Egemen K. Çetinkaya Egemen K. Çetinkaya Department of Electrical & Computer Engineering Missouri University of Science and Technology cetinkayae@mst.edu

More information

Week No. 06: Numbering Systems

Week No. 06: Numbering Systems Week No. 06: Numbering Systems Numbering System: A numbering system defined as A set of values used to represent quantity. OR A number system is a term used for a set of different symbols or digits, which

More information

Notes: Measurement and Calculation

Notes: Measurement and Calculation Name Chemistry-PAP Per. I. The Basics of Measurement Notes: Measurement and Calculation A. Measurement Most provide quantitative information, but because they are obtained experimentally, they are inexact.

More information

SI base units. SI : Système International d'unités (International System of Units)

SI base units. SI : Système International d'unités (International System of Units) 2 Units SI base units SI : Système International d'unités (International System of Units) Unite name (symbol) Definition established mass kilogram (kg) The mass of the International Prototype of the Kilogram

More information

Mark Redekopp, All rights reserved. Lecture 1 Slides. Intro Number Systems Logic Functions

Mark Redekopp, All rights reserved. Lecture 1 Slides. Intro Number Systems Logic Functions Lecture Slides Intro Number Systems Logic Functions EE 0 in Context EE 0 EE 20L Logic Design Fundamentals Logic Design, CAD Tools, Lab tools, Project EE 357 EE 457 Computer Architecture Using the logic

More information

LECTURE 4 - Units Used in Measurements

LECTURE 4 - Units Used in Measurements LECTURE 4 - Units Used in Measurements Note: Slide numbers refer to the PowerPoint presentation which accompanies the lecture. Units, slide 1 here Introduction Geochemical measurements may be expressed

More information

International System of Units (SI)

International System of Units (SI) Measurement International System of Units (SI) revised metric system proposed in 1960 widely used in science 7 base units SI Base Units Length Meter m Mass Kilogram kg Time Second s or sec Electrical current

More information

CHAPTER 2 NUMBER SYSTEMS

CHAPTER 2 NUMBER SYSTEMS CHAPTER 2 NUMBER SYSTEMS The Decimal Number System : We begin our study of the number systems with the familiar decimal number system. The decimal system contains ten unique symbol 0, 1, 2, 3, 4, 5, 6,

More information

PY1007: Physics for Engineers I

PY1007: Physics for Engineers I PY1007: Physics for Engineers I LECTURES: TUESDAY 12-13 Kane Building G1 THURSDAY 13-14 Lecturers Dr. Richard Green (me!) r.green@ucc.ie 1 st Floor, Kane (Science) Building Dr. Síle Nic Chormaic (Module

More information

Menu. Review of Number Systems EEL3701 EEL3701. Math. Review of number systems >Binary math >Signed number systems

Menu. Review of Number Systems EEL3701 EEL3701. Math. Review of number systems >Binary math >Signed number systems Menu Review of number systems >Binary math >Signed number systems Look into my... 1 Our decimal (base 10 or radix 10) number system is positional. Ex: 9437 10 = 9x10 3 + 4x10 2 + 3x10 1 + 7x10 0 We have

More information

Physics 11. Unit 1 Mathematical Toolkits

Physics 11. Unit 1 Mathematical Toolkits Physics 11 Unit 1 Mathematical Toolkits 1 1.1 Measurement and scientific notations Système International d Unités (SI Units) The base units for measurement of fundamental quantities. Other units can be

More information

Topics Covered in This Chapter:

Topics Covered in This Chapter: Introduction to Powers of 10 Topics Covered in This Chapter: I-1: Scientific Notation I-2: Engineering Notation and Metric Prefixes I-3: Converting between Metric Prefixes I-4: Addition and Subtraction

More information

Unit 2 Physical Quantities & Measuring Length

Unit 2 Physical Quantities & Measuring Length Unit 2 Physical Quantities & Measuring Length Lesson Objectives Show understanding that all physical quantities consist of a numerical magnitude and a unit Recall the following base quantities and their

More information

CPE100: Digital Logic Design I

CPE100: Digital Logic Design I Chapter 1 Professor Brendan Morris, SEB 3216, brendan.morris@unlv.edu http://www.ee.unlv.edu/~b1morris/cpe100/ CPE100: Digital Logic Design I Section 1004: Dr. Morris From Zero to One Chapter 1 Background:

More information

Chapter 1. Chapter 1

Chapter 1. Chapter 1 Chapter 1 Scientific and Engineering Notation Very large and very small numbers are represented with scientific and engineering notation. 47,000,000 = 4.7 x 10 7 (Scientific Notation) = 47 x 10 6 (Engineering

More information

ECE 372 Microcontroller Design

ECE 372 Microcontroller Design Data Formats Humor There are 10 types of people in the world: Those who get binary and those who don t. 1 Information vs. Data Information An abstract description of facts, processes or perceptions How

More information

PHYSICS. Complete Study Material and 1000 Objective bits Useful for all SSC, RRB & Group Exams METRE

PHYSICS. Complete Study Material and 1000 Objective bits Useful for all SSC, RRB & Group Exams METRE PHYSICS Complete Study Material and 1000 Objective bits Useful for all SSC, RRB & Group Exams PHYSICAL QUANTITIES The quantities like length, mass, time, temperature, area, volume and density, etc. which

More information

PHYSICS. Chapter 1 Review. Rounding Scientific Notation Factor Label Conversions

PHYSICS. Chapter 1 Review. Rounding Scientific Notation Factor Label Conversions PHYSICS Chapter 1 Review Rounding Scientific Notation Factor Label Conversions The Tools Of PHYSICS Metric Prefixes Prefix Symbol Meaning Kilo K 1000 Deci d tenth Centi c hundreth Milli m thousandth Prefix

More information

GCE A level 1326/01-D PHYSICS PH6 Data Analysis Task

GCE A level 1326/01-D PHYSICS PH6 Data Analysis Task Surname Centre Number Candidate Number Other Names 2 GCE A level 1326/01-D PHYSICS PH6 Data Analysis Task S16-1326-01D FRIDAY, 11 March 2016 Time Allowed 45 minutes For Examiner s use only Maximum Mark

More information

of Digital Electronics

of Digital Electronics 26 Digital Electronics 729 Digital Electronics 26.1 Analog and Digital Signals 26.3 Binary Number System 26.5 Decimal to Binary Conversion 26.7 Octal Number System 26.9 Binary-Coded Decimal Code (BCD Code)

More information

Additional Formula Sheet for Final Exam

Additional Formula Sheet for Final Exam Additional Formula Sheet for Final Exam eading and thoroughly familiarizing yourself with this formula sheet is an important part of, but it is not a substitute for, proper exam preparation. The latter

More information

International System of Units (SI)

International System of Units (SI) Measurement International System of Units (SI) revised metric system proposed in 1960 widely used in science 7 base units SI Base Units Length Meter m Mass Kilogram kg Time Electrical current Second Ampere

More information

Read Sections 1.10 and Appendix A-1 before viewing this slide show.

Read Sections 1.10 and Appendix A-1 before viewing this slide show. Read Sections 1.10 and Appendix A-1 before viewing this slide show. Unit 4 Measurement Basic Units The International System of Units (SI) (1.10) Current definitions of the seven base SI units Review of

More information

THE METRIC SYSTEM. International System of Units SI

THE METRIC SYSTEM. International System of Units SI THE METRIC SYSTEM International System of Units SI The metric system is an international decimalized system of measurement, first adopted by France in 1791. It is the common system of measuring units used

More information

Who am I? CHEM 110 General Chemistry King Abdul Aziz University Jeddah KSA. How to reach me?

Who am I? CHEM 110 General Chemistry King Abdul Aziz University Jeddah KSA. How to reach me? CHEM 110 General Chemistry King Abdul Aziz University Jeddah KSA Who am I? Dr. Mohamed Abdel Salam Assistant Professor of Physical Chemistry PhD in Nano Chemistry, Canada (006) M Sc in Electrochemistry,

More information

Chapter 4 Number Representations

Chapter 4 Number Representations Chapter 4 Number Representations SKEE2263 Digital Systems Mun im/ismahani/izam {munim@utm.my,e-izam@utm.my,ismahani@fke.utm.my} February 9, 2016 Table of Contents 1 Fundamentals 2 Signed Numbers 3 Fixed-Point

More information

12/31/2010. Digital Operations and Computations Course Notes. 01-Number Systems Text: Unit 1. Overview. What is a Digital System?

12/31/2010. Digital Operations and Computations Course Notes. 01-Number Systems Text: Unit 1. Overview. What is a Digital System? Digital Operations and Computations Course Notes 0-Number Systems Text: Unit Winter 20 Professor H. Louie Department of Electrical & Computer Engineering Seattle University ECEGR/ISSC 20 Digital Operations

More information

Introduction to the World of Energy

Introduction to the World of Energy Introduction to the World of Energy 1.1 Ratios and per How can ratios simplify problem solving? How are ratios used to find efficiency? 1.2 Exponents and Scientific Notation Why is scientific notation

More information

CLASS 11th. Mole Concept

CLASS 11th. Mole Concept CLASS 11th Mole Concept 01. Classification of matter Chemistry deals with the composition, structure and properties of matter. These aspects can be best described and understood in terms of basic constituents

More information

Review of Fundamental Mathematics, Measurement & Graphing Techniques

Review of Fundamental Mathematics, Measurement & Graphing Techniques Honors Physics Review of Fundamental Mathematics, Measurement & Graphing Techniques Introduction: One of the coolest concepts concerning science is that all of it is tied together by a few fundamental

More information

Today is Thursday, February 11 th, 2016

Today is Thursday, February 11 th, 2016 In This Lesson: Scientific Notation and Unit Analysis (Lesson 4 of 6) Today is Thursday, February 11 th, 2016 Stuff You Need: Calculator Paper Towel Pre-Class: By now you ve probably heard of scientific

More information

Tute UV1 : MEASUREMENT 1

Tute UV1 : MEASUREMENT 1 Tute UV1 : MEASUREMENT 1 We measure physical quantities. To achieve this we firstly define the quantity, then secondly we define units in terms of which that quantity can be measured. Definition of a Quantity:

More information

Binary addition example worked out

Binary addition example worked out Binary addition example worked out Some terms are given here Exercise: what are these numbers equivalent to in decimal? The initial carry in is implicitly 0 1 1 1 0 (Carries) 1 0 1 1 (Augend) + 1 1 1 0

More information

Ch. 2 Notes: ANALYZING DATA MEASUREMENT NOTE: Vocabulary terms are in boldface and underlined. Supporting details are in italics.

Ch. 2 Notes: ANALYZING DATA MEASUREMENT NOTE: Vocabulary terms are in boldface and underlined. Supporting details are in italics. Ch. 2 Notes: ANALYZING DATA MEASUREMENT NOTE: Vocabulary terms are in boldface and underlined. Supporting details are in italics. I. Units and Measurement - Metrics A. The International System of Units

More information

Chemistry 101. Dr. Lucio Gelmini Room 5-132A

Chemistry 101. Dr. Lucio Gelmini Room 5-132A Chemistry 101 Dr. Lucio Gelmini Room 5-132A GelminiL@macewan.ca 497-5813 http://academic.macewan.ca/gelminil Welcome to CHEM 101 Grant MacEwan University September 2011 Welcome to Day One! Textbook

More information

Chapter 1 :: From Zero to One

Chapter 1 :: From Zero to One Chapter 1 :: From Zero to One Digital Design and Computer Architecture David Money Harris and Sarah L. Harris Copyright 2007 Elsevier 1- Chapter 1 :: Topics Background The Game Plan The Art of Managing

More information

Cs302 Quiz for MID TERM Exam Solved

Cs302 Quiz for MID TERM Exam Solved Question # 1 of 10 ( Start time: 01:30:33 PM ) Total Marks: 1 Caveman used a number system that has distinct shapes: 4 5 6 7 Question # 2 of 10 ( Start time: 01:31:25 PM ) Total Marks: 1 TTL based devices

More information

Number vs. Quantity. Quantity - number + unit UNITS MATTER!! for a measurement to be useful, must include both a number and unit

Number vs. Quantity. Quantity - number + unit UNITS MATTER!! for a measurement to be useful, must include both a number and unit Measurement Data UNITS MATTER!! Number vs. Quantity Quantity - number + unit for a measurement to be useful, must include both a number and unit Measurements We make measurements every day: buying products,

More information

W H AT I S P H Y S I C S?

W H AT I S P H Y S I C S? WHAT IS PHYSICS? DICTIONARY DEFINITION PHYS ICS / FIZIKS/ NOUN the branch of science concerned with the nature and properties of matter and energy. The subject matter of physics, distinguished from that

More information

Tools of Chemistry. Measurement Scientific Method Lab Safety & Apparatus

Tools of Chemistry. Measurement Scientific Method Lab Safety & Apparatus Tools of Chemistry Measurement Scientific Method Lab Safety & Apparatus Scientific Notation Scientific Notation a number described as a power of 10 (used for very large or small numbers) 1000 = 1 X 10

More information

Ch. 2 Notes: ANALYZING DATA MEASUREMENT NOTE: Vocabulary terms are in boldface and underlined. Supporting details are in italics.

Ch. 2 Notes: ANALYZING DATA MEASUREMENT NOTE: Vocabulary terms are in boldface and underlined. Supporting details are in italics. Ch. 2 Notes: ANALYZING DATA MEASUREMENT NOTE: Vocabulary terms are in boldface and underlined. Supporting details are in italics. I. Units and Measurement - Metrics A. The International System of Units

More information

Formula Sheet for Exam #2

Formula Sheet for Exam #2 Formula Sheet for Exam #2 Reading and thoroughly familiarizing yourself with this formula sheet is an important part of, but it is not a substitute for, proper exam preparation. The latter requires, among

More information

Unit 1. Scientific activity

Unit 1. Scientific activity Index Unit 1. Scientific activity 1. The scientific method...2 2.- Measurement...4 2.1 Unit transformation...4 2.2. Scientific notation...6 3. Working in the lab...7 Practice exam...9 Page 1 of 11 1. The

More information

I. Qualit a Qualit t a ive iv vs. Quantit Quan a tit tiv a e tiv Measurements

I. Qualit a Qualit t a ive iv vs. Quantit Quan a tit tiv a e tiv Measurements I. Qualitative vs. Quantitative Measurements Qualitative Measurement 1) Qualitative measurement = a measurement that gives descriptive, NONnumeric results a)ex: Jillian ran a fast race. b)ex: The light

More information