I am trying to solve the following equation in python with sympy.
13000*1.44**x =1000000
I tried:
x = symbols('x', real=True)
print(solveset(Eq(130000*1.44**x, 1000000), x))
Now this does gives:
ConditionSet(x, Eq(1.44**x - 100/13, 0), Complexes)
Is this equation not suitable for solveset? Do I need to solve this with fsolve?
Thanks in advance
与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…