Contact
CoCalc Logo Icon
StoreFeaturesDocsShareSupport News AboutSign UpSign In
| Download
Views: 220
Kernel: SageMath (Development)
version()
'SageMath version 8.2.rc2, Release Date: 2018-04-10'

For example, symbolic power of a matrix is fixed: #25082

%display latex
A = matrix(QQ, 3, [[2, 1, 0], [0, 2, 0], [0, 0, 3]]) A
n = var('n') A^n
B = matrix(QQ, 3, [[1, 0, 0], [1, 2, 0], [1, -1, 3]]) B
B ^ (1-n)