Close Menu
Core Bulletin

    Subscribe to Updates

    Get the latest creative news from FooBar about art, design and business.

    What's Hot

    What’s the fallout from a peace deal between Azerbaijan and Armenia? | Conflict

    August 10, 2025

    Companies aiding Trump’s immigration crackdown see ‘extraordinary’ revenues | Technology

    August 10, 2025

    AOL’s dial-up internet still exists, but not for much longer

    August 10, 2025
    Facebook X (Twitter) Instagram
    Core BulletinCore Bulletin
    Trending
    • What’s the fallout from a peace deal between Azerbaijan and Armenia? | Conflict
    • Companies aiding Trump’s immigration crackdown see ‘extraordinary’ revenues | Technology
    • AOL’s dial-up internet still exists, but not for much longer
    • Windblown review – haunting elegy for a felled 200-year-old natural wonder | Edinburgh festival 2025
    • ‘I was like a tornado going through men’s lives’: meet the people who can’t stop getting married | Marriage
    • Reality check for Liverpool after summer transfers and tragedy | Community Shield
    • Map: 6.1-Magnitude Earthquake Strikes Turkey
    • ‘A lot of money to be made’: Paris hit with spate of €1m handbag heists | Paris
    Sunday, August 10
    • Home
    • Business
    • Health
    • Lifestyle
    • Politics
    • Science
    • Sports
    • Travel
    • World
    • Technology
    • Entertainment
    Core Bulletin
    Home»Science»This Number System Beats Binary, But Most Computers Can’t Use It
    Science

    This Number System Beats Binary, But Most Computers Can’t Use It

    By Liam PorterJuly 18, 2025No Comments7 Mins Read
    Facebook Twitter Pinterest LinkedIn Tumblr WhatsApp Telegram Email
    This Number System Beats Binary, But Most Computers Can't Use It
    Share
    Facebook Twitter LinkedIn Pinterest Email

    The Babylonians used separate combinations of two symbols to represent every single number from 1 to 59. That sounds pretty confusing, doesn’t it? Our decimal system seems simple by comparison, with just 10 digits from 0 to 9 to express every number imaginable.

    Computers need only two digits: 0 and 1. But that binary system is not the only option for these machines. In the past, experts developed calculating machines that worked with three digits, a ternary system, that they hoped would allow for more efficient information processing. Yet today ternary computers are just hobby projects. How did this come to be?

    In principle, any number can be represented by any number system, whether the latter be base 10, base 60, base 3 or base 2. The math works perfectly in each case.


    On supporting science journalism

    If you’re enjoying this article, consider supporting our award-winning journalism by subscribing. By purchasing a subscription you are helping to ensure the future of impactful stories about the discoveries and ideas shaping our world today.


    In the usual decimal system, the number 17 (that is, a 1 followed by a 7) indicates that you have to calculate 10 + 7 × 1 (17 = 1 × 10 + 7 × 1).

    If you want to express 17 in base 3, it looks like this: 1710 = 1 × 32 + 2 × 31 + 2 × 30 = 1223 . (The lower numbers symbolize the base that is used.) In binary notation, the number is 1710 = 1 × 24 + 0 × 23 + 0 × 22 + 0 × 21 + 1 × 20 = 10,0012.

    Comparing these numbers, the familiar decimal notation is the most efficient by far: only two digits are needed to write down 17, which could be advantageous for a computer. On the other hand, the machine would have to work with a base of 10 different digits, which is problematic in practice.

    In conventional computers, the 0’s and 1’s are represented by the state of a particular piece of electrical hardware, such as a capacitor or transistor. Many of these devices simply translate a state—such as turning the transistor on or off—into either a 0 or 1 in a way that does not support the gradations or degrees that one would require for base 10 computing. Imagine designing a switch that had 10 different positions between the on and off state—this approach would get complicated quickly.

    For practical reasons, decimal notation can therefore be ruled out as a basis for a computer. There are too many digits. But is there a better number system for information processing than the binary system that is ubiquitous today?

    The Perfect Basis for Computers

    To answer that question, you have to find a compromise between the representation length l of a number n and the number b of digits used in a base. To do this, you can look at the product of the two quantities, b × l, and ask yourself for which base this is the smallest. The length of a number n represented by the base b corresponds approximately to the quotient log(n) / log(b). The question is therefore: For which base b is the product b × log(n) / log(b) smallest?

    If you remember your school days, you may still know how to calculate the optimum value of b: You derive the named product in terms of b, set it equal to zero and then solve the equation for b. Alternatively, you can draw the equation—that is y = b × [log(n) / log(b)]—on a piece of paper and identify the point on the curve that is closest to the x-axis. Whichever method you choose, assuming you don’t make a mistake, the optimum value for b = e ≈ 2.718, Euler’s number.

    An irrational result may seem confusing at first glance. How can you construct a number system for a base that is irrational? If you consider all numbers, including irrational values such as pi (π ), then a number system with base e may have advantages. But if you want to represent integers such as 1, 2 or 3 in this way, it quickly becomes complicated. That’s why it makes sense to round Euler’s number: so among the integers, 3 seems to be the optimal base to process information.

    Ternary System: In Perfect Balance

    A number system with three digits such as 0, 1 and 2 is known as a ternary system. This, however, can also be represented in what mathematicians consider a more balanced way using the three numbers –1, 0 and 1.

    In this “balanced ternary” system, the number 1710 looks like this:

    1710 = 1 × 33 + (–1) × 32 + 0 × 31 + (–1) × 30 = 1(–1)0(–1)

    Experts found the balanced ternary system particularly attractive because of its symmetry. For example, in the second volume of his book series The Art of Computer Programming, computer scientist Donald E. Knuth described it as “the prettiest number system of all.”

    The ternary system is not only inspiring in theory. In 1840 English inventor Thomas Fowler built a calculating machine that worked with the balanced ternary system, a mechanical computer that calculates with the numbers –1, 0 and 1. It used a different logic than today’s computers. If you combine two digits in the ternary system, you can not only get 0 or 1 (which are often equated with true or false in the binary system) but also a third result.

    Some calculations can be shortened as a result: for example, if you want to compare two numbers with each other, you can use the ternary system to find out in just one step whether one number is smaller, larger or equal to the other. In the binary system, on the other hand, two calculation steps are required: first you check whether they are different and then which one is larger or smaller.

    A Ternary Computer behind the Iron Curtain

    Fowler’s mechanical device was not the only computer to count to three. At the beginning of the cold war, the Soviet Union tried to develop its first electronic computers. Because it was very difficult to get hold of transistors (the electronic components on which conventional computers are based), the Soviets looked for other options to achieve their goal.

    In 1958 the first electronic ternary computer, called Setun, was built at Moscow State University. It used magnetic cores and diodes to process information in ternary digits, or “trits.” Over the years, around 50 Setun computers were produced.

    But ternary computers did not catch on, in part because of the hardware and existing conventions. It is difficult to code electronic components with three different states. With Setun, the researchers needed to use two magnetic components per trit—but had they worked in binary, they could have encoded twice as many bits with these components.

    All computers now work with transistors. These have two inputs through which either current can flow (encoding a 1) or not (a 0) and an output that either passes on current (a 1) or not (a 0). By cleverly connecting transistors together, logic gates can be built to perform all calculable operations.

    Many hobbyists develop ternary computers—but these are entirely for fun. Because the ternary machines and binary computers process completely different digits and use different logic, the two cannot be connected. That is somehow a pity, I think, even if a ternary computer could do no more than conventional devices.

    This article originally appeared in Spektrum der Wissenschaft and was reproduced with permission.

    [source_link

    beats Binary computers number system
    Share. Facebook Twitter Pinterest LinkedIn Tumblr Email
    Liam Porter
    • Website

    Liam Porter is a seasoned news writer at Core Bulletin, specializing in breaking news, technology, and business insights. With a background in investigative journalism, Liam brings clarity and depth to every piece he writes.

    Related Posts

    When, where and how to catch a glimpse

    August 10, 2025

    Tom Hanks pays tribute to Apollo 13 astronaut Jim Lovell | US news

    August 10, 2025

    Jim Lovell obituary | Space

    August 10, 2025

    Did Disease Defeat Napoleon? | Scientific American

    August 10, 2025

    Meteorite that hit home is older than Earth, scientists say

    August 10, 2025

    A huge stick insect has been discovered in Australia. Here’s why that’s important | Gwen Pearson

    August 10, 2025
    Add A Comment
    Leave A Reply Cancel Reply

    Medium Rectangle Ad
    Don't Miss
    World

    What’s the fallout from a peace deal between Azerbaijan and Armenia? | Conflict

    August 10, 2025

    The United States brokered the agreement, giving it leverage and business opportunities.There is a peace…

    Companies aiding Trump’s immigration crackdown see ‘extraordinary’ revenues | Technology

    August 10, 2025

    AOL’s dial-up internet still exists, but not for much longer

    August 10, 2025

    Windblown review – haunting elegy for a felled 200-year-old natural wonder | Edinburgh festival 2025

    August 10, 2025
    Our Picks

    Reform council confirms ‘patriotic’ flag policy

    July 4, 2025

    Trump references bankers with antisemitic slur in Iowa speech to mark megabill’s passage – as it happened | Donald Trump

    July 4, 2025

    West Indies v Australia: Tourists bowled out for 286 in Grenada Test

    July 4, 2025

    Beards may be dirtier than toilets – but all men should grow one | Polly Hudson

    July 4, 2025
    Stay In Touch
    • Facebook
    • Twitter
    • Pinterest
    • Instagram
    • YouTube
    • Vimeo

    Subscribe to Updates

    Medium Rectangle Ad
    About Us

    Welcome to Core Bulletin — your go-to source for reliable news, breaking stories, and thoughtful analysis covering a wide range of topics from around the world. Our mission is to inform, engage, and inspire our readers with accurate reporting and fresh perspectives.

    Our Picks

    What’s the fallout from a peace deal between Azerbaijan and Armenia? | Conflict

    August 10, 2025

    Companies aiding Trump’s immigration crackdown see ‘extraordinary’ revenues | Technology

    August 10, 2025
    Recent Posts
    • What’s the fallout from a peace deal between Azerbaijan and Armenia? | Conflict
    • Companies aiding Trump’s immigration crackdown see ‘extraordinary’ revenues | Technology
    • AOL’s dial-up internet still exists, but not for much longer
    • Windblown review – haunting elegy for a felled 200-year-old natural wonder | Edinburgh festival 2025
    Facebook X (Twitter) Instagram Pinterest
    • About Us
    • Disclaimer
    • Get In Touch
    • Privacy Policy
    • Terms and Conditions
    © 2025 Core Bulletin. All rights reserved.

    Type above and press Enter to search. Press Esc to cancel.