Pony of Shadows

Queen of Truth & King of Practice


在Mathematica中进行算符运算

Basics

  • (没啥用的)无交换律的乘法符号
a ** b
  • 矩阵乘法
a.b
  • 替换(substitution)
a /.{a->b}
  • 模式识别的替换
Sin[z] + Sin[3 z^2] + Cos[z] /. {Sin[X_] :> Sin[2X]}

还可识别多个符号、不定数量的符号

References:

NCAlgebra

The most recommended way.