require "matrix"# Represent the point (1,1) as the vector [1,1]unit = Vector[1,1]identity = Matrix.identity(2) # 2x2 matrixidentity*unit == unit # true: no transformation