Some questions about bases and the decimal system.

In summary, the conversation discusses the concept of expressing numbers in different bases, specifically the decimal system. The speaker is confused about dividing numbers and converting them to other bases, and the purpose of using 372 as an example in a book. They clarify that there are 10 digits in the decimal system and explain how to divide numbers in different bases. They also mention other bases, such as hexadecimal and base-64, and provide a link for more information. The main point is to understand the concept of base 10 and its representation as the sum of powers of 10.
  • #1
Logical Dog
362
97
Hello.

This is how every number in the decimal system is expressed:
imejYaS.png


I had understood this topic earlier but as I was revising it today I have become confused somewhat.

I know that for the decimal system, we have 9 digits.
ub4RD54.png


I understand this:

- When we use a base between 1-10, we do not need to come up with new digits.

- in the illustration one above, if the base is x, the coefficient a can only be less than x? Am I correct?

- I am confused as to how to divide numbers and change them to other bases, I seem to have forgotten basic division.

I understand 372 expressed in base 10 is 3*10*10 +7*10 + 2

But what I don't get is this, 372 is already expressed in base 10 when we divide it by 10?

I am really confused. All numbers are intuitively expressed in base 10 before we convert them to other bases..but division by the same base in the same form seems to give the same number.
 
Mathematics news on Phys.org
  • #2
in the book I am using there is an example using 372, the author divides by 10 to reinforce the point about how the coefficients a an-1 an-2 are also the remainders of succcesful division.

But, 372 is already expressed in base 10 form when he divides, so, what is the point>
 
  • #3
Bipolar Demon said:
in the book I am using there is an example using 372, the author divides by 10 to reinforce the point about how the coefficients a an-1 an-2 are also the remainders of succcesful division.

But, 372 is already expressed in base 10 form when he divides, so, what is the point>
The point is to illustrate what base 10 means - the expression as the sum of powers of 10.
 
  • Like
Likes Logical Dog
  • #4
Instead of 372, the book could have used 1+1+1+1+1+1+1+1+1+1+1+1+1+1+1+1+1+1+1+1+1+1+1+1+1+1+1+1+1+1+1+1+1+1+1+1+1+1+1+1+1+1+1+1+1+1+1+1+1+1+1+1+1+1+1+1+1+1+1+1+1+1+1+1+1+1+1+1+1+1+1+1+1+1+1+1+1+1+1+1+1+1+1+1+1+1+1+1+1+1+1+1+1+1+1+1+1+1+1+1+1+1+1+1+1+1+1+1+1+1+1+1+1+1+1+1+1+1+1+1+1+1+1+1+1+1+1+1+1+1+1+1+1+1+1+1+1+1+1+1+1+1+1+1+1+1+1+1+1+1+1+1+1+1+1+1+1+1+1+1+1+1+1+1+1+1+1+1+1+1+1+1+1+1+1+1+1+1+1+1+1+1+1+1+1+1+1+1+1+1+1+1+1+1+1+1+1+1+1+1+1+1+1+1+1+1+1+1+1+1+1+1+1+1+1+1+1+1+1+1+1+1+1+1+1+1+1+1+1+1+1+1+1+1+1+1+1+1+1+1+1+1+1+1+1+1+1+1+1+1+1+1+1+1+1+1+1+1+1+1+1+1+1+1+1+1+1+1+1+1+1+1+1+1+1+1+1+1+1+1+1+1+1+1+1+1+1+1+1+1+1+1+1+1+1+1+1+1+1+1+1+1+1+1+1+1+1+1+1+1+1+1+1+1+1+1+1+1+1+1+1+1+1+1+1+1+1+1+1+1+1+1+1+1+1+1+1+1+1+1+1+1+1+1+1+1+1+1+1+1+1+1+1+1+1+1+1+1+1+1+1+1+1+1+1+1+1+1+1+1+1+1 everywhere. This representation works in every base, but I think the problem is obvious. It is easier to write "372" (using the decimal system) even if the topic is about the meaning of this chain of symbols.
 
  • Like
