1 Discrete Math LESSON ON Number Base Addition. 2 Objective In this lesson you’ll learn how to do simple addition in Base 2, 8, and 16. It is essentially.

Slides:



Advertisements
Similar presentations
John Owen, Rockport Fulton HS1 Computer Science LESSON ON Number Base Addition.
Advertisements

John Owen, Rockport Fulton HS
Writing Algebraic Expressions
Writing Algebraic Expressions
We have added and subtracted fractions. In this lesson we will multiply fractions. When we add and subtract fractions, we count how many of the same size.
Algebraic Word Problems
Don’t worry!. Here is an example and reminders to help you with your homework.
Chapter 1.5 The Binary System CSCI 3. Basic Concepts Behind the Binary System In the decimal system, things are organized into columns – H | T | O – 1.
The Price is Right A 2 nd Grade Math lesson involving the counting of money.
Lesson # 4 The “Teens” Times Table People might say… Hey… This is a “teen” Lesson, intended for “teens”, That’s pretty Keen, If you know what I mean,
Business Math, Eighth Edition Cleaves/Hobbs © 2009 Pearson Education, Inc. Upper Saddle River, NJ All Rights Reserved 3.1 Decimals and the Place.
John Owen, Rockport Fulton HS1 Computer Science LESSON 2 ON Number Bases.
Warm up Match each of the phrases with its appropriate operation. Operations may be matched more than one.  More than  Decreased by  Product  Quotient.
An Introduction to Addition
LESSON ON Number Base Subtraction and Simple Equations
Writing Algebraic Expressions Part 2
Year 6 SATs Booster Maths 1 Place Value Part 1.
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.
© 2010 Pearson Prentice Hall. All rights reserved. CHAPTER 4 Number Representation and Calculation.
Mental Math Strand B – Number Sense Grade 2. Addition – Plus 1 Facts 7+1 or 1+7 is asking for the number after 7. One more than 7 is =8, 1+7=8.
Use effective written methods to add whole numbers.
Place Value with Decimals
Multiplying Whole Numbers and Decimals Lesson 2-2.
Parents Guide to Long Multiplication
Decimals Review. Decimals Decimals are a type of fractional number The denominator is always a power of 10 A decimal point is used to show that it is.
1 IT 231, CMPE 331 Digital Logic Design Week 2 Number systems and arithmetic.
4 th Grade Math: Adding Multi-digit Numbers NBT.B.4 Use place value understanding and properties of operations to perform multi-digit arithmetic. Table.
7 A&F 1.1 OBJECTIVE Use variables & operations to write an expression We LOVE Mathematical Language!!!
Back to menu - St. Bartholomew’s C of E Primary School Parents Guide to maths + ÷ x Quit Multiplication AdditionSubtraction Division *Only click when.
Do Now Solve the following problems using PEMDAS - Remember to number the operations! 1). 24 – 8 x = 2). ( ) ÷ = 3). (12 – 2 x 4) 2.
Lesson 2 – Adding Fraction Pictures
exponents.
1 Computer Science LESSON 1 on Number Bases. 2 Objective In this lesson you’ll learn about different Number Bases, specifically about those used by the.
Computer Science Introduction to the Number Base Unit Adapted from Slides by John Owen Computer Science Instructor, Rockport-Fulton High School, Rockport,
BIG NUMBERS and SMALL NUMBERS (Scientific Notation)
Understanding Multiplication and Division.
Division By Mr. English Gold Ridge Elementary School Folsom, California.
Calculations using decimal fractions is often easier than using fractions. Some parts of industry use decimal fractions to get some degree of precision.
EXPONENTS, SQUARES AND POWERS OF 10 REVIEW GAME!!!!!!
Adding 2-digit numbers with regrouping. Always add the ones place first
Steps of Addition Move your mouse over each step to see the directions.
Adding Two and Three Digit Numbers
COMPUTER PROGRAMMING I Objective 1.02 Understand Numbering Systems.
Boxes, Chains, & Extras by Denise Carroll. Digits We can use the digits 0 – 9 to make any number. Each number is called a digit. Counting the zero, we.
Equations David Marx All rights reserved, What are they? An equation is a statement that contains two separate expressions separated by an equal.
Computer Science LESSON 2 ON Number Bases.
Objective: Translate verbal phrases to number form. Key phrases : Addition: The sum of five and a number 5 + x Six more than a number x + 6 A number plus.
Multiplying Decimals 12/7/2015. To Multiply: You do not align the decimals. Instead, place the number with more digits on top. Multiply Count the number.
 Scientific notation is simply a method for expressing, and working with, very large or very small numbers. It is a short hand method for writing numbers,
No Pencil or Paper Needed!.  Make sure you know your multiplication tables up to 10.
Multiplying Decimals.
Computer Science LESSON 1 on Number Bases.
2 Digit by 2 Digit Multiplication
Learning the Multiplication Facts
Multiply Decimals L-2 6.NS.3.
Multiplying Decimals.
Number Words   two one three.
Can fractions be equivalent to whole numbers?
AP Computer Science LESSON 1 on Number Bases.
Writing Algebraic Expressions
John Owen, Rockport Fulton HS
§4.3, Computation in Positional Systems
What is the traditional method for multiplying fractions?
What happens when we divide fractions?
MathOnMonday® Presents: Building Math Courage®
CHOOSE THE CORRECT NUMBER
Beginning Decimals.
Multiplying Fractions: Visual Fraction Models
Beginning Decimals.
Presentation transcript:

1 Discrete Math LESSON ON Number Base Addition

