freeCodeCamp/guide/chinese/mathematics/area-of-a-square/index.md

62 lines
1.8 KiB
Markdown
Raw Normal View History

---
title: Area of a Square
localeTitle: 广场面积
---
## 广场面积
正方形是具有相同边的四边形。
正方形的面积可以从侧面的长度或从对角线的长度计算。
![广场](https://github.com/viso-gio/HostedImages/blob/master/square.jpg?raw=true)
如果_a_面已知
![公式1](https://github.com/viso-gio/HostedImages/blob/master/AreaSquare1.png?raw=true)
如果对角线_d_已知
![Formula2](https://github.com/viso-gio/HostedImages/blob/master/AreaSquare2.png?raw=true)
_a_侧和对角线_d_之间的关系是
![对角线](https://github.com/viso-gio/HostedImages/blob/master/DiagonalSquare.png?raw=true)
### 术语
对角线 - 距离正方形对角的距离。角落是90度。
周长 - 正方形中四边​​长度的总和。四边相等的正方形。
### 例子
1. 给定方形的一边长度为8个单位
面积= 8 x 8 = 64单位2
2. 给定方形区域为100单位2
长度= √100 = 10个单位
3. 给定方形对角线为25个单位
面积= 10 2/2 = 50个单位2
4. 给定正方形的周长为20个单位
面积=20/4 2 = 25个单位2
找到给定周长的正方形区域:
要找到给定周长的正方形区域只需将给定的周长除以4.为什么4因为正方形有四4个边。将它除以4可以得到一边的长度。现在说明已知的一方。平方将其自身乘以一次。获得结果后将其转换为平方单位;通过在答案中添加²。
周长20
20/4 = 5 5 x 5 = 25 25 =25²
#### 更多信息:
* [维基百科:广场](https://en.wikipedia.org/wiki/Square#Perimeter_and_area)
* [更多插图](https://www.wikihow.com/Find-the-Area-of-a-Square) -
* [更多](https://sciencing.com/area-square-using-its-perimeter-7991359.html) -