Enter a set of exponential expressions, separated by commas, and get the sum instantly. Use ^ to separate the base and exponent.
Adding exponents refers to summing up the results of two or more exponential expressions. Regardless of whether the bases are the same or different, each exponential value is calculated individually, and their results are then added together.
Solution:
\( 2^3 + 2^2 = 8 + 4 = 12 \)
Input your expressions as a^m, b^n, c^p, where ^ separates the base and exponent, and commas , separate individual expressions.
Use a comma (, ), semicolon (; ) or line breaks to separate multiple expressions. For example: Input 2^3, 3^2, 4^1 to calculate \( 2^3 \), \( 3^2 \), and \( 4^1 \).
Solution:
Input (comma separated): 2^3, 3^2, 4
Calculate:
\( 2^3 = 8 \)
\( 3^2 = 9 \)
Add up:
\( 8 + 9 + 4 = 21 \)
Result: The sum of \( 2^3, 3^2, 4 \) is \( 21 \).
Solution:
Input (semicolon separated): 5^2; 2^4; 3^3
Calculate:
\( 5^2 = 25 \)
\( 2^4 = 16 \)
\( 3^3 = 27 \)
Add up:
\( 25 + 16 + 27 = 68 \)
Result: The sum of \( 5^2, 2^4, 3^3 \) is \( 68 \).
Solution:
Input (comma and semicolon separated): 10^2, 5^3, 20; 30; 40
Calculate:
\( 10^2 = 100 \)
\( 5^3 = 125 \)
Add up:
\( 100 + 125 + 20 + 30 + 40 = 315 \)
Result: The sum of \( 10^2, 5^3, 20; 30; 40 \) is \( 315 \).