2 Objective In this lesson you’ll learn how to do simple addition in Base 2, 8, and 16. It is essentially the same as Base 10 addition, just in a different base!

3 Review Base Ten Addition, #1 In Base 10 addition, you learned a very simple process. Look at this problem: First add the ones column, then the tens.

4 Review Base Ten Addition, # The answer is 49…simple, right?

5 Review Base Ten Addition, #2 Now look at this problem: When you add the ones column values, the result of 10 EQUALS the base value of 10, so you have to CARRY a 1.

6 Review Base Ten Addition, # When a carry is made, you essentially divide by 10 (the base) to determine what value to carry, and mod by 10 to determine what value to leave behind.

7 Review Base Ten Addition,# plus 7 is divided by 10 is 1 (carry) 10 mod 10 is 0 (leave)

8 Review Base Ten Addition, # Answer is 50

9 Review Base Ten Addition, #3 Here’s a third example: When you add the ones column values, the result of 13 EXCEEDS the base value of 10, so CARRY a 1.

10 Review Base Ten Addition, # plus 7 is divided by 10 is 1 (carry) 13 mod 10 is 3 (leave)

11 Review Base Ten Addition, # Answer is 53

12 Review Base Ten Addition, #4 And finally, a fourth example: The ones column result of 11 EXCEEDS the base value of 10, and you CARRY a 1.

13 Review Base Ten Addition,# plus 5 is divided by 10 is 1 (carry) 11 mod 10 is 1 (leave)

14 Review Base Ten Addition, # is 6 plus 5, which equals divided by 10 is 1 (carry) 11 mod 10 is 1 (leave)

15 Review Base Ten Addition, # Answer is 111, base 10

16 Base Eight Addition, #1 Now here is an example in base eight: When you add the ones column values, the answer is 6, and the second column answer is 4.

17 Base Eight Addition. # Answer is 46, base eight You say, “four six base eight”, not “forty-six” The phrase “forty-six” is meant for base ten only.

18 Base Eight Addition, #2 Now look at this problem: When you add the ones column values, the result of 8 EQUALS the base value of 8, and you have to CARRY a one.

19 Base Eight Addition, # Again you divide by 8 (the base) to determine what value to carry, and mod by 8 to determine what value to leave behind.

20 Base Eight Addition, # plus 4 is 8 8 divided by 8 is 1 (carry) 8 mod 8 is 0 (leave)

21 Base Eight Addition, # Answer is “five zero, base eight”! Looks strange, but it is correct!

22 Base Eight Addition, #3 Here’s a third example: When you add the ones column values, the result of 13 EXCEEDS the base value of 8, and you have to CARRY a one.

23 Base Eight Addition, # plus 7 is divided by 8 is 1 (carry) 13 mod 8 is 5 (leave)

24 Base Eight Addition, # Answer is 55, base eight.

25 Base Eight Addition, #4 And a fourth example: The ones column result of 11 EXCEEDS the base value of 8, …CARRY a one.

26 Base Eight Addition, # plus 5 is divided by 8 is 1 (carry) 11 mod 8 is 3 (leave)

27 Base Eight Addition, # is 6 plus 5 is divided by 8 is 1 (carry) 11 mod 8 is 3 (leave)

28 Base Eight Addition, # Answer is 133, base 8

29 Base Two Addition, #1 Base Two Addition is quite interesting, but also fairly simple. Since the only counting digits in base two are the values 0 and 1, there are only a few situations you have to learn.

30 Base Two Addition, #1 We’ll start simple: 1 +1 =10 (“one zero, base two”) This looks strange, but the same process applies.

31 Base Two Addition, # = 10 Since is 2, this EQUALS the base value of 2, which means you carry the “div” answer and leave the “mod” answer

32 Base Two Addition, # = 10 2 / 2 = 1 (carry) 2 % 2 = 0 (leave) That’s it!

33 Base Two Addition, #2 Here’s another: = 101 Can you figure it out?

34 Base Two Addition, # = 101 In the ones column, is 1. In the second column, 1+1 is 2, or 10 in base 2

35 Base Two Addition, #3 And another: = Can you figure it out?

36 Base Two Addition, #3 Step by step… = 0

37 Base Two Addition, #3 Step by step… = 00

38 Base Two Addition, #3 Step by step… = 000

39 Base Two Addition, #3 Step by step… = 0000

40 Base Two Addition, #3 Step by step… = Since is 3, carry 1 and leave 1

41 Base Two Addition, #3 Step by step… = All done!

42 Base Sixteen, Example #1 In base sixteen, remember the digits are 0-9, then A-F, representing the values 0-15 Here’s an example:

43 Base Sixteen, Example # = 3B, base is 11, which is B in base sixteen 2+1 is 3, so the answer is 3B

44 Base Sixteen, Example #2 1 A9 +47 = F0, base is 16, equal to the base, so carry 1 and leave A(10) + 4 is 15, which is F

45 Base Sixteen, Example #3 11 D6 +7C = 152, base 16 6+C(12) = 18, carry 1, leave 2 1+D(13)+7 = 21, carry 1, leave 5

46 Base Sixteen, Example #4 11 EF +2D = 11C, base 16 F(15) + D(13) = 28, carry 1, leave C(12) 1 + E(14) + 2 = 17, carry 1, leave 1

47 Exercises Now try these exercises = = 3. F 16 + F 16 = = B 16 = 6. C 16 + D 16 =

48 Exercises = 8. F = = = = = =

49 Exercises 14. ACE 16 + BAD 16 = = F =

50 ANSWERS (JUMBLED) E BA9 8C B