COUNTING IN BINARY Binary weightings 0 x x x x 8

Slides:



Advertisements
Similar presentations
Dan Heflin. Well, how do we do this? You take the (4/7), and multiple by 2 to get You take the whole number representation, which is 1 in this.
Advertisements

Binary Decision Diagrams1 BINARY DECISION DIAGRAMS.
Introduction to Computer Engineering by Richard E. Haskell Number Systems Module M3.1 Sections
Digital Circuit Why Digital Circuit? – Digital signals ( 0 and 1) are very easy to handle with electronic circuits only 2 states needed: Switch ON or OFF,
Decimal Addition What is going on? (carry) (subtract the base)
Binary numbers. 1 Humans count using decimal numbers (base 10) We use 10 units: 0, 1, 2, 3, 4, 5, 6, 7, 8 and (5.
Multiplying Decimals. Multiplying Decimals Notes Multiply as usual, ignoring the decimal points. Count how many total digits are to the right of the decimal.
Decimal Review ,00010,0001, Decimal ~ Base 10 number system 10 different numbers: 0, 1, 2, 3, 4, 5, 6, 7, 8,
Counting in The Binary System Base Two © RAM 2008.
Revision Introductory Lesson
Number Systems.
Multiplying Decimals Lesson 1-7 From /
Number System Chapter 3 Subject: Digital System Year: 2009.
Binary! Why do computers use binary? Easy to detect the state of a switch – they’re either on or off! Using another base makes.
Multiply Decimals 1.Multiply as with whole numbers. 2.Count the total numbers in decimal place value for both factors 3.Place as many numbers of your FINAL.
You must follow the steps!
1 Chapter 2 Number Systems, Operations, and Codes.
Converting From decimal to Binary & Hexadecimal to Binary
Bits and Bytes. Decimal Numbers 6,357 has four digits -base-10 (6 * 1000) + (3 * 100) + (5 * 10) + (7 * 1) = = 6357 (6 * 10^3) + (3.
Lesson 4-7 Example Example 1 Find 4.32 × Multiply the factors, ignoring the decimal points for now. 432 × 6 = 2592.
AP Computer Science A – Healdsburg High School 1 Unit 1 - Binary Numbers - Hexadecimal Numbers.
Octal to Decimal Hexadecimal DecimalOctal Binary.
Hexadecimal Data Representation. Objectives  Know how the Hexadecimal counting system works  Be able to convert between denary, binary & hexadecimal.
Binary01.ppt Decimal Decimal: Base 10 means 10 Unique numerical digits ,00010,000 Weight Positions 3,
There are only 10 people in the world. Those who understand binary and those you don’t.
Rounding (Decimal Places) Round each number to the given number of decimal places.
Arithmetic in Binary. Addition A “Rule of Addition” is a statement of the form: = 8 How many such rules are there in Decimal?
Fractions and Decimal Fractions Fractions Decimal Fractions
Number Systems. There are 10 kinds of people in the world, those who understand binary and those who don’t.
Chapter 5 NUMBER REPRESENTATION AND ARITHMETIC CIRCUITS.
Binary Numbers Practice.
Let’s COUNT In tenths
Binary Numbers. Decimal vs Binary = 1001 = 101 = 10 1 = on = 0 = off = On and off.
Coding Part 2. Weight of the Digit 3672 Thousands (10 3 )Hundreds (10 2 )Tens (10 1 )Units (1) = Weights Decimal Example (3672) 10 Binary.
Decimal Numbers.
Number Systems Write the decimal value of the binary number
Multiplying Decimals by Decimals
Octal to Decimal Decimal Octal Binary Hexadecimal.
Base ‘b’ number for i = 0 to n – 1 for an n digit quantity
Binary Lesson 1 Nybbles.
Name_____ 6__ Lesson 3 – Multiplying Decimals Nov_
Multiply Decimals.
Binary Lesson 1 Nybbles.
Number Systems Base 2, 10, 16.
Binary Lesson 1 Nybbles.
1. Number Systems.
Multiplying & Dividing by Powers of Ten
Binary Lesson 2 Bytes.
Multiplying Decimals by Decimals
Expanded Form = 3, (3 x 1,000) + (5 x 100)
Understanding Binary Basics
Dividing Decimals.
Multiplying Decimals 3-6 & 3-7.
From the ASCII table… Symbol Decimal Binary A B 66
Multiplying Decimals Lesson 13.2.
Binary Lesson 3 Hexadecimal
Binary Lesson 3 Hexadecimal
Binary Numbers The Binary number system is derived from Base 2. In base 2 there are only 2 numerical options 0 and 1. The computer sees these as Off.
Binary  Name: Class: .
COUNTING IN BINARY Binary weightings 0 x x x x 8
Binary Search Counting
Binary Lesson 1 Nybbles.
Number Systems.
Multiplying Decimals Lesson 1-7.
Computer Science 1 Review and finish Number base conversion
Addition & Subtraction Addition & Subtraction
Number Systems Today, I’ll be giving an introduction to:
Counter Fundamentals Presented by :
Binary Lesson 1 Nybbles.
Presentation transcript:

COUNTING IN BINARY Binary weightings 0 x 1 + 0 x 2 + 0 x 4 + 0 x 8 8 4 2 1 Binary weightings 0 x 1 + 0 x 2 + 0 x 4 + 0 x 8 ====== 0 0 0 0 Binary Decimal 1 x 1 + 1 x 2 + 0 x 4 + 1 x 8 ====== 11 1 0 1 1 1 0 1 0 10 1 0 0 1 9 1 0 0 0 8 0 1 1 1 7 0 1 1 0 6 0 1 0 1 5 0 1 0 0 4 0 0 1 1 3 0 0 1 0 2 0 0 0 1 1 0 0 0 0 Binary Decimal 0 x 1 + 0 x 2 + 1 x 4 + 1 x 8 ====== 12 1 1 0 0 1 0 1 1 11 1 0 1 0 10 1 0 0 1 9 1 0 0 0 8 0 1 1 1 7 0 1 1 0 6 0 1 0 1 5 0 1 0 0 4 0 0 1 1 3 0 0 1 0 2 0 0 0 1 1 0 0 0 0 Binary Decimal 0 x 1 + 1 x 2 + 0 x 4 + 1 x 8 ====== 10 1 0 1 0 1 0 0 1 9 1 0 0 0 8 0 1 1 1 7 0 1 1 0 6 0 1 0 1 5 0 1 0 0 4 0 0 1 1 3 0 0 1 0 2 0 0 0 1 1 0 0 0 0 Binary Decimal 1 x 1 + 0 x 2 + 1 x 4 + 1 x 8 ====== 13 1 1 0 1 1 1 0 0 12 1 0 1 1 11 1 0 1 0 10 1 0 0 1 9 1 0 0 0 8 0 1 1 1 7 0 1 1 0 6 0 1 0 1 5 0 1 0 0 4 0 0 1 1 3 0 0 1 0 2 0 0 0 1 1 0 0 0 0 Binary Decimal 1 x 1 + 1 x 2 + 1 x 4 + 1 x 8 ====== 15 1 1 1 1 1 1 1 0 14 1 1 0 1 13 1 1 0 0 12 1 0 1 1 11 1 0 1 0 10 1 0 0 1 9 1 0 0 0 8 0 1 1 1 7 0 1 1 0 6 0 1 0 1 5 0 1 0 0 4 0 0 1 1 3 0 0 1 0 2 0 0 0 1 1 0 0 0 0 Binary Decimal 0 x 1 + 1 x 2 + 1 x 4 + 1 x 8 ====== 14 1 1 1 0 1 1 0 1 13 1 1 0 0 12 1 0 1 1 11 1 0 1 0 10 1 0 0 1 9 1 0 0 0 8 0 1 1 1 7 0 1 1 0 6 0 1 0 1 5 0 1 0 0 4 0 0 1 1 3 0 0 1 0 2 0 0 0 1 1 0 0 0 0 Binary Decimal 1 x 1 + 0 x 2 + 0 x 4 + 1 x 8 ====== 9 1 0 0 1 1 0 0 0 8 0 1 1 1 7 0 1 1 0 6 0 1 0 1 5 0 1 0 0 4 0 0 1 1 3 0 0 1 0 2 0 0 0 1 1 0 0 0 0 Binary Decimal 1 x 1 + 1 x 2 + 1 x 4 + 0 x 8 ====== 7 0 1 1 1 0 1 1 0 6 0 1 0 1 5 0 1 0 0 4 0 0 1 1 3 0 0 1 0 2 0 0 0 1 1 0 0 0 0 Binary Decimal 0 x 1 + 1 x 2 + 0 x 4 + 0 x 8 ====== 2 0 0 1 0 0 0 0 1 1 0 0 0 0 Binary Decimal 1 x 1 + 0 x 2 + 0 x 4 + 0 x 8 ====== 1 0 0 0 1 0 0 0 0 Binary Decimal 1 x 1 + 1 x 2 + 0 x 4 + 0 x 8 ====== 3 0 0 1 1 0 0 1 0 2 0 0 0 1 1 0 0 0 0 Binary Decimal 0 x 1 + 0 x 2 + 1 x 4 + 0 x 8 ====== 4 0 1 0 0 0 0 1 1 3 0 0 1 0 2 0 0 0 1 1 0 0 0 0 Binary Decimal 0 x 1 + 1 x 2 + 1 x 4 + 0 x 8 ====== 6 0 1 1 0 0 1 0 1 5 0 1 0 0 4 0 0 1 1 3 0 0 1 0 2 0 0 0 1 1 0 0 0 0 Binary Decimal 1 x 1 + 0 x 2 + 1 x 4 + 0 x 8 ====== 5 0 1 0 1 0 1 0 0 4 0 0 1 1 3 0 0 1 0 2 0 0 0 1 1 0 0 0 0 Binary Decimal 0 x 1 + 0 x 2 + 0 x 4 + 1 x 8 ====== 8 1 0 0 0 0 1 1 1 7 0 1 1 0 6 0 1 0 1 5 0 1 0 0 4 0 0 1 1 3 0 0 1 0 2 0 0 0 1 1 0 0 0 0 Binary Decimal