diff options
Diffstat (limited to 'help/exponential_power.md')
| -rw-r--r-- | help/exponential_power.md | 27 |
1 files changed, 27 insertions, 0 deletions
diff --git a/help/exponential_power.md b/help/exponential_power.md new file mode 100644 index 00000000..891dba08 --- /dev/null +++ b/help/exponential_power.md @@ -0,0 +1,27 @@ +*View this file with results and syntax highlighting [here](https://mlochbaum.github.io/BQN/help/exponential_power.html).* + +# Star (`⋆`) + +## `⋆ 𝕩`: Exponential + +`e` (Euler's constant) to the power of `𝕩`. + +[Pervasive.](https://mlochbaum.github.io/BQN/doc/arithmetic.html#pervasion) + + ⋆ 0‿1‿2‿3 + + + +## `𝕨 ⋆ 𝕩`: Power + +`𝕨` to the power of `𝕩`. + +[Pervasive.](https://mlochbaum.github.io/BQN/doc/arithmetic.html#pervasion) + + 2 ⋆ 5 + + 8‿5‿9 ⋆ 2 + + 2‿3 ⋆ 3‿¯4 + + |
