First time here? Check out the FAQ!
asked 9 years ago
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?