Status: Accepted Owner: [email protected] Labels: Type-Defect Priority-Medium
New issue 2734 by [email protected]: (log(positive)**2).is_positive is None http://code.google.com/p/sympy/issues/detail?id=2734
var('p',positive=True)
p
log(p).is_positive # could be +/- (log(p)**2).is_positive # I expect True but get None
The new assumption system gives the same
ask(Q.positive(log(p)**2)) ask(Q.positive(log(p)**2), Q.positive(p))
-- You received this message because you are subscribed to the Google Groups "sympy-issues" group. To post to this group, send email to [email protected]. To unsubscribe from this group, send email to [email protected]. For more options, visit this group at http://groups.google.com/group/sympy-issues?hl=en.
