2
我試圖證明Z3Py無法做出某些證明?
4*n^3*m+4*n*m^3 <= n^4+6*n^2*m^2+m^4
所有n
,m
實數;在線使用Z3Py。
我使用的代碼:
n, m = Reals('n m')
s = Solver()
s.add(ForAll([n, m], n**4+6*n**2*m**2+m**4 >= 4*n**3*m+4*n*m**3))
print s.check()
,輸出是:unknown
。
請你能說出爲什麼Z3沒有獲得"sat"
。