3

I hope this question is appropriate here - if it isn't let me know and I will remove it.

I am wondering if there is a verb for the following operation: given a set of non-negative numbers, I take their max and then subtract the numbers from the max. This essentially "flips" the order of the numbers and makes the (previous) max zero.

I would like to say something like "I flipped the numbers" or describe it very shortly.

The context is that I am describing various transformations applied to a data set, e.g. "I standardized the data so that $\mu = 5$ and $\sigma = 1$ then log-transformed the data, and finally flipped it."

Any ideas?

JKnecht
  • 6,543
Bitwise
  • 1,216

1 Answers1

1

Let $(x_1,x_2,\ldots, x_n)$ be the given list of numbers, and let $s:=\max_{1\leq k\leq n} x_k$. Then I'd call $d_k:=s-x_k\geq0$ the defect of $x_k$, so that $(d_1,\ldots,d_n)$ would be the list of defects of the given data.

(You can replace the word "list" by "set" for a less stringent denomination of terms.)