Running total
   HOME

TheInfoList



OR:

{{Unreferenced, date=June 2019, bot=noref (GreenC bot) A running total or rolling total is the
summation In mathematics, summation is the addition of a sequence of any kind of numbers, called ''addends'' or ''summands''; the result is their ''sum'' or ''total''. Beside numbers, other types of values can be summed as well: functions, vectors, mat ...
of a sequence of numbers which is updated each time a new number is added to the sequence, by adding the value of the new number to the previous running total. Another term for it is
partial sum In mathematics, a series is, roughly speaking, a description of the operation of adding infinitely many quantities, one after the other, to a given starting quantity. The study of series is a major part of calculus and its generalization, math ...
. The purposes of a running total are twofold. First, it allows the total to be stated at any point in time without having to sum the entire sequence each time. Second, it can save having to record the sequence itself, if the particular numbers are not individually important.


Method

Consider the
sequence In mathematics, a sequence is an enumerated collection of objects in which repetitions are allowed and order matters. Like a set, it contains members (also called ''elements'', or ''terms''). The number of elements (possibly infinite) is calle ...
<   5   8   3   2   >. What is the total of this sequence? Answer: 5 + 8 + 3 + 2 = 18. This is arrived at by simple summation of the sequence. Now we insert the number 6 at the end of the sequence to get <   5   8   3   2   6   >. What is the total of that sequence? Answer: 5 + 8 + 3 + 2 + 6 = 24. This is arrived at by simple summation of the sequence. ''But'' if we regarded 18 as the running total, we need only add 6 to 18 to get 24. So, 18 was, and 24 now is, the running total. In fact, we would not even need to know the sequence at all, but simply add 6 to 18 to get the new running total; as each new number is added, we get a new running total. The same method will also work with subtraction, but in that case it is not strictly speaking a total (which implies summation) but a running difference; not to be confused with a
delta Delta commonly refers to: * Delta (letter) (Δ or δ), a letter of the Greek alphabet * River delta, at a river mouth * D ( NATO phonetic alphabet: "Delta") * Delta Air Lines, US * Delta variant of SARS-CoV-2 that causes COVID-19 Delta may also ...
. This is used, for example, when scoring the game of
darts Darts or dart-throwing is a competitive sport in which two or more players bare-handedly throw small projectile point, sharp-pointed projectile, missiles known as dart (missile), darts at a round shooting target, target known as a #Dartboard, dar ...
. Similarly one can multiply instead of add to get the running product.


Use

While this concept is very simple, it is extremely common in everyday use. For example, most
cash register A cash register, sometimes called a till or automated money handling system, is a mechanical or electronic device for registering and calculating transactions at a point of sale. It is usually attached to a drawer for storing cash and other v ...
s display a running total of the purchases so far rung in. By the end of the transaction this will, of course, be the total of all the goods. Similarly, the machine may keep a running total of all transactions made, so that at any point in time the total can be checked against the amount in the till, even though the machine has no memory of past transactions. Typically many games of all kinds use running totals for scoring; the actual values of past events in the sequence are not important, only the current score, that is to say, the running total. The
central processing unit A central processing unit (CPU), also called a central processor, main processor or just processor, is the electronic circuitry that executes instructions comprising a computer program. The CPU performs basic arithmetic, logic, controlling, an ...
of computers for many years had a component called the accumulator which, essentially, kept a running total (it "accumulated" the results of individual calculations). This term is largely obsolete with more modern computers. A betting accumulator is the running product of the outcomes of several bets in sequence.


See also

* Running average *
Prefix sum In computer science, the prefix sum, cumulative sum, inclusive scan, or simply scan of a sequence of numbers is a second sequence of numbers , the sums of prefixes ( running totals) of the input sequence: : : : :... For instance, the prefix sums ...
Operations on numbers