Difference between revisions of "Number Systems"

From alpha
Jump to navigation Jump to search
(New Page Created)
 
(Content added)
Line 9: Line 9:
* Its position in the number
* Its position in the number
* The base of the number system
* The base of the number system
== Types of Number Systems ==
There are various types of number systems in mathematics. The four most common number system types are:
# Decimal number system (Base-10)
# Binary number system (Base-2)
# Octal number system (Base-8)
# Hexadecimal number system (Base-16)
=== Decimal Number System (Base 10 Number System) ===
The decimal number system has a base of <math>10</math> because it uses ten digits from <math>0</math> to <math>9</math>. In the decimal number system, the positions successive to the left of the decimal point indicates units, tens, hundreds, thousands and so on. This system is expressed in decimal numbers. Every position shows a particular power of the base (10).
'''Example of Decimal Number System:'''
The decimal number <math>1234</math> consists of the digit <math>4</math> in the units position, <math>3</math> in the tens place, <math>2</math> in the hundreds position, and <math>1</math> in the thousands place whose value can be written as:
<math>(1\times10^3)+(2\times10^2)+(3\times10^1)+(4\times10^0)</math>
<math>(1\times1000)+(2\times100)+(3\times10)+(4\times1)</math>
<math>(1000 + 200 + 30 +4)</math>
<math>1234</math>
=== Binary Number System (Base 2 Number System) ===
The base <math>2</math> number system is also known as the Binary number system wherein, only two binary digits exist, i.e., <math>0</math> and <math>1</math>. The figures described under this system are known as binary numbers which are the combination of <math>0</math> and <math>1</math>. For example, 110101 is a binary number.
'''Example of Binary Number System:'''
Write <math>(14)_{10}</math> as a binary number.
'''Solution:'''
{| class="wikitable"
|+
|<math>2</math>
|<math>14</math>
|
|
|-
|<math>2</math>
|<math>7</math>
|<math>0</math>
|<math>\uparrow</math>
|-
|<math>2</math>
|<math>3</math>
|<math>1</math>
|<math>\uparrow</math>
|-
|
|<math>1</math>
|<math>1</math>
|<math>\uparrow</math>
|-
|
|<math>\rightarrow</math>
|<math>\rightarrow</math>
|
|}
'''Steps''' :
Divide the number <math>14</math> by <math>2</math> , quotient is <math>7</math> and remainder is <math>0</math>
Divide the quotient <math>7</math> by <math>2</math> , quotient is <math>3</math> and remainder is <math>1</math>
Divide the quotient <math>3</math> by <math>2</math> , quotient is <math>1</math> and remainder is <math>1</math>
Write the numbers as mentioned by the direction of the arrows above  - <math>1110</math>
<math>(14)_{10} = (1110)_{2}</math>

Revision as of 17:13, 21 April 2024

The number system is the system of naming or representing numbers. Number is a mathematical value that helps to count or measure objects and it helps in performing various mathematical calculations.

Definition

A number system is defined as a system of writing to express numbers. It is the mathematical notation for representing numbers of a given set by using digits or other symbols in a consistent manner. It provides a unique representation of every number and represents the arithmetic and algebraic structure of the figures. It also allows us to operate arithmetic operations like addition, subtraction, multiplication and division.

The value of any digit in a number can be determined by:

  • The digit
  • Its position in the number
  • The base of the number system

Types of Number Systems

There are various types of number systems in mathematics. The four most common number system types are:

  1. Decimal number system (Base-10)
  2. Binary number system (Base-2)
  3. Octal number system (Base-8)
  4. Hexadecimal number system (Base-16)

Decimal Number System (Base 10 Number System)

The decimal number system has a base of because it uses ten digits from to . In the decimal number system, the positions successive to the left of the decimal point indicates units, tens, hundreds, thousands and so on. This system is expressed in decimal numbers. Every position shows a particular power of the base (10).

Example of Decimal Number System:

The decimal number consists of the digit in the units position, in the tens place, in the hundreds position, and in the thousands place whose value can be written as:

Binary Number System (Base 2 Number System)

The base number system is also known as the Binary number system wherein, only two binary digits exist, i.e., and . The figures described under this system are known as binary numbers which are the combination of and . For example, 110101 is a binary number.

Example of Binary Number System:

Write as a binary number.

Solution:

Steps :

Divide the number by , quotient is and remainder is

Divide the quotient by , quotient is and remainder is

Divide the quotient by , quotient is and remainder is

Write the numbers as mentioned by the direction of the arrows above -