sympyの方程式の指数を単純化する方法
from sympy import symbols
a,b,c,d,e,f=symbols('abcdef')
j=(a**b**5)**(b**10)
print j
(a**(b**5))**(b**10) #ans even after using expand simplify
# desired output
a**(b**15)
sympyでそれが不可能な場合、どのモジュールをPythonにインポートする必要がありますか?
'b'を実数として定義した場合でも編集し、他のすべての記号も編集します
b = symbol('b'、real = True)単純化された指数を取得しない指数が定数の場合にのみ単純化
a=symbols('a',real=True)
b=symbols('b',real=True)
(a**5)**10
a**50 #simplifies only if exp are numbers
(a**b**5)**b**10
(a**(b**5))**b**10 #no simplification