I have a use for a function that represents the least amount that must be added to an integer $x$ to make it a multiple of $y$.
I.e., if we call that function $\Delta$, then $\Delta(\frac{x}{y}) = y\lceil\frac{x}{y}\rceil-x$
If there isn't an accepted notation, should I use the Delta symbol or an abbreviation, such as "def" for "deficit" or "dif" for "difference"? And is it clearer to express it in the form $\Delta(\frac{x}{y})$ or $\Delta(x,y)$?
For my purpose $x$ and $y$ will always be mutually prime, and positive.