1 | initial version |
For this expression, you can use simplify_rational()
instead of simplify()
:
sage: var('d, T')
(d, T)
sage: f = (d^(T+1)-d)/d
sage: f.simplify_rational()
d^T - 1
Note that in this case you also have:
sage: f.expand()
d^T - 1
2 | No.2 Revision |
For this expression, you can use simplify_rational()
instead of simplify()
:
sage: var('d, T')
(d, T)
sage: f = (d^(T+1)-d)/d
sage: f.simplify_rational()
d^T - 1
Note that in this case you also have:
sage: f.expand()
d^T - 1
Note that in a more general case, the "most simplified" expression is obtained with the command simplify_full()
:
sage: f.simplify_full()
d^T - 1