Hi there, I have entered the following,
a = var('a', domain='real')
b = var('b', domain='real')
assume(a > 0)
assume(b > 0)
stmt = log(a / b) == log(a) - log(b)
but when I do bool(stmt)
it says False. Why is this? Did I miss some condition?
1 | initial version | asked 2022-10-10 03:04:16 +0100 Anonymous |
Hi there, I have entered the following,
a = var('a', domain='real')
b = var('b', domain='real')
assume(a > 0)
assume(b > 0)
stmt = log(a / b) == log(a) - log(b)
but when I do bool(stmt)
it says False. Why is this? Did I miss some condition?