Likes Logical Dog
  • #5
Bipolar Demon said:
Hello.

This is how every number in the decimal system is expressed:
imejYaS.png


I had understood this topic earlier but as I was revising it today I have become confused somewhat.

I know that for the decimal system, we have 9 digits.
ub4RD54.png
Not quite -- there are 10 digits. Don't forget that 0 is a digit.
Bipolar Demon said:
I understand this:

- When we use a base between 1-10, we do not need to come up with new digits.

- in the illustration one above, if the base is x, the coefficient a can only be less than x? Am I correct?
Yes. Another base that is commonly used in computer programming, is base-16, or hexadecimal. In this base, there are 16 digits: 0, 1, 2, 3, 4, 5, 6, 7, 8, 9, A, B, C, D, E, and F.

Another base that is used on the web is base-64, which has 64 digits. I won't list these because I don't know them offhand.
Bipolar Demon said:
- I am confused as to how to divide numbers and change them to other bases, I seem to have forgotten basic division.

I understand 372 expressed in base 10 is 3*10*10 +7*10 + 2

But what I don't get is this, 372 is already expressed in base 10 when we divide it by 10?

I am really confused. All numbers are intuitively expressed in base 10 before we convert them to other bases..but division by the same base in the same form seems to give the same number.
?
If you divide 372 by 10, you get 37 plus a remainder of 2. That's not the same as 372.
Maybe what you're thinking is how you can "peel off" the digits by dividing by the base.
372 / 10 is 37 with remainder 2
37 /10 is 3 with remainder 7
3/10 is 0 with remainder 3
The remainders, in reverse order, are 3 ... 7... 2
 
  • Like
Likes Igael and Logical Dog
  • #6
Mark44 said:
Another base that is used on the web is base-64, which has 64 digits. I won't list these because I don't know them offhand.
A-Z, a-z, 0-9, '+' and '/'.
 
  • #8
mfb said:
Instead of 372, the book could have used 1+1+1+1+1+1+1+1+1+1+1+1+1+1+1+1+1+1+1+1+1+1+1+1+1+1+1+1+1+1+1+1+1+1+1+1+1+1+1+1+1+1+1+1+1+1+1+1+1+1+1+1+1+1+1+1+1+1+1+1+1+1+1+1.

Mark44 said:
With regard to '+' and '/' as the digits with indexes 62 and 63, not necessarily. See https://en.wikipedia.org/wiki/Base64#Variants_summary_table

mathman said:
The point is to illustrate what base 10 means - the expression as the sum of powers of 10.

Ok, thanks.
 

What is a base in mathematics?

A base in mathematics is a number or symbol used in a system of counting or measurement. In the decimal system, the base is 10, meaning there are 10 digits (0-9) used to represent all numbers.

How does the base affect the value of a number?

The base determines the place value of each digit in a number. For example, in the decimal system, the digit in the ones place has a value of 1, the digit in the tens place has a value of 10, and so on. Changing the base can change the value of a number, as the place value of each digit will be different.

What is the significance of the decimal system?

The decimal system is significant because it is the most commonly used system of counting and measurement in everyday life. It allows for easy and efficient calculations and is used in fields such as finance, science, and engineering.

Can other bases besides 10 be used in mathematics?

Yes, other bases can be used in mathematics. Some common bases include binary (base 2), octal (base 8), and hexadecimal (base 16). These bases are often used in computer science and programming.

How do you convert a number from one base to another?

To convert a number from one base to another, you can use the base conversion method. This involves dividing the original number by the base you want to convert to and then writing the remainder as the first digit. Repeat this process until the quotient is 0, and then read the digits in reverse order to get the converted number.

Similar threads

Replies
1
Views
757
Replies
4
Views
628
Replies
1
Views
1K
Replies
4
Views
673
Replies
7
Views
582
Replies
5
Views
2K
Replies
2
Views
2K
Replies
4
Views
939
Replies
20
Views
414
Replies
12
Views
2K
Back
Top