Question

Number Representation and Calculation As you are going through the sections in Chapter 4, you will notice that we are working
0 0
Add a comment Improve this question Transcribed image text
Answer #1

In mathematics, change of base can mean any of several things:

  • Changing numeral bases, such as converting from base 2 (binary) to base 10 (decimal). This is known as base conversion.
  • The logarithmic change-of-base formula, one of the logarithmic identities used frequently in algebra and calculus.
  • The method for changing between polynomial and normal bases, and similar transformations, for purposes of coding theory and cryptography.

Number in Different Bases

Changing to base 10 from another base

When we write a normal (base 10) number, like 5763, we mean the value:

5000+700+60+3

or, to put it in a more revealing form:

5⋅103+7⋅102+6⋅101+3⋅100

Notice, the "digits" of our number correspond to the coefficients on the powers of ten that are added together to obtain the value of our number.

In a similar manner, we can specify numbers in other "bases" (besides 10), using different digits that correspond to the coefficients on the powers (of the given base) that must be added together to obtain the value of our number.

For example, the "base 8" (or "octal") number (as indicated by the subscript)

5763(8)

equals

5⋅83+7⋅82+6⋅81+3⋅80=3059

For smaller bases, we use a subset of these digits. For example, in base 5, we only use digits 0-4; in base 2 (which is also called binary), we only use the digits 0 and 1.

For larger bases, we need to have single digits for values past 9. Hexadecimal (base 16) numbers provide an example of how this can be done. In hexadecimal, we use digits 0-9 and A-F, where A=10, B=11, C=12, D=13, E=14, and F=15. In this way, we have digits corresponding to 0-15, which is what we need.

Changing from base 10 to a different base

One (straight-forward, but inefficient) way to convert from base 10 to a different base is to:

  1. Determine the higest power of the base that goes into the number a non-zero number of times.
  2. Determine how many times this power can be subtracted from the number without the result being negative (i.e, divide the number by the power). Write this digit down.
  3. Redefine the number to be this smallest positive remainder upon division by the power in question
  4. Redefine the power to be the power divided by the base.
  5. Go back to step 2, unless the power is now less than one -- in which case, you are done.

For example, to convert 1073 to base 5, we recall that:

50 = 1
51 = 5
52 = 25
53 = 125
54 = 625 
55 = 3125

Then we notice that 54 = 625 is the highest power of 5 under 1073.

1073 = 1 * 625 + 448
 448 = 3 * 125 + 73
  73 = 2 * 25 + 23
  23 = 4 * 5 + 3
   3 = 3 * 1 + 0

The bold digits, 13243, reveal the base 5 representation of 1073.

This process, however, is inefficient in that one must both know and use the various powers of the desired base.

There is a simpler way!

Consider the remainders seen upon division of the following numbers by 5:

1073 = 214 * 5 + 3
 214 = 42 * 5 + 4
  42 = 8 * 5 + 2
   8 = 1 * 5 + 3
   1 = 0 * 5 + 1

Note: the base 5 representation comes from reading off the remainders (in red) from bottom to top!
In each step above, we are just dividing by 5 and looking at both the quotient and remainder -- no knowledge of higher powers of 5 is necessary!

Wonderfully, this technique works in any base. (Can you explain why?)

So, for example, if we wanted to find the binary (base 2) representation of 1000, we simply calculate the following:

1000 = 500 * 2 + 0
 500 = 250 * 2 + 0
 250 = 125 * 2 + 0
 125 = 62 * 2 + 1
  62 = 31 * 2 + 0
  31 = 15 * 2 + 1
  15 = 7 * 2 + 1
   7 = 3 * 2 + 1
   3 = 1 * 2 + 1
   1 = 0 * 2 + 1

So 1000 in binary is 1111101000

Add a comment
Know the answer?
Add Answer to:
Number Representation and Calculation As you are going through the sections in Chapter 4, you will notice that we are working with different bases. Please explain to the class what it means to: R...
Your Answer:

Post as a guest

Your Name:

What's your source?

Earn Coins

Coins can be redeemed for fabulous gifts.

