Decimal

Decimal Number System

Overview

The decimal number system, also known as base-10, is our everyday number system. It uses ten digits (0-9) to represent all numbers. Each position in a decimal number represents a power of 10. This system is natural for humans because we have ten fingers, but it’s not the most efficient for digital systems. Understanding decimal helps in comparing and converting between different number systems used in digital electronics.

Detailed Explanation

Position Values

Position:  ... 10³  10²  10¹  10⁰ . 10⁻¹ 10⁻²
                 1    0    0    0  .   0    0
Value:        1000  100   10    1  .  0.1  0.01

Properties

  1. Base (Radix)

    Base = 10
    Digits: 0,1,2,3,4,5,6,7,8,9
  2. Place Values

    Each position is 10 times the next position
    Example: 234₁₀
    = 2×10² + 3×10¹ + 4×10⁰
    = 200 + 30 + 4
  3. Arithmetic

    Addition:      Multiplication:
      23             23
    + 45           × 45
    ----           ----
      68            115
     920           1035

Decimal vs Other Bases

Decimal    Binary     Reason for Conversion
  10    = 1010    -> Digital circuits use binary
 100    = 1100100 -> More digits needed in binary
1000    = 1111101000 -> Binary gets longer

Common Applications

  1. Human Interface

    • Display readings
    • User input
    • Measurement systems
  2. Calculations

    • Basic arithmetic
    • Scientific notation
    • Financial calculations

Practice Problems

  1. Write expanded form:

    • 4,329
    • 10,001
    • 5,678.12
  2. Convert to scientific notation:

    • 1,234,000
    • 0.000234
    • 987,654,321

References

  • Fundamental Mathematics for Digital Electronics
  • Number System Mathematics by Thomas L. Floyd
  • Decimal Number System

← Back to Minor - Digital Electronics