Skip to content

The + Command

Command Summary Command Syntax Calculator Compatibility Token Size
Returns the sum of two numbers. value1 + value2 This command works on all calculators. 1 byte

Press the [+] key to paste +.

The + Command

The + operator adds two numbers, variables, or expressions together. Order of operations dictates that it's calculated after * and /, and at the same time as -.

The + operator can also be used on lists and matrices. For the most part, it behaves in the intuitive way, distributing the operation over each element. However, adding a number to a matrix (in either order) behaves differently: the number is only added along the main diagonal of the matrix. For "normal" addition that applies to every element of the matrix, see .+.

:1+1
           2
:5→x
:2+3*x
           17
:[1,2;3,4]+100
           [101  2]
           [3  104]
  • - (subtract)
  • * (multiply)
  • / (divide)

See Also

Authors: KG