How Percentage Works in Calculators?


5 min, 958 words

calculator-percentage

Motivation?

How Percentage Works in Calculators

Percentages are a key feature of calculators, but the way they work may vary depending on the implementation. Let's break down how calculators handle percentages and the logic behind them.

1. Basic Percentage Calculation (X%)

On most calculators:

  • Typing 200 × 50 % will display 100 as the result.

When you type a number followed by the percentage symbol (%), the calculator interprets it as a fraction of 100. For example:

  • 50% is equivalent to 0.5.

This is especially useful for quick computations. For example:

50% of 200 = 200 × 0.5 = 100

2. Percentage Increase/Decrease

When calculating a percentage increase or decrease, calculators help apply the following formulas:

  • Increase: Original Value + (Percentage × Original Value)
  • Decrease: Original Value - (Percentage × Original Value)

For example typing 150 + 20 % on most calculators will calculate a 20% increase on 150:

150 + (150 × 0.2) = 180

Others may require you to first multiply 150 by 1.2 for the same effect.

Implementation

We will look at the implementation of this operator in an open-source GNOME calculator.

GNOME Calculator

The GNOME calculator documentation describes how percentages are handled:

Percentages are calculated using the % symbol.

When added or subtracted the percentage symbol resolves to one percent of the value being added or subtracted from. The following equation calculates the price of a $140 item with 15% tax (140 + (15÷100)×140).

140 + 15%

In all other cases the percentage symbol resolves to a fraction out of 100. The following equation calculates one quarter of 80 apples ((25÷100)×80).

25% × 80

GNOME Calculator (or any advanced calculator) is based on a parser and evaluator system. When you input an expression like 3 + 5 * 2 into a calculator:

  1. Lexer breaks it into tokens: 3, +, 5, *, 2.
  2. Parser processes those tokens into a structured format (like an AST) while respecting precedence and associativity.
  3. Evaluator computes the final result using the structured format.

Let's look at how this is implemented for the percetage operation:

Lexer and Parser

The percentage operation is parsed differently depending on its context—whether it appears standalone or in conjunction with an addition or subtraction operator.

else if (token.type == LexerTokenType.PERCENTAGE)
{
    insert_into_tree_unary (new PercentNode (this, token, make_precedence_t (token.type), get_associativity (token)));

    if (!expression_2 ())
        return false;

    return true;
}

From the source code we can see that in case of addition, the parser also checks for the existence of % operator in the operands. If % has lower precedence, it is treated as part of the addition; otherwise, it is handled as a separate percentage operation. The parser uses lookahead and rollback mechanisms to make this determination while ensuring the correct precedence and associativity.

if (token.type == LexerTokenType.ADD)
{
    var node = new AddNode (this, token, make_precedence_t (token.type), get_associativity (token));
    insert_into_tree (node);

    if (!expression_1 ())
        return false;

    token = lexer.get_next_token ();
    if (token.type == LexerTokenType.PERCENTAGE)
    {
        //FIXME: This condition needs to be verified for all cases.. :(
        if (node.right.precedence > Precedence.PERCENTAGE)
        {
            var next_token  = lexer.get_next_token ();
            lexer.roll_back ();

            if (next_token.text != "" && get_precedence (next_token.type) < Precedence.PERCENTAGE)
            {
                lexer.roll_back ();
                if (!expression_2 ())
                    return true;
            }

            node.precedence = make_precedence_p (Precedence.PERCENTAGE);
            node.do_percentage = true;
            return true;
        }
        else
        {
            /* Assume '%' to be part of 'expression PERCENTAGE' statement. */
            lexer.roll_back ();
            if (!expression_2 ())
                return true;
        }
    }
}

Evaluation

  • Standalone Percentage Operator

When a percentage is used standalone (e.g., 50%), it typically represents the value divided by 100:

50% → 50 / 100 → 0.5

public class PercentNode : RNode
{
    public PercentNode (Parser parser, LexerToken? token, uint precedence, Associativity associativity)
    {
        base (parser, token, precedence, associativity);
    }

    public override Number? solve_r (Number r)
    {
        return r.divide_integer (100);
    }
}
  • Addition Operator

When percentages are combined with + or -, they usually operate on the preceding value:

100 + 50% → 100 + (100 * 50 / 100) → 100 + 50 → 150

public class AddNode : LRNode
{
    public bool do_percentage = false;

    public AddNode (Parser parser, LexerToken? token, uint precedence, Associativity associativity)
    {
        base (parser, token, precedence, associativity);
    }

    public override Number solve_lr (Number l, Number r)
    {
        if (do_percentage)
        {
            var per = r.add (new Number.integer (100));
            per = per.divide_integer (100);
            return l.multiply (per);
        }
        else
            return l.add (r);
    }
}

Original Question

Now coming back to the original question:

1% - 1%

The evaluation depends on the calculator's implementation of precedence and associativity. However, in most calculators, it is typically evaluated as follows:

1% - 1% = 0.01 - 1%
        = 0.01 - (0.01 * 1 / 100)
        = 0.01 - 0.0001 = 0.0099

Conclusion

Calculators handle percentages intuitively for most simple operations, but when working with more complex scenarios—like increases followed by discounts—understanding the underlying math becomes essential. Familiarizing yourself with these patterns will allow you to leverage the full potential of percentages in everyday calculations!

References

  1. Using a Calculator: How to Do Percentages for School & Work
  2. Percentages
  3. GNOME/gnome-calculator

Stay Tuned

Hope you enjoyed reading this. Stay tuned for more cool stuff coming your way!