Help:Calculation

From Wikipedia, the free encyclopedia
The accuracy and format of numeric results varies with the server; even on a single page, while for any rendering there is consistency within the page, there is no consistency among renderings.

The MediaWiki extension ParserFunctions enables users to perform simple mathematical computations.

The expr function evaluates numerical expressions, and also boolean expressions involving numbers and booleans (not strings). The syntax is

{{ #expr: expression }}

The spaces shown in the syntax above are not required, but spaces within numbers are not allowed.

The supported operators (roughly in order of precedence) are not, *, /, div, mod, +, -, round, =, <>, !=, <=, >=, and, and or.

Operators[edit]

Operator Operation Examples
none none
"{{#expr:123456789012345}}" "1.2345678901234E+14" [1]
"{{#expr:1.23456789012345}}" "1.2345678901235" [2]
"{{#expr:.000001}}" "1.0E-6" [3]
"{{#expr:.00000123456789012345}}" "1.2345678901234E-6" [4]
"{{#expr:.123e4}}" "1230" [5]
"{{#expr:123E-2}}" "1.23" [6]
"{{#expr:e}}" "2.718281828459" [7]
"{{#expr:pi}}" "3.1415926535898" [8]

Wrong:

"{{#expr:e4}}" "Expression error: Unexpected number." [9]
exp e to the specified power
"{{#expr:exp1.2}}" "3.3201169227365" [10]

Compare:

"{{#expr:e^1.2}}" "3.3201169227365" [11]
ln Natural logarithm
"{{#expr:ln2}}" "0.69314718055995" [12]

Hence, the base ten logarithm of e.g. 2:

"{{#expr:ln2/ln10}}" "0.30102999566398" [13]
abs
"{{#expr:abs-1.2}}" "1.2" [14]
trunc
"{{#expr:trunc1.2}}" "1" [15]
"{{#expr:trunc-1.2}}" "-1" [16]
floor
"{{#expr:floor1.2}}" "1" [17]
"{{#expr:floor-1.2}}" "-2" [18]
ceil
"{{#expr:ceil1.2}}" "2" [19]
"{{#expr:ceil-1.2}}" "-1" [20]
sin
"{{#expr:sin.1}}" "0.099833416646828" [21]

With an angle in degrees, e.g. 30°:

"{{#expr:sin(30*pi/180)}}" "0.5" [22]
cos
"{{#expr:cos.1}}" "0.99500416527803" [23]
tan
"{{#expr:tan.1}}" "0.10033467208545" [24]
asin
"{{#expr:asin.1}}" "0.10016742116156" [25]
acos
"{{#expr:acos.1}}" "1.4706289056333" [26]
atan
"{{#expr:atan.1}}" "0.099668652491162" [27]
+ Unary + sign
"{{#expr:+12}}" "12" [28]
"{{#expr:++12}}" "12" [29]
"{{#expr:+-12}}" "-12" [30]
- Unary - sign (negation)
"{{#expr:-12}}" "-12" [31]
"{{#expr:-+12}}" "-12" [32]
"{{#expr:--12}}" "12" [33]
not Unary NOT, logical NOT
"{{#expr:not 0}}" "1" [34]
"{{#expr:not 1}}" "0" [35]
"{{#expr:not 2}}" "0" [36]
^ Power
"{{#expr:2^7}}" "128" [37]
"{{#expr:2^-7}}" "0.0078125" [38]
"{{#expr:(-2)^7}}" "-128" [39]
"{{#expr:(-2)^8}}" "256" [40]
"{{#expr:2^1.2}}" "2.2973967099941" [41]
"{{#expr:2^.5}}" "1.4142135623731" [42]
"{{#expr:(-2)^1.2}}" "NAN" [43]
"{{#expr:(-2)^.5}}" "NAN" [44]
* Multiplication
"{{#expr:30*7}}" "210" [45]
"{{#expr:30*-7}}" "-210" [46]
/ Division, same as div
"{{#expr:30/7}}" "4.2857142857143" [47]
"{{#expr:30/-7}}" "-4.2857142857143" [48]
div Division, same as /,
not integer division
"{{#expr:30 div 7}}" "4.2857142857143" [49] (should be 4)
mod "Modulo", remainder of division after truncating both operands to an integer (PHP operator %).

Caveat, div and mod are different from all programming languages. This has been fixed (but needs to be committed), see bugzilla:6068.
"{{#expr:30 mod 7}}" "2" [50]
"{{#expr:30 mod -7}}" "2" [51]
"{{#expr:-30 mod 7}}" "-2" [52]
"{{#expr:-30 mod -7}}" "-2" [53]
"{{#expr:-8 mod -3}}" "-2" [54]
"{{#expr:-8 mod 2.9}}" "0" [55] (should be 2.6)
"{{#expr:-8 mod 3.2}}" "-2" [56] (should be 1.6)
"{{#expr:8.9 mod 3}}" "2" [57] (should be 2.9)
+ Addition
"{{#expr:30 + 7}}" "37" [58]
- Subtraction
"{{#expr:30 - 7}}" "23" [59]
round Rounds off the number on the left to the power of 1/10 given on the right (PHP function round)
"{{#expr:4.2857 round 3}}" "4.286" [60]
"{{#expr:4.2857 round 0}}" "4" [61]
"{{#expr:42857 round -2}}" "42900" [62]
"{{#expr:4.5 round 0}}" "5" [63]
"{{#expr:-4.5 round 0}}" "-5" [64]
= Equality (numerical incl. logical)
"{{#expr:3=03.0}}" "1" [65]
<> Inequality, same as !=
"{{#expr:3<>03.0}}" "0" [66]
"{{#expr:3<>4}}" "1" [67]
!= Inequality, same as <>, logical xor
"{{#expr:3!=03.0}}" "0" [68]
"{{#expr:3!=4}}" "1" [69]
< Less than
"{{#expr:3<2}}" "0" [70]
"{{#expr:3<3}}" "0" [71]
"{{#expr:3<4}}" "1" [72]
> Greater than
"{{#expr:3>2}}" "1" [73]
"{{#expr:3>3}}" "0" [74]
"{{#expr:3>4}}" "0" [75]
<= Less than or equal to
"{{#expr:3<=2}}" "0" [76]
"{{#expr:3<=3}}" "1" [77]
"{{#expr:3<=4}}" "1" [78]
>= Greater than or equal to
"{{#expr:3>=2}}" "1" [79]
"{{#expr:3>=3}}" "1" [80]
"{{#expr:3>=4}}" "0" [81]
and Logical AND
"{{#expr:3 and 4}}" "1" [82]
"{{#expr:0 and 3}}" "0" [83]
"{{#expr:-3 and 0}}" "0" [84]
"{{#expr:0 and 0}}" "0" [85]
or Logical OR
"{{#expr:3 or 4}}" "1" [86]
"{{#expr:0 or 3}}" "1" [87]
"{{#expr:-3 or 0}}" "1" [88]
"{{#expr:0 or 0}}" "0" [89]

The boolean operators consider 0 to be false and any other number to be true. An intermediate or final result "true" is identified with 1. Thus "{{#expr: (2 < 3) + 1}}" gives "2" [90]. Note that "and" and "or" work with #expr and #ifexpr only; for use with #if, #ifeq, and #ifexist, use 1 as then-text and 0 as else-text, and combine results with "and" and "or" in an outer #expr or #ifexpr. Instead of {{ #expr: {{#if:{{{a}}}|1|0}} or {{#if:{{{b}}}|1|0}} }} we can also use {{#if:{{{a}}}{{{b}}}|1|0}}}}. For negation, simply subtract from 1 or interchange then- and else-part.

Precedence:

  • "{{#expr: 2 - 3 + 4 / 5 * 6}}" gives "3.8" [91]

(+ and - have equal precedence, * and / also, both higher than the former two).

  • "{{#expr: 2 = 5 < 3 + 4}}" gives "1" [92]

(first +, then =, then <).

  • "{{#expr:1.234 + 1.234 round 1 + 1}}" gives "2.47" [93]

(first additions, then round)

  • "{{#expr:3 * 4 mod 10 * 10}}" gives "20" [94]

(mod and multiplication have equal precedence, evaluation from left to right)

Parentheses can force a different precedence: "{{#expr: (2 + 3) * 4}}" gives "20" [95]

Blank spaces are good for readability but not needed for working properly, except between not and an adjacent and/div/mod/not/or/round operator, and within numbers not allowed:

  • "{{#expr:7mod3}}" gives "1" [96]
  • "{{#expr:7.5round0}}" gives "8" [97]
  • "{{#expr:0and1}}" gives "0" [98]
  • "{{#expr:0or not0}}" gives "1" [99]
  • "{{#expr:0ornot0}}" gives "Expression error: Unrecognized word "ornot"." [100]
  • "{{#expr:123 456}}" gives "Expression error: Unexpected number." [101]
  • "{{#expr:not not3}}" gives "1" [102]
  • "{{#expr:notnot3}}" gives "Expression error: Unrecognized word "notnot"." [103]
  • "{{#expr:---2}}" gives "-2" [104]
  • "{{#expr:-+-2}}" gives "2" [105]
  • "{{#expr:2*-3}}" gives "-6" [106]
  • "{{#expr:-not-not-not0}}" gives "-1" [107]
  • "{{#expr:2*/3}}" gives "Expression error: Unexpected / operator." [108]
  • "{{#expr:sinln1.1}}" gives "Expression error: Unrecognized word "sinln"." [109]
  • "{{#expr:sin ln1.1}}" gives "0.095165945236752" [110]

Numbers as input[edit]

Leading zeros are allowed, as well as a trailing decimal point (for an integer) and trailing zeros in a number with a decimal point.

  • "{{#expr: +01.20}}" gives "1.2" [111]
  • "{{#expr: 12.}}" gives "12" [112]

These equivalences are also relevant for #ifeq and #switch, see below.

In [113] we have

define( 'EXPR_NUMBER_CLASS', '0123456789.' );
...
elseif ( false !== strpos( EXPR_NUMBER_CLASS, $char ) ) { 
// Number
if ( $expecting != 'expression' ) {throw new ExprError('unexpected_number');}
// Find the rest of it
$length = strspn( $expr, EXPR_NUMBER_CLASS, $p );
// Convert it to float, silently removing double decimal points
$operands[] = floatval( substr( $expr, $p, $length ) );
$p += $length;$expecting = 'operator';continue;}

Thus the part of the expression representing a number is a sequence of digits and points; due to floatval a second point and any digits and points immediately after it are ignored, and do not give an error message. Group separators are not allowed: a comma is considered an unrecognised punctuation character:

Thus a number can only consist of one or more digits, or zero or more digits, a point, and zero or more digits. (For the purpose of evaluating an expression a plus or minus sign is considered a unary operator instead of part of the number.)

Canonical form:

  • "{{#expr: 123}}" gives "123" [114]
  • "{{#expr: 123.456}}" gives "123.456" [115]
  • "{{#expr: 0.456}}" gives "0.456" [116]
  • "{{#expr: 0}}" gives "0" [117]
  • "{{#expr: 2.0E-5}}" gives "2.0E-5" [118]

Accepted, although in some cases more or less odd:

  • "{{#expr: .456}}" gives "0.456" [119]
  • "{{#expr: 123.}}" gives "123" [120]
  • "{{#expr: 000123}}" gives "123" [121]
  • "{{#expr: 123.456.789}}" gives "123.456" [122]
  • "{{#expr: .}}" gives "0" [123]
  • "{{#expr: 2e-5}}" gives "2.0E-5" [124]
  • "{{#expr: 2E-5}}" gives "2.0E-5" [125]
  • "{{#expr: E}}" gives "2.718281828459" [126]
  • "{{#expr: e}}" gives "2.718281828459" [127]
  • "{{#expr: E-5}}" gives "-2.281718171541" [128]
  • "{{#expr: e-5}}" gives "-2.281718171541" [129]
  • "{{#expr: 1e-5}}" gives "1.0E-5" [130]

Wrong:

  • "{{#expr: 123,456}}" gives "Expression error: Unrecognized punctuation character ","." [131]
  • "{{#expr: 123 456}}" gives "Expression error: Unexpected number." [132]

Due to the specifier R ("raw"), "{{NUMBEROFARTICLES:R}}" gives "10079" [133] etc., i.e. numbers without group separators, which can be used in computations.

As opposed to ParserFunctions, "plural" accepts points and commas in numbers and interprets them in a site-language-specific way (depending on $separatorTransformTable in Messagesxx.php); on this site:

  • "{{plural:1.000|a|b|c}}" gives "a" [134]
  • "{{plural:1,000|a|b|c}}" gives "b" [135]

(on e.g. the German and the Dutch sites reversed w.r.t. the result on English sites).

However, this can be used instead of #ifeq, #ifexpr or #switch only for distinguishing a few site-language-specific categories of numbers (for English: 1 and "not equal to 1", for French <=1 and >1, etc.). Also, since it is designed for linguistic distinction of singular and plural, in some languages the categories of numbers are numerically less useful.

Numbers as output[edit]

A non-integer result has a decimal point in it. Scientific notation is produced for numbers with small absolute value ( less than 1E-4) and for numbers with large absolute value ( greater than or equal to 1E+12; however, even within MediaWiki there is no uniformity, larger numbers in non-scientific notation and smaller numbers in scientific notation have been observed as output; the format of the same number can vary from preview to view, and by refreshing the page!). Thus numbers produced include (depending on the operating system of the server):

  • "{{#expr: .000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000123456789012345}}" gives "1.2345678901234E-106" [136]
  • "{{#expr: .00000123456789012345}}" gives "1.2345678901234E-6" [137]
  • "{{#expr: .0000123456789012345}}" gives "1.2345678901235E-5" [138]
  • "{{#expr: .000123456789012345}}" gives "0.00012345678901234" [139]
  • "{{#expr: 123456789012.345}}" gives "123456789012.35" [140]
  • "{{#expr: 1234567890123.45}}" gives "1234567890123.4" [141]
  • "{{#expr: 12345678901234.5}}" gives "12345678901234" [142]
  • "{{#expr: 123456789012345}}" gives "1.2345678901234E+14" [143]
  • "{{#expr: 1234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456}}" gives "1.2345678901235E+105" [144]
  • "{{#expr: 1.234e4}}" gives "12340" [145]
  • "{{#expr: 1.234e-4}}" gives "0.0001234" [146]

For negative numbers simply a minus sign is prefixed:

  • "{{#expr: -123456789012345}}" gives "-1.2345678901234E+14" [147]
Long YYYYMMDDhhmmss timestamps can run into the same problem:
"{{CURRENTTIMESTAMP}}" gives "20240417193520" [148],
"{{#expr:{{CURRENTTIMESTAMP}}}}" gives "20240417193520" [149].
Timestamps without seconds are 12 digits, just short enough:
"{{#expr:20240417193520/100}}" gives "202404171935.2" [150]

To avoid these problems and also increase accuracy, unless the result is represented by #expr exactly and in non-scientific notation, such as a not too large integer, do not use #expr in an expression to be evaluated by #expr or #ifexpr. Typically the result of a computational template could be needed in a further computation, so at least one version of such a template needs to give the result in a form suitable for that, e.g. m:Template:roote (backlinks, edit) and m:Template:rooteval (backlinks, edit); for convenience, for the final result another version can be made simply calling the other one and applying #expr to the result, e.g. m:Template:rootfineval (backlinks, edit).

Two methods for representing intermediate results are:

1. The expression resulting from processing the expressions themselves, using #expr for branching only.

For example, m:Template:powe (backlinks, edit) produces the power of a number in the form of an expression:

However, the expression can get quite long, for m:Template:roote (backlinks, edit) see Help:Calculation/example 1. Although long expressions are allowed, they give rise to a large post-expand include size and template argument size, for which limits exist.

Applying #expr directly on a linked expression gives Expression error: Unrecognized punctuation character "["., but it can also be used in a further computation, unlike the value just mentioned.

2. Writing numbers splitting off factors which are powers of 10 but written plainly.

Example:

Intermediate results are also in such a form, preventing the growth of the expression like above. Again, #expr can be applied directly, as done in m:Template:rootfineval (backlinks, edit), giving Template:Fineval, but the result can also be used in a further computation.

Compare:

  • "{{#expr:(.0000000000001)^(1/2)}}" gives "3.1622776601684E-7" [153]

This uses the same method, but with intermediate application of #expr, giving an error because of internediate results in scientific notation.

If the result of rounding a negative number is zero, the result is "-0". To avoid that, an expression x can be replaced by 0 + ( x ):

  • "{{#expr: ( -0.2 round 0 )}}" gives "-0" [154]
  • "{{#expr: 1*(-0.2 round 0)}}" gives "-0" [155]
  • "{{#expr: 0+(-0.2 round 0)}}" gives "0" [156]

The number output is suitable for many other calculation programs, also the scientific notation. In that sense output like 6E23 is more convenient than 6×1023.

Accuracy[edit]

The accuracy and format of numeric results varies with the operating system of the server.

Accuracy of the result of #expr is less than internally used within the computation of an expression:

  • "{{#expr:(2/3)}}" gives "0.66666666666667" [157]
  • "{{#expr:(2/3)*1000000-666666}}" gives "0.66666666662786" [158]
  • "{{#expr:{{#expr:(2/3)}} *1000000-666666}}" gives "0.66666667000391" [159]
  • "{{#expr:1234567890.1234567890-1234567890}}" gives "0.12345671653748" [160] (conclusion: 16 or 17 digits of 1234567890.1234567890 used)
  • "{{#expr:1234567890.1234567890}}" gives "1234567890.1235" [161] (result is rounded to a total of 12 digits)
  • "{{#expr:({{#expr:1234567890.1234567890}} -1234567890)}}" gives "0.12350010871887" [162]
The macheps or smallest x such that 1+x != 1 appears to be near 0.5^53 + 0.5^106 or 1.1102230246251566636831481088739149080825883E-16 (see above):
"{{#expr:1=1+0.00000000000000011102230246251566636831481088739149080826}}" gives "0" [163]
"{{#expr:1=1+0.00000000000000011102230246251566636831481088739149080825}}" gives "1" [164]
That's the normal behaviour for 64=1+52+11 bits (52 mantissa, 11 exponent). As explained above it is unrelated to the smallest expression result greater than 1:
"{{#expr:1+0.000000000004999889392}}" gives "1.000000000005" [165]
"{{#expr:1+0.000000000004999889391}}" gives "1.000000000005" [166] below about 1 + 5E-12.

Branching depending on an expression[edit]

The function #ifexpr produces one of two specified results, depending on the value of a boolean expression involving numbers and booleans (not strings). Examples:

{{#ifexpr: {{CURRENTDOW}} = 0 or {{CURRENTDOW}} = 6 | weekEND | weekDAY}} yields weekDAY because today is Wednesday and so "{{CURRENTDOW}}" is "3" [167].

"{{#ifexpr:2^10=1024|1|0}}" gives "1" [168]

Note that rounding errors can affect a result:

  • "{{#expr:sin pi}}" gives "1.2246467991474E-16" [169]
  • "{{#ifexpr:sin pi=0|1|0}}" gives "0" [170]
  • "{{#ifexpr:abs sin pi<1e-15|1|0}}" gives "1" [171]

Similarly:

  • "{{#expr:sin pi=0}}" gives "0" [172]
  • "{{#expr:abs sin pi<1e-15}}" gives "1" [173]

Comparisons[edit]

  1. The function #ifeq: compares numbers and strings for equality (equal if both represent the same number or both are equal strings).
  2. The function #switch: compares one string with multiple others, and correspondingly produces one of multiple specified results.
  • "{{#switch:FR|UK=London|FR=Paris|NL=Amsterdam}} gives "Paris" [174]
  • "{{#ifeq:3|3.0|1|0}}" gives "1" [175]
  • "{{#ifeq:3|03|1|0}}" gives "1" [176]
  • "{{#ifeq:0.00003456|3.456E-05|1|0}}" gives "1" [177]
    Note that #ifeq: unlike #expr: accepts exponential notation on input.
  • "{{#ifeq:1234567890123|1234567890120|1|0}}" gives "0" [178]
  • "{{#ifeq:1234567890123|1.23456789012E+12|1|0}}" gives "0" [179]
  • "{{#ifeq:1234567890120|1.23456789012E+12|1|0}}" gives "1" [180]
  • "{{#ifeq:1.234567890120E12|1.23456789012E+12|1|0}}" gives "1" [181]
    Numerical comparisons don't depend on the output format, compare:
  • "{{#expr:1234567890123}}" gives "1234567890123" [182]
  • "{{#expr:1234567890120}}" gives "1234567890120" [183]

#ifeq: allows to compare strings containing equal signs:

#switch: result #ifeq: result
"{{#switch:-1.0|-1=okay|fail}}" gives "fail" [184] "{{#ifeq:-1.0|-1|okay|fail}}" gives "okay" [185]
"{{#switch:a=b|a=b=okay|fail}}" gives "fail" [186] "{{#ifeq:a=b|a=b|okay|fail}}" gives "okay" [187]
"{{#switch:a=c|a=b=fail|okay}}" gives "okay" [188] "{{#ifeq:a=c|a=b|fail|okay}}" gives "okay" [189]


Length of expressions[edit]

To find the absolute value of a numeric expression x without using a separate template at least doubles the length of the expression:

  • x*(1-2*(x<0))
  • x*{{#ifexpr:x>0|1|-1}}

(The first is not only shorter but has also the advantage that for substitution one less "subst:" or {{{subst|}}} is needed.)

Do not use

  • {{#ifexpr:x>0|x|-x}}

for long expressions as it triples the length.

Similarly do not use mod to round or conversely, because it doubles the length of the expression.

Also providing a leading zero for the result of an expression if it is less than 10 doubles its length:

  • {{#ifexpr:x<10|0}}x

This "exponential" growth of expressions, with much repetition, is due to the lack of variables (in the computer programming sense); however, see also VariablesExtension.

Templates (subroutines) provide some of the functionality that variables offer: a template name is comparable with a variable name, while its content is comparable with the value of the variable. Alternatively, a template parameter can be assigned a value which can be used for multiple occurrences of the same parameter in the template. Thus e.g. x*(1-2*(x<0)) with a long expression x can be evaluated avoiding duplication of that expression, in two ways:

  • put the expression x in a template (multiple calls of the same template)
  • put x*(1-2*(x<0)) in a template with parameter x (use of a template with multiple occurrences of the same parameter)

For the pre-expand include size maximum the first method does not help, but the second does.

If the number of possible results of a long expression is small, a switch allows arbitrary conversion, including the absolute value and providing a leading zero, etc., without repeating the expression.

Error messages[edit]

Examples for all known #expr: and #ifexpr: error messages. The error texts are within the tags <strong class="error">..</strong>. Note that with the old preprocessor the "=" in "class=error" disturbs the numbering of unnamed parameters, if one of them produces an error message: {{t1|{{#expr:1/0}}}} gives {{[[Template:Division by zero.|Division by zero.]]}}.


Expression Error message
"{{#expr:1/0|{{{2}}}}}" gives "Division by zero." [190]
"{{#expr:2*|{{{2}}}}}" gives "Expression error: Missing operand for *." [191]
"{{#expr:1 2|{{{2}}}}}" gives "Expression error: Unexpected number." [192]
"{{#ifexpr:1*/2|{{{2}}}}}" gives "Expression error: Unexpected / operator." [193]
"{{#expr: 1 (2)|{{{2}}}}}" gives "Expression error: Unexpected ( operator." [194]
"{{#expr: (1|{{{2}}}}}" gives "Expression error: Unclosed bracket." [195]
"{{#expr: 1)|{{{2}}}}}" gives "Expression error: Unexpected closing bracket." [196]
"{{#expr:2*123,456|{{{2}}}}}" gives "Expression error: Unrecognized punctuation character ","." [197]
"{{#expr:{{{a}}}|{{{2}}}}}" gives "Expression error: Unrecognized punctuation character "{"." [198]
"{{#ifexpr:3%2|{{{2}}}}}" gives "Expression error: Unrecognized punctuation character "%"." [199]
"{{#ifexpr:abc|{{{2}}}}}" gives "Expression error: Unrecognized word "abc"." [200]
"{{#expr:abc.def|{{{2}}}}}" gives "Expression error: Unrecognized word "abc"." [201]
{{ #expr:{{ x|102|1000*}} 18 }} gives 1.8E+307
{{ #expr:{{ x|102|1000*}} 179 }} gives 1.79E+308
{{ #expr:{{ x|102|1000*}} 180 }} gives INF ( "INF", but depending on the operating system of the server it may also be e.g. "1.#INF")
{{ #expr:{{ x|33|(1+(}} 1 {{ x|33|))}} }} gives Expression error: Unclosed bracket.
{{ #expr:{{ x|34|(1+(}} 1 {{ x|34|))}} }} gives Expression error: Stack exhausted.
"{{#expr:3.4.5.6}}" gives "3.4" [202]   (no feature, only an oddity)

Note: template:x ( talk edit history links ) copies a given string, here parts of an expression, for the specified times (max. 120), this help page shown on other projects actually evaluate its substituted output like 102 factors "1000" times "180" to get INF (infinity).

Wikitext without error message from the parser functions, but typically an error while using or attempting to use them:

{{{#expr:2*3}}}   {{{#expr:2*3}}}   (triple braces, the whole is interpreted as parameter tag with parameter name "#expr:2*3")
{{#expr:2*3}}} 6} (one closing brace too many; the last of the three is interpreted as plain text, so that the rest works fine)
{{{#expr:2*3}} {6 (one opening brace too many; the first of the three is interpreted as plain text, so that the rest works fine)
{{#expr:2*3} {{#expr:2*3} (too few braces, the whole is interpreted as plain text)
A crude but informative "unrecognised word" error message can be generated intentionally. Only the first identified error is shown:
{{ #expr: 2*{{ #ifexpr: 3*4>10|toolarge|3*4 }} }} gives
Expression error: Unrecognized word "toolarge".,
{{ #expr: 2*{{ #ifexpr: 3*4>10|too large|3*4 }} }} gives
Expression error: Unrecognized word "too"..

See also #iferror.

Minus sign[edit]

Only the ASCII hyphen (hyphen-minus) and minus signs work as minus signs; dashes are not permitted. The output, however, will always be in the form of a hyphen-minus:

hyphen-minus "{{#expr:-12}}" "-12" [203]
Unicode hyphen (U+2010, ‐) "{{#expr:‐12}}" "Expression error: Unrecognized punctuation character "‐"."
minus sign produced by &minus; "{{#expr:−12}}" "-12"
&minus; "{{#expr:&minus;12}}" "-12"
em dash produced by &mdash; "{{#expr:—12}}" "Expression error: Unrecognized punctuation character "—"."
&mdash; "{{#expr:&mdash;12}}" "Expression error: Unrecognized punctuation character "&"."
en dash produced by &ndash; "{{#expr:–12}}" "Expression error: Unrecognized punctuation character "–"."
&ndash; "{{#expr:&ndash;12}}" "Expression error: Unrecognized punctuation character "&"."

Also many other calculation programs require a hyphen. Therefore, in order to be able to copy rendered numbers and expressions to the edit box or input them through a copy operation into other calculation programs, displayed minus signs also need to be hyphens.

Displaying numbers and numeric expressions[edit]

Guidelines such as WP:Manual of Style (dates and numbers)#Numbers focus on number display as end product. However, a point of consideration can also be the possibility to apply the rendered output to #expr or #ifexpr, or to input it without conversion into other calculation programs. This would require the following:

  • use digits, not words
  • as mentioned above, use the hyphen as minus sign
  • use *, <=, and >=, not ×, ≤, or ≥
  • do not use thousands separators (however, some programs allow them)
  • use output like 6E23 or 6e23 rather than 6×1023

Examples:

  • "{{#expr:three}}" gives "Expression error: Unrecognized word "three"." [204]
  • "{{#expr:2<3}}" gives "1" [205]
  • "{{#expr:2≤3}}" gives "Expression error: Unrecognized punctuation character "≤"." [206]
  • "{{#expr:2<=3}}" gives "1" [207]
  • "{{#expr:2>3}}" gives "0" [208]
  • "{{#expr:2≥3}}" gives "Expression error: Unrecognized punctuation character "≥"." [209]
  • "{{#expr:2>=3}}" gives "0" [210]
  • "{{#expr:2*3}}" gives "6" [211]
  • "{{#expr:2×3}}" gives "Expression error: Unrecognized punctuation character "×"." [212]
  • "{{#expr:2,300}}" gives "Expression error: Unrecognized punctuation character ","." [213]
  • "{{#expr:6E23}}" gives "6.0E+23" [214]

If the number is the result of a computation by MediaWiki and unsuitable for use in a new computation due to application of a formatting function such as #formatnum or a formatting template, one can copy the wikitext and apply the additional computation before the formatting. However, when templates are used, and copying is done to another wiki, these templates have to be copied too, or substituted.

See also[edit]

fr:Aide:Fonctions parseur hsb:Pomoc:Předłohowe programowanje it:Aiuto:Funzioni parser pl:Pomoc:Funkcje parsera sl:Pomoč:ParserFunctions