RosettaCodeData/Task/Exponentiation-with-infix-o.../00-TASK.txt

63 lines
2.3 KiB
Plaintext

(Many programming languages,   especially those with extended─precision integer arithmetic,   usually
support one of <big> <code>**</code>, <code>^</code>, <code>↑</code> </big> or some such for exponentiation.)
Some languages treat/honor infix operators when performing exponentiation &nbsp; (raising
numbers to some power by the language's exponentiation operator, &nbsp; if the computer
programming language has one).
Other programming languages may make use of the &nbsp; '''POW''' &nbsp; or some other BIF
&nbsp; ('''B'''uilt─'''I'''n '''F'''function), &nbsp; or some other library service.
If your language's exponentiation operator is not one of the usual ones, please comment on how to recognize it.
This task will deal with the case where there is some form of an &nbsp; ''infix operator'' &nbsp; operating
in &nbsp; (or operating on) &nbsp; the base.
;Example:
A negative five raised to the 3<sup>rd</sup> power could be specified as:
-5 ** 3 or as
-(5) ** 3 or as
(-5) ** 3 or as something else
<small>(Not all computer programming languages have an exponential operator and/or support these syntax expression(s)</small>.
;Task:
:* &nbsp; compute and display exponentiation with a possible infix operator, whether specified and/or implied/inferred.
:* &nbsp; Raise the following numbers &nbsp; (integer or real):
:::* &nbsp; -5 &nbsp; &nbsp; and
:::* &nbsp; +5
:* &nbsp; to the following powers:
:::* &nbsp; 2<sup>nd</sup> &nbsp; &nbsp; and
:::* &nbsp; 3<sup>rd</sup>
:* &nbsp; using the following expressions &nbsp; (if applicable in your language):
:::* &nbsp; -x**p
:::* &nbsp; -(x)**p
:::* &nbsp; (-x)**p
:::* &nbsp; -(x**p)
:* &nbsp; Show here (on this page) the four (or more) types of symbolic expressions for each number and power.
Try to present the results in the same format/manner as the other programming entries to make any differences apparent.
The variables may be of any type(s) that is/are applicable in your language.
;Related tasks:
* &nbsp; [[Exponentiation order]]
* &nbsp; [[Exponentiation operator]]
* &nbsp; [[Arbitrary-precision integers (included)]]
* &nbsp; [[Parsing/RPN to infix conversion]]
* &nbsp; [[Operator precedence]]
<br><br>
;References:
* [[wp:Order_of_operations#Programming_languages|Wikipedia: Order of operations in Programming languages]]
<br><br>