freeCodeCamp/guide/chinese/mathematics/exponents/index.md

36 lines
794 B
Markdown
Raw Blame History

This file contains ambiguous Unicode characters!

This file contains ambiguous Unicode characters that may be confused with others in your current locale. If your use case is intentional and legitimate, you can safely ignore this warning. Use the Escape button to highlight these characters.

---
title: Exponents
localeTitle: 指数
---
## 指数
指数是数字乘以其自身倍数的简写。它通常用上标,克拉或“以权力”表示,例如:
* 2 3
* 2 ^ 3
* 2到3的力量
在这个例子中3是指数。
要计算2 3的值您将多次2到自身3次2 \* 2 \* 2.这将评估为8。
常见的指数有特殊名称:
* 2的指数通常被称为平方。所以3 2被称为3平方评估为9。
* 3的指数通常被称为立方。所以2 3被称为3立方评估为8。
### 否定指数
负指数的计算方法类似只是将值作为分子放在1的分子下面。
例如2 \-2 = 1 /2 \* 2= 1/4
### 更多例子
2 5 = 2 _2_ 2 _2_ 2 = 32
\-2 5 = -2 _\-2_ -2 _\-2_ -2 = 32
10 6 = 1,000,000
2 \-5 = 1 /2 _2_ 2 _2_ 2= 32