楼主MM,不好意思,4^4^4=2^2^X 经过计算器计算,x=16. 4^4^4 = 4294967296 = 2^2^16. 用科学计算器很快能算出来的,抱歉之前说的是9,看来计算方法有问题。 应该是 4^4^4 = 2^32 -- by 会员 andylee1982 (2010/9/25 12:14:37)
嗯 谢谢 那如果考场上碰到应该怎么算呢? -- by 会员 小懒猫 (2010/9/25 17:08:50)
以下是wiki对幂运算的解释: Identities and propertiesThe most important identity satisfied by integer exponentiation is
 This identity has the consequence  for a ≠ 0, and  Another basic identity is  While addition and multiplication are commutative (for example, 2+3 = 5 = 3+2 and 2·3 = 6 = 3·2), exponentiation is not commutative: 2 3 = 8, but 3 2 = 9. Similarly, while addition and multiplication are associative (for example, (2+3)+4 = 9 = 2+(3+4) and (2·3)·4 = 24 = 2·(3·4), exponentiation is not associative either: 2 3 to the 4th power is 8 4 or 4096, but 2 to the 3 4 power is 2 81 or 2,417,851,639,229,258,349,412,352. Without parentheses to modify the order of calculation, the order is usually understood to be top-down, not bottom-up:  所以这道题要注意是(4^4)^4还是4^(4^4),同理,求的是(2^2)^x还是2^(2^x)。以下是几种不同的情况,希望能给这道题提供一个圆满的解答。(4^4)^4=(2^2)^x, x=16 (4^4)^4=2^(2^x),x=5 4^(4^4)=(2^2)^x, x=2^8 4^(4^4)=2^(2^x),x=9 -- by 会员 nceeterminator (2010/9/25 21:45:42)
只能先算幂,不能先算底数!支持9 |