Closed aliang8 closed 7 years ago
2x/3 -> 2 / 3 x and y^3 * 5 -> 5 y^3
2x/3 -> 2 / 3 x
y^3 * 5 -> 5 y^3
Fractional Polynomial can possibly be represented by :
export const FRACTIONAL_POLYNOMIALS = defineRuleString('#a #b / #c', '#a / #c #b', {a: query.isNumber, b: query.isIdentifier, c: query.isNumber})
You'll have to rebase before I can merge.
2x/3 -> 2 / 3 x
andy^3 * 5 -> 5 y^3
Fractional Polynomial can possibly be represented by :