Definition: See Commensurable Frame. (The set of all integer bases that are perfect integer powers of the same underlying root).
Chapter 1: The Number Languages That Are Cousins (Elementary School Understanding)
Imagine different number systems are like different languages.
The language we use is Base-10 (Decimal).
The language computers use is Base-2 (Binary).
Some languages are completely different, like English and Japanese. But some languages are very similar, like Spanish and Portuguese. They are part of the same "language family."
A Base Family is a group of number languages that are all related because they grew from the same "root."
The Base-2 Family is a big one. It includes Base-2, Base-4, Base-8, Base-16, and so on. They are all related to the number 2.
The cool thing about a Base Family is that it's super easy to translate between them! Translating from Base-2 to Base-8 is like a Spanish speaker understanding Portuguese—the patterns are so similar that it's almost automatic. It's much, much easier than translating from Base-2 to Base-10, which is like translating from a completely different language.
Chapter 2: The "Power-Up" Bases (Middle School Understanding)
A Base Family is a set of number bases that are all powers of the same root number.
The most important family in all of technology is the Base-2 Family:
2¹ = 2 (Binary)
2² = 4 (Quaternary)
2³ = 8 (Octal)
2⁴ = 16 (Hexadecimal)
2⁶ = 64 (Base-64)
These bases are "related" in a very special, structural way. This relationship makes converting between them incredibly easy. You don't have to do any real multiplication or division; you just regroup the bits.
Example: Converting from Base-2 to Base-8
The root is 2. The new base is 8 = 2³. The exponent 3 is the magic number.
Take your binary number: 11010111₂
Group the bits into chunks of 3, starting from the right: 11 010 111
Translate each chunk into its base-8 digit:
111 is 7.
010 is 2.
011 (add a leading zero) is 3.
The number is 327 in base-8.
This simple regrouping only works because Base-2 and Base-8 are in the same family. The formal name for this special relationship is commensurability.
Chapter 3: The Commensurable Frame (High School Understanding)
The formal term for a Base Family is a Commensurable Frame.
Commensurable: This means "measurable by the same standard" or "compatible."
Frame: As in a "frame of reference."
Formal Definition: A Commensurable Frame, F_d, is the set of all integer bases b that are perfect integer powers of a single, non-power integer root d.
F_d = {d¹, d², d³, d⁴, ...}
The Dyadic Frame (D₂): This is the most important frame, F₂ = {2, 4, 8, 16, 32, 64, ...}. All bases in this frame are "compatible" with each other and are the foundation of digital computing.
The Ternary Frame (D₃): F₃ = {3, 9, 27, 81, ...}.
The Sextic Frame (D₆): F₆ = {6, 36, 216, ...}.
The Law of Structural Isomorphism:
This is the key law that governs these families. It states that converting a number's representation between any two bases within the same commensurable frame is a computationally trivial "regrouping" operation. This is because the "atoms of arithmetic" of the higher base are just small, integer groupings of the atoms of the lower base. For instance, one atom of base-8 (8¹) is exactly equivalent to three atoms of base-2 (2², 2¹, 2⁰). This structural compatibility means that the essential features of the Arithmetic Body are preserved across the entire frame.
Chapter 4: A Partition of ℤ⁺ by Radical (College Level)
A Base Family, or Commensurable Frame, is a set of bases that are structurally isomorphic. The deepest, most formal way to define this is by using the radical of an integer. The radical, rad(n), is the product of the distinct prime factors of n.
Two bases, b₁ and b₂, are in the same Commensurable Frame if and only if rad(b₁) = rad(b₂).
Example: rad(6) = 2×3. rad(12) = rad(2²×3) = 2×3. rad(18) = rad(2×3²) = 2×3. Therefore, 6, 12, and 18 are all members of the same commensurable frame, which could be called the {2,3}-adic frame. The simpler definition b=d^k is a specific subset of this more general concept.
Significance in Structural Dynamics:
This concept is central to the theory of Frame Incompatibility.
Within a Frame (e.g., Base-2 to Base-64): The transformation of the Arithmetic Body is simple. A b64-ALU is feasible because it is simply a physical implementation of this structural regrouping. The structural properties (like a normalized popcount) are largely conserved.
Between Frames (e.g., Base-2 to Base-10): The transformation is computationally complex and structurally "lossy." The rad(2) = {2} and rad(10) = {2, 5} are different. The introduction of the "foreign" prime factor 5 creates dissonance. Simple patterns in the binary body of a number are scrambled into complex, seemingly random patterns in its decimal body.
The treatise argues that much of the perceived "chaos" in number theory is not a property of the numbers themselves (the Soul), but an emergent artifact of viewing them through the lens of an incommensurable base (a clashing Body). The Base Family is the set of all "lenses" that provide the same fundamental picture of a number's structure.
Chapter 5: Worksheet - The Family of Bases
Part 1: The Number Language Cousins (Elementary Level)
Is Base-9 a "cousin" of Base-3? Why?
Is Base-5 a "cousin" of Base-10? Why or why not?
Part 2: The Power-Up Bases (Middle School Understanding)
The number 25 in decimal is 11001 in binary. Using the bit-regrouping trick, convert 11001₂ into base-4. (Hint: the magic number is 2, since 4=2²).
List the first four members of the Base-5 Family.
Part 3: Commensurable Frames (High School Level)
What is the formal name for a "Base Family"?
Which of the following bases are in the same Commensurable Frame as base-12?
{2, 3, 6, 18, 24, 36}
Explain why converting a number from base-8 to base-32 is a simple operation, according to the Law of Structural Isomorphism.
Part 4: The Radical Test (College Level)
Using the rad(n) function, prove that b₁=50 and b₂=20 are in the same Commensurable Frame.
What is the radical of the Dyadic Frame (D₂)?
Explain the statement: "Frame Incompatibility is the dissonance created by the interaction of systems with different radicals." Use the example of base-2 and base-3.