As a physicist, I’ve learned that the presence of [Or rather , as it should actually be called.] in a formula usually spells trouble. It’s kind of annoying to write by hand, easy to forget, and it’s dimensionless, so you can’t easily check if you forgot to divide or multiply by it. Problems appear especially often when translating between theory and experiments. [I remember one of the very first lectures of my “Introduction to University Physics” course, where the lecturer wrote a long and complicated equation on the blackboard, and then went “Oh, and maybe there should be a here, I’m not exactly sure now. But you get the idea.” I was absolutely shocked. How could anyone do physics with such imprecision and carelessness?! Later of course I’ve learned that sometimes it’s OK to be off by an order of magnitude here or there. But I think this is where my frustration with started.]
Recently, I came up with a trick that can get rid of in many cases. It’s pretty simple, but it has some interesting implications. This is the trick: I just define a new derivative operator, like so: That’s all. You just take the derivative and then divide by . I call this derivative operator with the bar on the upper the reduced derivative. [I discuss this name and notation below.]
Now, why is this interesting? To start off, we’ll note that the unique function which satisfies is where (capital Theta) is defined as . [I have a few words about the choice of symbol below.] Let me show you why is actually a pretty nice function.
Probably the nicest thing about has to do with trigonometric functions. You may or may not know that sine and cosine can be defined using complex exponentials like this: but using , we can define new “trigonometric functions”: These are some names that I just came up with, but the “” stands for “unit” — these functions have the nice property that their period is instead of : I like this, because it kind of eliminates the need for radians: the in has the unit of “turns”. I think this is conceptually much simpler. [These -based unit-period trigonometric functions are also nicer to calculate on a computer. For example, MATLAB and Julia have functions sinpi(x)
and cospi(x)
for calculating sin(pi*x)
and cos(pi*x)
with better precision (they are exactly zero at integer values of x
), although they miss the mark by using instead of . I’m no floating point expert, but I feel that in addition to precision, using such functions should be more efficient as well. The range can be represented exactly in binary (and range reduction amounts to just discarding the integer part!), so it’s much simpler to deal with than . This point is also brought up by Casey Muratori. It’s also interesting to note that dealing with radians is still a topic of research.] For the physicists out there, this is pretty cool because is a periodic function with frequency , without the need for angular frequency. Instead of mushing into the single symbol , we meld into the trig function. Yes, this is just an alternative way of sweeping under the rug, but I claim it makes it easier to avoid mistakes.
These unit trigonometric functions satisfy similar differential equations as their more well-known siblings, except in terms of the funny reduced derivative operator we defined above: Nice!
You might be aware that , and trigonometric functions are pretty widespread in math. Because of this, there are actually quite many situations where pops up and makes that pesky go away. Here are some examples I came up with off the top of my head and with a quick skim through Wikipedia:
The Fourier transform of a function :
The inverse Fourier transform: Note how the forward and inverse transforms are symmetric without any prefactors.
Dirac delta function:
Kronecker delta:
Euler’s identity:
Roots of unity: where .
Square of the nome: where is the half-period ratio of an elliptic function.
Gaussian-like integrals: [This result is easy to see from , by substituting .] or more generally, I admit that this may not be so useful for probability theory: the distribution with probability density function has a standard deviation of instead of , so the ugliness has just been pushed elsewhere.
Apart from , it’s interesting to see whether the reduced derivative could simplify some equations. I think it makes sense to try to rewrite differential equations in terms of whenever we expect some sort of periodic solution. For example, the equation of a mass attached to a damped harmonic oscillator is [This can be obtained by dividing Newton’s second law through by .] where is the oscillation frequency, is the damping ratio, is the spring constant and is the damping coefficient. This has the solution which is exactly the same as the regular solution, except that we have linear frequency instead of angular frequency , and the phase offset is in units of turns. [I actually like how the time constant of the decay is defined in terms of the linear frequency . With this definition, if the oscillation has decayed for “one time constant”, the amplitude is of the original. Normally, at least I use “three time constants” as some sort of cutoff for “the oscillation has mostly decayed”, because , but that’s still pretty far from zero.] Admittedly, shows up in the definition of , [But notably not in that of !] so we haven’t completely gotten rid of it. [Maybe it could be hidden by defining an “angular spring constant” or something. Or, could we interpret as the circumference of a circle with radius ? I’ll concede that I’m grasping at straws here.]
Similarly, I dare to propose writing the Schrödinger equation like this: Note the use of the regular (which is really the fundmnental constant of nature) instead of . With this equation, some basic results of quantum mechanics can be rewritten without and using just plain , and sure enough, , and show up in there. These are a bit too much to include here, so I’ll leave that as an exercise to the reader for a separate blog post.
This notation could be abused even further by denoting , which can then simplify some integral formulae, such as the Gauss-Bonnet theorem: or Cauchy’s integral formula: But this is perhaps stretching it a bit. I’m a meager experimental physicist who never even took a course on measure theory, so maybe this is total nonsense.
So that’s quite a few occurrences of in the wild. I hope that I’ve convinced you at least a little bit that treating as a single symbol might make sense. But is there some deeper meaning to this? Should we declare as the new circle constant, and throw and the teachings of The Tau Manifesto in the garbage? Or is this all just sweeping under the rug to make some formulae superficially prettier?
Physicists use angular frequency quite often, because is genuinely annoying to deal with. It’s a major pain when numerical simulations don’t quite give the expected results, and you have to hunt for a possibly missing factor of or or (shudder). I do believe that using , , and really presents a new concept that lies somewhere between angular and linear frequency, and I think it can reduce mistakes quite a lot. It could be argued that remembering to put the bar on is as much mental effort as remembering to keep around, but I say this is not the case: differentials appear less often than , and they are more of a special object, so they are handled with more care by default. [Except when physicists treat as a fraction.] Overall, I’ve had some moderate success with simplifying code by using turns instead of radians or degrees.
I’m not entirely sure about the intuitive meaning of “taking the derivative and dividing by ”. Is there some sort of fundamental connection to periodic functions? Maybe it helps with some dimensional analysis of functions on a circle, if we give angles units like in this paper. But I have yet to do any serious math using the reduced derivative, so this needs some more fleshing out. Originally, I only thought about , , and , and the reduced derivative came up as a post-hoc argument against and being fundamental functions that satisfy and .
One thing I can say for sure is that this trick doesn’t eliminate from everywhere for all eternity. You could express the circumference of a circle as , but I don’t expect this to catch on. Euler’s formula is also a fairly advanced concept, so the right place for might be an undergraduate physics or complex analysis course rather than in every textbook. But I’m pretty sure that working with just fractions of a turn instead of degrees makes trigonometry easier to grasp even at the high-school level, as The Tau Manifesto argues.
In general, I think that even though this kind of fiddling with notation may seem superficial, it’s actually important. Not having to worry about reduces friction, so that you can focus on the problem you are trying to solve. If you reduce friction enough, even by small steps like this one, some untractable problems can become tractable.
So, even if it’s a bit unclear if there really is something to this idea, for now I plan to try and see if makes my life easier. I encourage you to do the same. If you find something interesting while doing so, feel free to drop me an email!
I could not really find any references online or in the literature discussing a concept like the reduced derivative I’ve introduced here. Searching for “derivative divided by 2pi” brings up mostly high-school level homework help of course, but that’s basically all I could find with my search-engine-fu. As far as I can tell, as a single, explicit constant worth considering has not been discussed anywhere either. The closest I could find was Gelfond’s constant, which is . For example, OEIS describes as just “Gelfond’s constant squared”. If you know of any reference where this is discussed before, please let me know! I’d hate to take undeserved credit.
I’m not sure what “the derivative divided by ” should really be called. I picked “reduced derivative”, like how the Planck constant divided by is called the reduced Planck constant. This is also the inspiration for the notation (\text{\dj}
in ), which I propose to be pronounced as “d-bar”. [I put the bar only on the in the numerator of , so that the division works out if you think of it as “”. Of course someone who is more versed in differentials (or is a mathematician or something) may object to this.] Of course, “reduced derivative” already means something, so maybe it’s not the best possible name.
Other options I came up with are “angular derivative” or “rotational derivative”, but I’m not so happy with these either. Angular derivative in particular seems already to be a thing in complex analysis, see for example here, here [PDF], or here. Suggestions are welcome!
I chose as the symbol for , because it doesn’t seem to be that widely used in math and physics (I checked here, here, and here), it’s kind of like a circle, which hints at rotations and angles, and also kind of resembles , which is a reminder of its definition. Apart from these extremely compelling aesthetic arguments, I should note that might be easy to confuse with the lowercase or in handwriting, so I’m also open to suggestions for the symbol.
How do the basic rules of differentiation work with the reduced derivative? In short: they work just fine. Just by using the definition, the product rule is and the chain rule is where the last two rows are to show that you are free to choose which derivative you put the bar on. I suppose the desirable choice will depend on the specific functions and .
Note that the product rule doesn’t produce very pretty results if one of the functions is not defined in terms of , for example the reduced derivative of (or regular for that matter) has an extra factor of in the term.
In most of the examples I showed, actually appears in the form of . So why not define and get even cleaner formulae? The problem is of course that , so for any . But why does work then? This was a little bit surprising to me initially, but the answer is that in general, for complex and . The correct formula is instead [See for example here.], so that but where , so we get . Note also that in general is multi-valued for complex numbers.
As I mentioned, there doesn’t seem to be much discussion on treating as a single symbol, so these are mostly about vs .
Thanks to Jami Kinnunen, Elsa Mannila, Viljami Pirttimaa, Aashish Sah, Lauri Seppäläinen, and Vasilii Vadimov for comments and feedback.