Community:
Why does this happen? I have a function where I define a value at the singularity. When called, it returns the proper value f[1] = 1, but when called in a List, it returns 1/0!
In[2774]:= f[x_] := 1/(1 - x);
f[1] = 1;
f[1]
f[{0, 1}]
Out[2776]= 1
During evaluation of In[2774]:= Power::infy: Infinite expression 1/0 encountered. >>
Out[2777]= {1, ComplexInfinity}
Any thoughts?
v/r
-Ado