User Portlet User Portlet

Discussions
I understand how it works but I think it is confuse. See this! In[1]:= t = 7 Out[1]= 7 In[2]:= Table[t, {t, t, 10}] Out[2]= {7, 8, 9, 10} In[4]:= Table[t, {t, t, t + t}] Out[4]= {7, 8, 9, 10, 11, 12, 13, 14}
Thanks to everyone for their answers. I understand, however, why if I write (1+ii) (3-ii) Mathematica replies 4 + 2i (only i)? Only when I change the output Font size appears 4 + 2ii. Should not keep Mathematica the input format (if input I...
From Help: The currently supported export formats: In[1]:= $ExportFormats Out[1]= {"3DS", "ACO", "AIFF", "AU", "AVI", "Base64", "Binary", "Bit", "BMP", "Byte", \ "BYU", "BZIP2", "C", "Character16", "Character8",...
Hello everyone, I'm newbie. Why in {1, x^1, x^2, x^3} /. x^n_ -> r[n] out {1, x, r[2], r[3]} ? I expected {1, r[1], r[2], r[3]} Thanks in advance.