指数与幂运算计算器 Exponent Calculator
一站式计算 a^b、10^x、e^x、n 次方根 与 对数(log)。支持精度、科学计数法展示与一键复制结果。
Compute a^b, 10^x, e^x, n-th roots, and logs. Includes precision, scientific notation, and copy-to-clipboard.
1. 输入参数 · Parameters
3. 使用说明 · Notes
-
幂运算 a^b(最常用) · Power (Most common):
输入底数 a 与指数 b,计算 a 的 b 次幂。指数为整数时最直观:例如 2^3 = 8。指数为负数表示倒数:2^-3 = 1/8。
Enter base a and exponent b to compute a^b. Integer exponents are straightforward (2^3 = 8). Negative exponents mean reciprocal (2^-3 = 1/8). -
10^x 与 e^x(指数函数) · Exponential functions:
10^x 常用于“数量级/科学计数法”(例如 10^6 = 1,000,000);e^x 常见于增长模型、连续复利、概率统计与微积分。
10^x is often used for orders of magnitude (10^6 = 1,000,000). e^x is common in growth models, continuous compounding, statistics, and calculus. -
n 次方根 x^(1/n) · n-th root:
“开根号”本质上就是分数指数:√x = x^(1/2),∛x = x^(1/3)。注意:当 x 为负数且 n 为偶数时,实数范围内无解。
Roots are fractional exponents: √x = x^(1/2), ∛x = x^(1/3). If x is negative and n is even, there is no real-number result. -
对数 log_b(x) · Logarithm:
对数是指数的“反函数”:若 b^y = x,则 y = log_b(x)。常见:log10(x)(常用对数)与 ln(x)(自然对数)。
Logarithms are inverse of exponentials: if b^y = x, then y = log_b(x). Common cases: log10(x) and ln(x). -
常见规则(帮助你自查) · Quick rules for sanity checks:
a^0 = 1(当 a ≠ 0),a^1 = a;a^{-b} = 1 / a^b(当 a ≠ 0);(a^m)^n = a^{m·n};a^m · a^n = a^{m+n}。
a^0 = 1 (when a ≠ 0), a^1 = a; a^{-b} = 1 / a^b (a ≠ 0); (a^m)^n = a^{m·n}; a^m · a^n = a^{m+n}. -
边界与陷阱(很重要) · Edge cases & pitfalls (Important):
0^0 在数学上通常视为不定式(不同场景定义不同);负数底数配分数指数可能产生复数结果(本工具按“实数域”处理,会提示不支持)。
0^0 is indeterminate in many contexts; negative bases with fractional exponents can yield complex numbers (this tool works in real numbers and will warn you). -
精度说明 · Precision note:
JavaScript 使用双精度浮点数(IEEE 754),在极大幂次或很多小数指数下,可能出现舍入误差或直接溢出为 Infinity。你可以用“科学计数法”来更稳定地阅读结果。
JavaScript uses IEEE 754 double precision. Very large powers may overflow to Infinity, and fractional exponents may have rounding errors. Scientific notation can be easier to read.
免责声明:本工具用于学习与快速估算,不构成任何投资、工程或科研结论。若你在高精度/高风险场景使用(例如密码学、严肃科研、工程验算),请使用专业高精度数学库或符号计算工具进行复核。
Disclaimer: For learning and quick estimation only. For high-precision or high-stakes use (cryptography, research, engineering verification), validate with a high-precision or symbolic math tool.
