(input: string | ExpressionInput)
| 701 | canonical = ["Sqrt", ["Multiply", 7, ["Sqrt", 13]]] |
| 702 | `); |
| 703 | //note: for the following two cases, 'fully'-canonical transforms 'Divide -> Multiply' (this |
| 704 | //being preferred to facilitate further ops.) |
| 705 | expect(checkPower('{a/3}^{1/3}')).toMatchInlineSnapshot(` |
| 706 | box = ["Power", ["Divide", "a", 3], ["Divide", 1, 3]] |
| 707 | canonForms = ["Root", ["Divide", "a", 3], 3] |
no test coverage detected