Search for a tool
Exponentiation (Power)

Tool to compute power of a number. Exponentiation (or power) of a number 'a^b' is the result of the 'b'-times repeated multiplication of the number 'a' by itself.

Results

Exponentiation (Power) -

Tag(s) : Arithmetics

Share
Share
dCode and more

dCode is free and its tools are a valuable help in games, maths, geocaching, puzzles and problems to solve every day!
A suggestion ? a feedback ? a bug ? an idea ? Write to dCode!


Please, check our dCode Discord community for help requests!
NB: for encrypted messages, test our automatic cipher identifier!


Feedback and suggestions are welcome so that dCode offers the best 'Exponentiation (Power)' tool for free! Thank you!

Exponentiation (Power)

Exponentiation Calculator a^b



Exponentiation Simplifier






Modular Exponentiation Calculator a^b mod n

Iterated Exponentiation Calculator a^a^...^a

⮞ Go to: Knuth's Arrows

Answers to Questions (FAQ)

How to calculate a raised to power b?

Calculating $ a $ power $ b $ (also called $ a $ exponent $ b $ or $ a $ exponential $ b $) corresponds to multiply $ a $ by itself $ b $ times.

$$ a^n = \underbrace{a \times \cdots \times a}_{b} $$

Example: $$ 2^5 = 2 \times 2 \times 2 \times 2 \times 2 = 32 $$

What are the base and the exponent in an exponentiation? (Definition)

In a power calculation $ a^b = c $, the part $ a $ is called the base and the part $ b $ is called the exponent, $ c $ is normally called power but in everyday language power and exponentiation are often exchanged.

What are power tables?

Like the multiplication tables, there is a, exponentiation table, or table of powers but this one is not symmetrical (a^b is not always equal to b^a). Here is the table reading row^column:

\012345678910
010000000000
111111111111
212481632641282565121024
31392781243729218765611968359049
41416642561024409616384655362621441048576
515251256253125156257812539062519531259765625
61636216129677764665627993616796161007769660466176
71749343240116807117649823543576480140353607282475249
818645124096327682621442097152167772161342177281073741824
919817296561590495314414782969430467213874204893486784401
10110100100010000100000100000010000000100000000100000000010000000000

How to write a raised to power b?

In mathematics, a power is written $ a $ exponent $ b $ as $ a^b $.

In computing, the exponentiation calculation is often indicated by a circumflex ^ : a^b for a power b. In some programming languages, the notation a**b (the multiplication sign twice) is used.

What is a^0 (power zero)?

A power of 0 is equal to 1. Any number exponent 0 is worth 1. $$ a^0 = 1 $$

0 to the power of 0 is a debatable case but by convention, $ 0^0 = 1 $

What is a negative power?

A power with a negative exposant is the inverse of a positive power.

$$ a^{-n} = \frac{1}{a^n} $$

Example: $ 2^{-3} = \frac{1}{2^3} $

What is the minus one -1 power?

The power $ -1 $ in maths is equivalent to a mathematical inverse.

$$ n^{-1} = \frac{1}{n^1} = \frac{1}{n} $$

Example: $ 2^{-1} = \frac{1}{2} $

How to calculate the last digits of an exponentiation?

To calculate the $ x $ last digits of a power $ a^b $, use the modular exponentiation calculator $ a^b \mod 10^x $

Example: Finding the last 3 digits of $ 2^20 = 1048576 $ is to calculate $ 2^20 \mod 10^3 = 576 $ (NB: $ 10^3 = 1000 $)

Why exponent has to be an integer and not rational?

Exponent corresponds to the number of times the multiplication has to be done. If the exponent is not an integer, it becomes a root calculus and is not managed by this function. Use the square root page or the formal calculator on dCode.

What are exponentiation operation properties?

The exponentiation operator has 3 main mathematical identities:

$$ a^{b + c} = a^b \cdot a^c \\ (a^b)^n = a^{b \cdot n} \\ (a \cdot b)^n = a^n \cdot b^n $$

Note also that an even power of a negative number is always positive, and an odd power of a negative number is always negative.

Source code

dCode retains ownership of the "Exponentiation (Power)" source code. Except explicit open source licence (indicated Creative Commons / free), the "Exponentiation (Power)" algorithm, the applet or snippet (converter, solver, encryption / decryption, encoding / decoding, ciphering / deciphering, breaker, translator), or the "Exponentiation (Power)" functions (calculate, convert, solve, decrypt / encrypt, decipher / cipher, decode / encode, translate) written in any informatic language (Python, Java, PHP, C#, Javascript, Matlab, etc.) and all data download, script, or API access for "Exponentiation (Power)" are not public, same for offline use on PC, mobile, tablet, iPhone or Android app!
Reminder : dCode is free to use.

Cite dCode

The copy-paste of the page "Exponentiation (Power)" or any of its results, is allowed (even for commercial purposes) as long as you credit dCode!
Exporting results as a .csv or .txt file is free by clicking on the export icon
Cite as source (bibliography):
Exponentiation (Power) on dCode.fr [online website], retrieved on 2024-05-17, https://www.dcode.fr/exponentiation-calculation

Need Help ?

Please, check our dCode Discord community for help requests!
NB: for encrypted messages, test our automatic cipher identifier!

Questions / Comments

Feedback and suggestions are welcome so that dCode offers the best 'Exponentiation (Power)' tool for free! Thank you!


https://www.dcode.fr/exponentiation-calculation
© 2024 dCode — El 'kit de herramientas' definitivo para resolver todos los juegos/acertijos/geocaching/CTF.
 
Feedback