Home > other >  Why can't sympy reduction?
Why can't sympy reduction?

Time:09-22

The import sympy as sp
The from sympy import *
X=var (' x ', positive=True, real=True)
A='(x 2) * * * * (1/2)'
Print (simplify (powsimp (var (A))))
Print the result: (x 2) * * * * (1/2)

Why can't we simplify to x, please?
  • Related