Binary Numbers Press any key to begin..

Slides:



Advertisements
Similar presentations
Intro to CS – Honors I Representing Numbers GEORGIOS PORTOKALIDIS
Advertisements

Binary & Decimal numbers = 3* * *10 + 5*1 = 3* * * *10 0 Decimal system: Ten digits: 0,1,2,3,…,9 Example:
Mathematics with Binary. Question  Below is a binary string  Which is the least significant bit (LSB)?  Which is the most significant bit (MSB)? 0.
Binary Conversion In today’s lesson we will link together the binary and algorithm topics by looking at how to get the computer to: convert binary to decimal.
 A binary number is a number that includes only ones and zeroes.  The number could be of any length  The following are all examples of binary numbers.
Computer Systems 1 Fundamentals of Computing
Decimal to Binary Conversion Press any key to continue…
Computer Systems Nat 4/5 Computing Science Lesson 1: Binary.
CS1800 Summer 2014 Binary Numbers. Decimal Integers  What does a decimal number like "87294" really mean?  More generally.
They are the same as registers since they store binary numbers. Called shifting registers since they shift (left or right) the binary number stored in.
Converting binary to decimal decimal to binary
Decimal Review ,00010,0001, Decimal ~ Base 10 number system 10 different numbers: 0, 1, 2, 3, 4, 5, 6, 7, 8,
Revision Introductory Lesson
Number Systems.
Subnetting Made Simple By Keith W. Noe – CCNA, CCAI Ivy Tech Community College Sellersburg, Indiana.
Determine a node’s IP Network Address Gina Minks EME5603 Fall 2008 Final Project For EMC Employees.
Lecture for Week Spring.  Numbers can be represented in many ways. We are familiar with the decimal system since it is most widely used in everyday.
Objective: To convert numbers into standard index form
A little bit of exercise.. ;). Exercise Given to you are some binary to decimal examples : Given to you are some binary to decimal examples : Tens Units.
Use effective written methods to add whole numbers.
NUMBER SYSTEM Decimal System Binary System. We use two digits in this system (0,1) just like the existing system of computers.. And write the number in.
We came up with the general rule for expanding binomials, in particular squaring the sum and difference of two terms:- (a + b)²= a²+ 2ab + b² and (a –
Binary Numbers So what are they and why are they important?
THE BINARY NUMBER SYSTEM “There are only 10 types of people in this world: Those who understand BINARY and those who do not.”
Addition and Substraction
Announcement!!! First exam next Thursday (I’m trying to give you a first exam before the drop date) I’ll post a sample exam over the weekend and will try.
Multiplying Decimals Type your name and send: Next slide.
Phys 4330 Digital ElectronicsBinary System Digital circuits process signals that contain just two voltage levels or states, labeled logic "0" and logic.
NUMBER SYSTEMS.
Decimal to Binary Conversion Press any key to continue…
Arithmetic in Binary. Addition A “Rule of Addition” is a statement of the form: = 8 How many such rules are there in Decimal?
COMPUTER PROGRAMMING I Objective 1.02 Understand Numbering Systems.
Converting Fractions to Decimals. In order to understand how to convert fractions to decimals, you must first know: 1)What a fraction is. 2)What a decimal.
CMSC 1041 Binary / Hex Binary and Hex The number systems of Computer Science.
Numbering Systems and Conversion Understand How Computing Devices Work 1.
Binary Numbers Press any key to begin.. In order to understand the binary numbering system lets first look at our decimal system. The decimal numbering.
Number Systems Decimal Can you write 12,045 in expanded form? Base? Allowable digits for each place?
1. Binary, Decimal, Hexadecimal and Octal. 2. Conversion between various number systems. Number Systems:
Nat 4/5 Computing Science Lesson 1: Binary
Binary & Decimal numbers
Introduction To Number Systems
Binary, Denary, Hexadecimal Conversion Binary Addition
Rules for Determining Significant figures
Hexadecimal Conversion
Binary Positional Notation
COMPUTING FUNDAMENTALS
Number System conversions
Multiplying by powers of 10 Decimals
Addition and Substraction
Scientific Notation.
Decimal System The radix or base of a number system determines
Scientific Notation.
Fractions and Decimals
Data Representation Conversion 05/12/2018.
Objective 1.02 Understand Numbering Systems
Starter Using the fingers on only one hand, what is the highest number you can count to? Rules: You must start at 1 You must count sequentially (i.e.
Complete the following calculation:
The basics of any electronic device means either electricity is flowing or it is not i.e. a switch is either on or off Computers are electronic devices.
Binary to Decimal Conversion
Scientific Notation.
Scientific Notation.
Complete the following calculation:
Converting from Base-n to Base-10
Starter: There are 25 prime numbers under 100.
Data Binary Arithmetic.
Place Value Name: _____________________
To be able to multiply a number by 10, 100 and 1000
Is it OK to write down all digits on your calculator?
Do not use a calculator for the following!!.
Shaffer’s Math Presentation
Presentation transcript:

Binary Numbers Press any key to begin.

In order to understand the binary numbering system lets first look at our decimal system. 0 1 2 3 4 5 6 7 8 9 The decimal numbering system consists of the numbers 0 through 9. After nine we place a 1 in the tens column and start again with 0. Which gives us 10. The decimal system is also known as base 10 because it is based on the 10 numbers 0 – 9. 1 Press any key to continue…

Binary Numbers have only two digits 0 or 1 Binary is known as Base 2 Decimal Binary 0 0 1 1 2 10 3 11 4 100 5 101 6 110 7 111 Press any key to continue…

An easier way is to use the powers of 2 As you can see it would take a lot of time to create charts to represent Binary numbers. An easier way is to use the powers of 2 20 = 1 24 = 16 21 = 2 25 = 32 22 = 4 26 = 64 23 = 8 27 =128 Lets place the above calculations into a chart that will make it easy to convert a binary number to a decimal number. Press any key to continue…

Use the chart to convert the binary number to decimal. 0 0 1 0 1 0 0 1 1 x 1 = 1 2 x 0 = 0 4 x 0 = 0 Note: The bit to the far right is the Least Significant Bit (LSB) and will determine if the number is even or odd. 8 x 1 = 8 16 x 0 = 0 32 x 1 = 32 64 x 0 = 0 128 x 0 = 0 Total = 41 Press any key to continue…

Use the chart to convert the binary number to decimal. 0 1 1 1 1 1 1 1 1 x 1 = 1 2 x 1 = 2 Note: if consecutive bits from the right are all 1’s Then the answer is the next power of 2 minus 1 In this case 128 – 1 = 127 4 x 1 = 4 8 x 1 = 8 16 x 1 = 16 32 x 1 = 32 64 x 1 = 64 128 x 0 = 0 Total = 127 Press any key to continue…

Take a piece of paper and convert the binary number to decimal Take a piece of paper and convert the binary number to decimal. Press any key when you have the answer. 1 0 1 1 1 0 1 0 1 x 0 = 0 2 x 1 = 2 4 x 0 = 0 8 x 1 = 8 16 x 1 = 16 32 x 1 = 32 64 x 0 = 0 128 x 1 = 128 Total = 186 Press any key to continue…

The largest number that can be represented using an 8 bit binary number is 255. 1 1 1 1 1 1 1 1 Remember the rule – if all the digits are 1 then the number is the next power of 2 minus 1 256 – 1 = 255

Converting a binary number to a decimal number is a simple task if you understand the chart below and how to use it. The End