Not the answer you're looking for? Ask your own homework help question. Our experts will answer your question WITHIN MINUTES for Free.
Similar Homework Help Questions
  • TRY IT 1.11 You are going to use the random number generator to generate different types...

    TRY IT 1.11 You are going to use the random number generator to generate different types of samples from the data. This table displays six sets of quiz scores (each quiz counts 10 points for an elementary statistics class #1 #2 #3 34 #5 #6 5 7 10 9 8 10 5 9 8 7 6 9 10 8 6 7 9 9 10 10 9 8 9 7 8 9 5 7 4 9 9 9 10 8 7...

  • Titration: Acids and Bases 2. How can you determine which acid is diprotic? 3. using the...

    Titration: Acids and Bases 2. How can you determine which acid is diprotic? 3. using the answers to questions one and two, which acid is diprotic? 4. Which base has more hydroxide ions per molecule? Acid Volume Base Base Initial Volume (mL) Base Final Volume (mL) Volume of Base Used (mL) Acid: Base Ratio Acid 1 20 mL Base 1 50 mL 34.5 15.5 4:3 Acid 2 20 mL Base 1 Acid 1 20 mL Base 2 Acid 2 20...

  • In this lab, a piece of working software is given. You are asked to make changes...

    In this lab, a piece of working software is given. You are asked to make changes to the software according to some requirement. The scenario in this lab mimics the situation that most old software applications are facing---need to update. When covering inheritance and polymorphism, we introduced a pattern that has three elements: instanceof operator, base pointers, and a collection data structure. In the given code, the collection used is a dynamic array (will change its length automatically) called Vector....

  • 6174 is known as Kaprekar's constant after the Indian mathematician D. R. Kaprekar. This number is...

    6174 is known as Kaprekar's constant after the Indian mathematician D. R. Kaprekar. This number is notable for the following rule: 1. Take any four-digit number, using at least two different digits. 2. Arrange the digits in descending and then in ascending order to get two four-digit numbers, adding leading zeros if necessary. 3. Subtract the smaller number from the bigger number. 4. Go back to step 2 and repeat. The above process, known as Kaprekar's routine, will always reach...

  • Hello, I need question 1 sections a,b,and c. Please make around a page long. CHAPTER 4...

    Hello, I need question 1 sections a,b,and c. Please make around a page long. CHAPTER 4 Techniques for Understanding Consumer Demand and Behavior 109 t effect. ed that managers be familiar with both approaches because each provides useful ues need to realize that marketing analysis builkds on the fundamental eco- of demand and elasticity. Marketers take these basie economie n Table 3.7 in goies and develop analyses of brand differentiation, market segmentation, and dct pricing, While some of the formal...

  • Module 8: Journal Assignment-Explaining Memory to a Child (20 points possible) Chapter 8 in your textbook...

    Module 8: Journal Assignment-Explaining Memory to a Child (20 points possible) Chapter 8 in your textbook starts off with a section on conceptualizing memory. In my PowerPoint lecture notes that I've posted, you will see that I've annotated a figure called the "Atkinson-Shiffrin Memory Model" on Slide #3 from Chapter 8; however, you will not find this figure in your book (assuming you have the 8th edition or higher). In contrast, Figure 8.1 from your textbook (found on page 233...

  • please help with my pre lab additional information Pre-Lab Questions: 1. What is the definition of...

    please help with my pre lab additional information Pre-Lab Questions: 1. What is the definition of an 'equivalence point' in an acid/base titration? (1 point) 2. In part one of the experiment, you will prepare the acid solutions being titrated from a stock solution. Describe how you will accurately prepare 10.00 mL of 0.100 M HCl solution using a 1.00 M HCI stock solution. In your response to this question, be very specific about the quantities of stock solution and...

  • Separating a Mixture, Recrystallization, pre-lab assignment could you also explain why you chose that substance for...

    Separating a Mixture, Recrystallization, pre-lab assignment could you also explain why you chose that substance for the empty spaces and question marks EXPERIMENT 4 Pre-Lab Assignment Separating a Mixture, Recrystalliration Name Date 1. Complete the following flowchart which shows how to separate a mixture of sand, sodium chloride and acetanilide. Notice that after a separation process (a down arrow) the filtered solids are shown on the left and the filtrate (the liquid) is shown on the right. The terminal step...

  • Amazon to Competition: We Will Crush You! Amazon to Employees: We Will Churn You! Globally, Amazon...

    Amazon to Competition: We Will Crush You! Amazon to Employees: We Will Churn You! Globally, Amazon is one of the largest and most successful companies in any industry. Technological innovation has contributed to its success, as has its employee acquisition practices, which are exceptionally high. The question is what has allowed this company to thrive and maintain its success? This activity is important because it shows how companies like Amazon hire based on personality and individual differences. Such companies place...

  • 3. If 15.0 mL of 0.125 M phosphoric acid is titrated with 0.100 M NaOH, what...

    3. If 15.0 mL of 0.125 M phosphoric acid is titrated with 0.100 M NaOH, what volume of the titrant (in mL) must be added to completely neutralize the acid? Show all of your work (including the chemical equation). (1 point) Post-lab Questions: Experiment #9: Acid-Base Titrations Student Learning Objectives : Students will gain practice with the accurate preparation of solutions. Students will perform acid-base titrations and prepare titration curves. Students will identify strong and weak acids by the shapes...

ADVERTISEMENT
Free Homework Help App
Download From Google Play
Scan Your Homework
to Get Instant Free Answers
Need Online Homework Help?
Ask a Question
Get Answers For Free
Most questions answered within 3 hours.
ADVERTISEMENT
ADVERTISEMENT
ADVERTISEMENT