freeCodeCamp/guide/chinese/mathematics/scientific-notation/index.md

26 lines
975 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: Scientific Notation
localeTitle: 科学计数法
---
## 科学计数法
科学记数法是一种编写非常大/小数字的方法,以便在计算中更容易处理它们。
我们可以想到科学记数法中的数字由“数字术语”和“指数术语”组成
数字术语包含数字的有效数字。数字项必须是1到10之间的数字。指数项包含占位符零并定位小数位置。如果指数项具有负指数则表示该数字小于1并且小数点必须向左移动一定数量的空格。而正指数数意味着数字非常大小数点必须向右移动。
#### 例:
用科学记数法写成的545,000,000,0005.45 x 10 ^ 11
0.0000000000030435 = 3.0435 x 10 ^ -12
10 = 1.0×10 ^ 1
1 = 1.0 x 10 ^ 0
#### 更多信息:
* [伟大的文章,包括科学记数法中的算术](https://www.chem.tamu.edu/class/fyp/mathrev/mr-scnot.html)
* [维基百科文章](https://en.wikipedia.org/wiki/Scientific_notation)