<div id="comment:0"></div> But it is known to be positive... See the following code: ```python sage: assume(x>0) sage: x.is_real() True sage: x.is_positive() True sage: (x**x).is_positive() True sage: (x**x).is_real() False ``` For comparison, this is how SymPy handles this: ```python In [2]: x = Symbol('x', positive=True) In [3]: x.is_positive Out[3]: True In [4]: x.is_real Out[4]: True In [5]: (x**x).is_positive Out[5]: True In [6]: (x**x).is_real Out[6]: True ``` Depends on #21963 CC: @rwst Component: **symbolics** Keywords: **is_real, days79** Author: **Peleg Michaeli, Ralf Stephan** Branch/Commit: **[`c883299`](https://github.com/sagemath/sagetrac-mirror/commit/c88329909934b9561314344347a7bd7c3c0ec755)** Reviewer: **Ralf Stephan, Peleg Michaeli** _Issue created by migration from https://trac.sagemath.org/ticket/21940_