Logo Neurocoda

Number System Expansion: The Clue of Operation Non-Closure

Neurocoda

In mathematics, the number system has undergone an expansion process from simple to complex. Due to practical needs and the non-closure of operations, mathematical problems arose, leading to the expansion of the number system.

graph TD
    %% === Main Number System Evolution ===
    A(Natural Numbers) -->|"Subtraction not closed"| B(Integers)
    B -->|"Division not closed"| C(Rational Numbers)
    C -->|"Root extraction not closed"| D(Real Numbers)
    D -->|"Negative root extraction not closed"| E(Complex Numbers)

    %% Natural numbers closed under addition and multiplication
    A -.-> M[Closed under addition, multiplication]

    %% Integer subclasses
    B --> L[Positive integers, zero, negative integers]

    %% Rational number subclasses
    C --> F[Fraction form]
    C --> G[Finite decimals]
    C --> H[Infinite repeating decimals]

    %% Real number subclasses
    D --> I[Irrational numbers]

    %% Complex number subclasses
    E --> J[Real part]
    E --> K[Imaginary part]

    %% Style definitions (optional)
    classDef mainNode fill:#FCE7F3,stroke:#DB2777,stroke-width:2px,color:#831843
    classDef subNode fill:#FDF4FF,stroke:#9D174D,stroke-width:1px,color:#86198F
    classDef noteNode fill:#FFF7ED,stroke:#F97316,stroke-dasharray: 5 5,color:#C2410C

    %% Assign styles to specific nodes
    class A,B,C,D,E mainNode
    class L,F,G,H,I,J,K subNode
    class M noteNode
  • Natural numbers N\mathbb{N}: closed under addition and multiplication, but not under subtraction and division
  • Integers Z\mathbb{Z}: closed under addition, subtraction, and multiplication, but not under division
  • Rational numbers Q\mathbb{Q}: closed under addition, subtraction, multiplication, and division (except by zero), but not under root extraction
  • Real numbers R\mathbb{R}: include irrational numbers, can handle most radical operations (non-negative root extraction), but negative root extraction still has no solution
  • Complex numbers C\mathbb{C}: introduce ii, completely solve the problem of negative root extraction, and remain closed under more advanced operations like addition, subtraction, multiplication, and division

Starting from natural numbers, initially used for counting, to express “how much less” or “how much loss,” we incorporate negative numbers to form integers;
Then, to make “division” solvable, we incorporate fractions to form rational numbers;
Next, to accommodate all possible infinite decimals on the number line, we add irrational numbers to form real numbers;
Finally, to handle negative root extraction, we add the imaginary unit ii to form complex numbers.

Operational Closure

Operational closure is a fundamental and important concept in algebraic systems. It describes whether a set remains closed under a specific operation, i.e., whether the result of an operation on elements of the set still belongs to the set. Specifically, if performing a certain operation on elements of a set yields a result that is still in the set, then the set is said to be closed under that operation.

Mathematical Definition

Let SS be a non-empty set and \circ be a binary operation defined on SS. If the following holds:

a,bS,abS\forall a,b \in S,\quad a \circ b \in S

then the set SS is said to be closed under the operation \circ. Otherwise, the operation is said to be not closed.

Natural Numbers N\mathbb{N}

Which numbers are included?
Usually refers to

N={1,2,3,},\mathbb{N} = \{\,1, 2, 3, \dots\},

sometimes also includes 00, written as {0,1,2,}\{\,0, 1, 2, \dots\}. Regardless of whether 00 is included, natural numbers do not include negative numbers or decimals.

Typical subclasses / notation

  • If including 00: commonly N0\mathbb{N}_0 or N{0}\mathbb{N}\cup\{0\}
  • If not including 00: directly write N\mathbb{N}

Operations and closure

  • Addition, multiplication are closed
    • Example: 3+5=83 + 5 = 8 is still in N\mathbb{N}, 3×5=153 \times 5 = 15 is also in N\mathbb{N}
  • Subtraction, division are not closed
    • Example: 35=23 - 5 = -2 is not in N\mathbb{N}, 1÷2=0.51 \div 2 = 0.5 is also not in N\mathbb{N}

Since it is impossible to express “a few less items,” “owe some money,” or “half a cake” within natural numbers, we introduced negative numbers (and zero), forming integers.

Integers Z\mathbb{Z}

Which numbers are included?

Z={,2,1,0,1,2,}.\mathbb{Z} = \{\dots, -2, -1, 0, 1, 2, \dots\}.

Include all positive parts of natural numbers, zero, and negative numbers, making it convenient to handle problems about “how much excess/deficit.”

