Normalize 12*2^x*3^y to 2^(2+x)*3^(1+y)

Issue #137 resolved
Axel Kramer repo owner created an issue

Normalize Times() expressions with leading integer factors and integer powers as factors if possible.

Examples:

12*2^x*3^y ==> 2^(2+x)*3^(1+y)

8*2^x ==> 2^(3+x)

12*2^x ==> 3*2^(2+x)

Comments (3)

  1. Log in to comment