跳转到内容

Sage/入门

来自维基教科书,自由的教学读物

命令行界面

[编辑 | 编辑源代码]

在 Ubuntu 终端中

> ./sage
┌────────────────────────────────────────────────────────────────────┐
 SageMath version 8.1, Release Date: 2017-12-07                     
 Type "notebook()" for the browser-based notebook interface.        
 Type "help()" for help.                                            
└────────────────────────────────────────────────────────────────────┘
> sage:

笔记本界面

[编辑 | 编辑源代码]

在 Sage 中输入 "notebook()" 即可进入基于浏览器的笔记本界面。

> sage: notebook()

Sage 基于 Python。除了少数例外,所有命令都使用标准的 Python 语法。

非常简单的计算

[编辑 | 编辑源代码]
  • 数字
 > sage: 1+1
 > 2
  • 符号表达式
 > sage: sqrt(2)
 > sqrt(2)
  • 求解符号表达式
 > sage: sqrt(2).n(digits=100)
 > 1.414213562373095048801688724209698078569671875376948073176679737990732478462107038850387534327641573
 > sage: a = [1,2,3]
 > sage: sum(a)
 > 6
华夏公益教科书