Much less than, Much greater than

The symbols ≪ and ≫ may be confusing the first time you see them, but they’re very handy.

The symbol ≪ means “much less than, and its counterpart ≫ means “much greater than”. Here’s a little table showing how to produce the symbols.

    |-------------------+---------+-------+------|
    |                   | Unicode | LaTeX | HTML |
    |-------------------+---------+-------+------|
    | Much less than    | U+226A  | \ll   | ≪ |
    | Much greater than | U+226B  | \gg   | ≫ |
    |-------------------+---------+-------+------|

Of course “much” depends on context. Is 5 much less than 7? It is if you’re describing the height of people in feet, but maybe not in the context of prices of hamburgers in dollars.

Sometimes you’ll see ≫, or more likely >> (two greater than symbols), as slang for “is much better than.” For example, someone might say “prototype >> powerpoint” to convey that a working prototype is much better than a PowerPoint pitch deck.

The symbols ≪ and ≫ can make people uncomfortable because they’re insider jargon. You have to know the context to understand how to interpret them, but they’re very handy if you are an insider. All jargon is like this.

Below are some examples of ≪ and ≫ in practice.

Square root approximation

You might see somewhere that for |b| ≪ a, the following approximation holds:

\sqrt{a + b} \approx \sqrt{a} + \frac{b}{2\sqrt{a}}

So when is |b| much less than a? That’s up to you. If, in your context, you decide that b/a is small, the approximation error will be an order of magnitude smaller.

Suppose you need to know √103 to a couple decimal places. Here a = 100 and b = 3. The ratio b/a = 0.03, and your error should be small relative to 0.03, so the approximation above should be good enough. Let’s see if that’s right.

The approximation above gives

√103 ≈ √100 + 3/2√100 = 10 + 3/20 = 10.15

and the exact value of √103 is 10.14889…, and so we did get two correct decimal places, and we nearly got three.

Sine approximation

Rather than saying a variable is “small,” we might say it is much less than 1. For example, you may see

sin θ ≈ θ

for |θ| ≪ 1. If θ is small, the error in the approximation above is very small.

A few years I wrote a 700-word blog post unpacking in detail what the previous sentence means. A lot of people memorize “You can replace sin θ with θ for small angles” without thoroughly understanding what this means. How small is small enough? The post explains how to know.

Stirling’s formula

Sometimes you see something like n ≫ 1 to indicate that n must be large. For example, Stirling’s formula for factorials says

n! \sim \sqrt{2\pi n} \left(\frac{n}{e} \right)^n

for n ≫ 1. For instance, if n = 10, the approximation above has an error of less than 1%.

Note that the approximation error above is small relative to the exact value. The relative error is small, not the absolute error. The error in the example is more than 30,000, but this value is small relative to 10! = 3,628,800.

Asymmetry between small and large

It’s often harder to tell from context when something is large than when it is small.

If an approximation holds for |x| ≪ 1, there’s often an implicit power series in the background, and the error is on the order of x². That’s the case in our square root approximation above. The sine approximation is even better, with error on the order of x³.

But if an approximation holds for x ≫ 1, there’s often an implicit asymptotic series in the background, and these are more subtle. You likely need more context to how large x needs to be for a particular application.

Related posts

2 thoughts on “Much less than, Much greater than

  1. Nice post! Thank you. So what “for x>>0” means is “for x enough bigger than 0” or “x > 0 + delta for big enough delta”. That’s a good and useful meaning. The meaning of “enough” needs to be vaguely inferred from context, and there’s no way to make the word more precise. Which is OK.

    I can think of another, precise, meaning we might use:
    “For x >> 0” means “For x> epsilon, for any epsilon you choose”. I think the technical wording there is “For x bounded away from zero”; is that correct?

    Thoughts?

  2. Eric Bennett Rasmusen

    There’s an inequality piece of notation I’ve wanted to find, but I don’t know if it exists: notation for “is not necessarily equal to”. We can’t use \neq or !=, because $x \neq y$ means x CANNOT equal y. In my field, economics, I’ve had situations like
    Theorem : x might equal y, but it doesn’t have to.

    What notation shoujld I use?

Comments are closed.