Abuse of Math Notation

By Xah Lee. Date: . Last updated: .

Differential dy/dx

the notation for differentiation is exemplary of the idiocy of math notations. Among which, the leibniz dy/dx is worst. Best is Euler's D[y]

math notation abuse leibniz differential 37716
math notation abuse leibniz differential 37716

Wikipedia Notation for differentiation

Let's look at dy/dx. Here's inconsistencies:

• is dy meant to be d * y, 2 variables? or, is d supposed to be an operator? Note that normaly, when 2 letter are adjacent such as xy, it means x * y.

• in dy/dx, sometimes the y is meant to be a variable, sometimes it's a function. The interpretation, is, “flexible”.

• now, look at the dx in dy/dx. If that y is a function, why isn't the x a function?

• now, the diversion sign / is used. Ok, that part we can take standard analysis to explain as actual division.

• now, sometimes partial derivative is written as δy/δx. Now, it's strange, when one of the symbol is replaced by another symbol, the meaning of the entire thing changed!!

so, basically, what am saying, is abuse of notation. But even if no abuse of notation happens, the traditional math notation is pretty much pictograph that takes conditioning to understand, lacking a grammar, comparable to natural languages such as English. Full of quirks and idioms.

Most mathematicians, don't have these problems, don't see these problems. But computer scientists do, or any programer. As soon as one tries writes to code it into program, lots problem arise.

one simple example is distinction of equality, definition, assignment, and identity, and notational equivalence! In traditional math, they are all just =. In general purpose programing languages, at least we have = for assignment and == for equality testing.


math notation abuse partial derivative 6743
math notation abuse partial derivative 6743

Here, the equation sign got fk'd.

here, it's used for equality or equivalence of notation, not meaning.

this is besides the usual abuse of identity, definition, and real equality.

it's from Wikipedia, 2017-10-08, at Partial derivative


math notation abuse 96983

look at that φ.

Normally, the notation for function's domain codomain takes the form of

f : A → B

we have 5 symbols, from left to right are

  1. symbol representing the function
  2. Colon as separator
  3. Symbol representing the domain (a set)
  4. right arrow as a separator between domain and codomain
  5. Symbol representing the codomain (a set)

But here, the domain is now M ⊃ Wᵢ

What is that? that's a relation between sets, not a set.

So, this relation, is the domain of f. WTF?

math notation is pictograph

am now think that the entire traditional math notation should be abolished. Absolutely. There's zero goodness in it.

traditional math notations, they work as pictographs. Or, as picture abbrev of words.

this includes dy/dx, x^2 sin^2, ∫ f dx, ∂ Δ ∇, matrix … ⋱, set builder {x | x ≻ 0, x ∈ ℤ}, f:ℝ²→ℝ³, all just pictographs

pictographs, such that each need to be memorized. Its somewhat composable, but meaning changes somewhat or drastically. no grammar.

why is traditional math notation still useful? because, pictograph is still often better than just words, e.g. emoji 😒 😤 🤢

but once you realize the nature of traditional math notation, i.e. pictographs, emoji, you want to throw it out. All of it.

actually, Math notation is not simple pictograph as emoji. It has larger shape. e.g. ∑ with bottom/top lines, matrix as array, big ∫ symbol, big fraction line, etc.

still, the nature of traditional math notation is basically somewhat structured n losely defined pictographs serving primarily as abbrev of words.

this is PART of the reason, that math notation as expression in computer languages is totally incompatible/hard.

math notation is pictograph 58648
math notation is pictograph. Note the the triple dots (aka ellipsis), and the index i. These are meta notations. That is, they are notations for the notation.
math notation is pictograph 28066
math notation is pictograph. Note the vertical lines. Its meaning changes with context.

laplace transform formula
a typical snippet of math. This one is from from Wikipedia Laplace transform

first of all, note the ambiguous use of the brackets. The curly bracket is used as the delimiter for formal parameter of a function and also as delimiter for formal parameter of a expression. The round bracket is also used as delimiter for formal parameter of a function.

then, notice that this definition tries to do several things:

in general, mathematicians use math notations like a diagram of pictographs, the same way children draw pictures to express meaning. The output thereof, is not grammatically coherent. We understand them by years of convention and context and guess-work.

better:

ℒ[f[x]][s] := ∫[ ⅇ^(-s*t) * f[x],{x,0,∞}]

differential equations, is the most shitty math subject. In other math branch, definitions are logical and standalone, however hard is that math subject.

Usually, definitions are just 1 or 2 sentences of English. If you are nonplussed, think hard, let it sit overnight, it'll come.

and, you realize that terse definition captures the essence of the notion, exactly.

In DE, it's near impossible to find a pure math definition, but the idiotic physicists notions meddle in, such as rate of change. Immediately followed by some examples of newton's from cosmos.

It is impossible to understand, unless you yield to the hand-waving of physicists.

And further, the massive abuse of notation. Witness, this is what Newton says is in ubiquitous:

dy/dx = f(x)

dy/dx = f(x,y)

x1 ∂y/∂x1 + x2 ∂y/∂x2 = y

the division sign got fk'd in the ass.

the y x f got multiple-personality disorder.

The ∂ impersonates d, comingles with x y.

and, the twain “differential” and “infinitesimal” swishes in and out passing walls.

The situation doesn't seem easy to mend. For example, this

dy/dx = f(x)

is easy to resolve. We write using Euler's anti-derivative notation

(D[f])(x) == f[x]

or Lagrange's notation

f'[x] == f[x]

treating differential as the logical notion of (anti-derivative) function.

But now, partial derivative:

dy/dx = f(x,y)

this is hard to resolve what it means logically.

how do we rewrite it as anti-derivative and without differential?

suppose we have

f[x,y] := x^3 * y^2 + x + z

we define

f1[x] := x^3 * y^2 + x + z

f2[y] := x^3 * y^2 + x + z

so that

f[x,y] == h[g[x]]

(D[f])(x)

wrong, and unfinished.

spend 2 hours writing this, but not done yet.