thunderkid
thunderkid
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...
In 1.2.1, running simplify on this: `a - a * 5 * ( 1 - a + b ) * ( - 1/2 + a - b + a *...
In version 1.3.0 and 1.3.1, If you run `simplify` on the following polynomial: ```- i * s ^ 2 * ( - 19.6 * m ^ 2 * x /...
Running this: ```roots(-1+a/(2+b),a)``` gives this ugly thing: ```b/((b/(2+b)+2/(2+b))*(b/((2+b)*(b/(2+b)+2/(2+b)))+2/((2+b)*(b/(2+b)+2/(2+b)))))+2/((b/(2+b)+2/(2+b))*(b/((2+b)*(b/(2+b)+2/(2+b)))+2/((2+b)*(b/(2+b)+2/(2+b)))))``` instead of just giving `2+b`. Even after running this through `simplify` it doesn't get to the proper answer. However if you run...
Running ```math.rationalize('1/(x^-2)')``` gives the error ```Cannot read property '1' of undefined```. However, running ```math.rationalize('1/(x^-1)')``` gives the result `x` as you'd expect. I'm using `mathjs 6.5.0`. Haven't tested other versions.
**Version**: 1.2.1 **Module**: quill-async **Database**: mysql I'm trying to call a stored procedure using infix. ``` def myProcToyOdd = quote { (id: String) => infix"""call Try1()""".as[Query[Int]] } def procToyOdd() =...