The following code:
var('d,T')
simplify((d^(T + 1)-d)/d)
returns:
(d^(T + 1) - d)/d
Apparently, this should be simplified to:
d^T - 1
What am I doing wrong?
1 | initial version |
The following code:
var('d,T')
simplify((d^(T + 1)-d)/d)
returns:
(d^(T + 1) - d)/d
Apparently, this should be simplified to:
d^T - 1
What am I doing wrong?