am I the only one encountering such issues?...
i1 : F=frac(QQ[y])
o1 = F
o1 : FractionField
i2 : a=matrix{{1/2}}*matrix{{y}}
o2 = | 1/2y |
1 1
o2 : Matrix F <-- F
i3 : b=matrix{{y/2}}
o3 = | y/2 |
1 1
o3 : Matrix F <-- F
i4 : a==b
o4 = false
i5 : a_(0,0)===b_(0,0)
o5 = false
i6 : ring a===ring b
o6 = true
i7 : source a===source b
o7 = true
i8 : target a===target b
o8 = true
i9 : a-b==0
o9 = true
am I the only one encountering such issues?...