I'm finding an error in simplify. The following:
simplify(1 / (( y ^ 2 ) ^ ( 1 / 2 ) ))
generates
abs(y)
whereas it should be
1/abs(y)
I've checked this in the 1.3.1 version from npm, and also the online version on algebrite.org.
Great library though!
I'm finding an error in simplify. The following:
simplify(1 / (( y ^ 2 ) ^ ( 1 / 2 ) ))
generatesabs(y)
whereas it should be1/abs(y)
I've checked this in the 1.3.1 version from npm, and also the online version on algebrite.org. Great library though!