We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 333c0ae commit a169204Copy full SHA for a169204
2 files changed
README.md
@@ -28,6 +28,7 @@
28
- [包管理工具](./pip.md)
29
- [基础语法](./basic-syntax.md)
30
- [变量类型](./variable-types.md)
31
+- [复数](./complex.md)
32
- [运算符](./operators.md)
33
- [if判断](./if-statement.md)
34
- [循环](./loops.md)
complex.md
@@ -0,0 +1,10 @@
1
+# 复数
2
+
3
+> 我们把形如 `a+bi`(a,b均为实数)的数称为复数,其中 `a` 称为实部,`b` 称为虚部,i称为虚数单位。当虚部等于零时,这个复数可以视为实数;当z的虚部不等于零时,实部等于零时,常称z为纯虚数。复数域是实数域的代数闭包,也即任何复系数多项式在复数域中总有根
4
5
+- 详情见参考文献
6
7
+## 参考
8
9
+- [复数](https://baike.baidu.com/item/%E5%A4%8D%E6%95%B0/254365?fr=aladdin)
10
+- [复数——概念和代数运算](https://blog.csdn.net/qq_39670434/article/details/79678103)
0 commit comments