Typical subclasses / notation

  • Positive integers: {1,2,3,}\{1, 2, 3, \dots\}
  • Negative integers: {,3,2,1}\{\dots, -3, -2, -1\}
  • Zero: {0}\{0\}

Operations and closure

  • Addition, subtraction, multiplication are closed
    • Example: (3)+1=2(-3) + 1 = -2, (3)1=4(-3) - 1 = -4, (2)×3=6(-2) \times 3 = -6 are all integers
  • Division is not closed
    • Example: 1÷2=0.51 \div 2 = 0.5 is not in Z\mathbb{Z}

Since integers are still not closed under division (cannot represent fractions like 0.50.5), we further introduce fractions, expanding to rational numbers.

Rational Numbers Q\mathbb{Q}

Which numbers are included?

Q={pq | p,qZ,q0}.\mathbb{Q} = \left\{\frac{p}{q}\ \middle|\ p,q \in \mathbb{Z},\,q \neq 0\right\}.

All numbers that can be expressed as fractions, i.e., numerator and denominator are integers and denominator is non-zero.

Typical forms / subclasses

  • Fraction form: e.g., 34\tfrac{3}{4}, 72\tfrac{-7}{2}, 13\tfrac{1}{3}
  • Finite decimals: e.g., 1.25,0.51.25, 0.5 (can be seen as 54\tfrac{5}{4}, 12\tfrac12)
  • Infinite repeating decimals: e.g., 0.3=130.\overline{3} = \tfrac13, 1.16=761.1\overline{6} = \tfrac76

Operations and closure

  • Addition, subtraction, multiplication, division (divisor not 00) are closed
  • Root extraction is not closed
    • Example: 2\sqrt{2} is not any fraction, so it is not in Q\mathbb{Q}

Thus, to accommodate irrational numbers like 2,3,π,e\sqrt{2}, \sqrt{3}, \pi, e on the number line, people further expanded to real numbers, filling the number line.

Real Numbers R\mathbb{R}

Which numbers are included?

R=Q  {Irrational numbers}.\mathbb{R} = \mathbb{Q} \ \cup \ \{\text{Irrational numbers}\}.

Combine all rational numbers and irrational numbers (decimals that are non-terminating and non-repeating), thus “occupying” all points on the number line.

Typical subclasses / notation

  • Irrational numbers: e.g., 2\sqrt{2}, 3\sqrt{3}, π\pi, ee
  • Rational numbers: the fractions mentioned earlier and their equivalent decimal forms

Operations and closure

  • Addition, subtraction, multiplication, division (divisor not 00) are closed
  • Root extraction (for non-negative numbers) is closed
    • Example: 2,3\sqrt{2}, \sqrt{3}, etc., are all in R\mathbb{R}
  • Even roots of negative numbers (e.g., 1\sqrt{-1}) are still not within the real numbers

Therefore, to handle problems like 1\sqrt{-1}, we introduce imaginary numbers, entering the realm of complex numbers.

Complex Numbers C\mathbb{C}

Which numbers are included?

C={a+bia,bR,i2=1}.\mathbb{C} = \{\,a + b\,i \mid a,b \in \mathbb{R},\,i^2=-1\}.

Here, aa is called the real part, and bb is called the imaginary part. If b=0b=0, it degenerates to a pure real number; if a=0a=0 and b0b \neq 0, it is a pure imaginary number.

Operations and closure

  • Addition, subtraction, multiplication, division are all closed
    • Example: (a+bi)+(c+di)=(a+c)+(b+d)i(a+bi)+(c+di)=(a+c)+(b+d)i
    • Example: (a+bi)×(c+di)=(acbd)+(ad+bc)i(a+bi)\times(c+di)=(ac-bd)+(ad+bc)i
  • Negative root extraction: exists within the complex numbers
    • Example: 1=i\sqrt{-1} = i, 4=2i\sqrt{-4}=2i, etc.

Complex numbers are very important in higher mathematics, physics, and engineering. For example, impedance in circuit analysis is often written as R+jXR + jX (engineering uses jj to represent 1\sqrt{-1}), which is a typical application of complex numbers.

At a higher level, there are also quaternions, hypercomplex numbers, surreals, and various abstract algebraic structures, but the essential idea never deviates from the starting point of “providing a place for operations that were not closed.” It is this “needs-driven” main thread that has allowed the family of numbers to evolve from the initial natural numbers to today’s rich and colorful mathematical world.

Title: Number System Expansion: The Clue of Operation Non-Closure Author: Neurocoda Created at: 2026-07-03 12:45:37 Link: https://neurocoda.com/zh/posts/number-system-expansion-the-clue-of-operation-non-closure-en/ License: This work is licensed under CC BY-ND 4.0.

Comments