Condition in sum() function?
Hello,
I'm trying to use the exponential form of the Fourier series representation of a function to plot an approximation of said function using the first five terms.
The actual function is f(t) = 1/2 + j/(2pi) * E from (n = -5) to (n = 5) of ((-1)^n - 1)/n * e^(j2npi*t), where n =/= 0
Here I'm using 'E' to indicate summation notation. I apologize if this deviates from an established standard, but I'm having trouble uploading images right now (which would have made the function clearer).
The code I'm using for this function is
var('n, t')
j = i # imaginary unit
expr = ((-1)^n - 1)/n * exp(2*pi*n*j*t) # I think the problem is the division by 'n' here
assume(n, 'integer'); assume(n != 0)
f(t) = 1/2 + j/(2*pi) * sum(expr, n, -5, 5)
However, when I try this, I get the following exception:
RuntimeError: ECL says: Error executing code in Maxima: expt: undefined: 0 to a negative exponent.
This seems to be due to the division by n
in expr
. Are my assumptions not working here? Thus, my actual question is how can I add the condition n != 0
to the sum()
function in sage?
Unfortunately, Maxima's assumption framework is not particularly strong. But Sage definitely won't know about it in your sum, since you are now using
n
also as a kind of dummy variable. I think it might be easier to just make two sums in this case, because 0 is only number you want to avoid in your general case, right?Yes, I only want to avoid n = 0. Thank you for your input, I ended up using the answer below.