I have a sequence of expressions
1, x, x^2, ..., x^5 I want to define a sequence of functions out of it, what should I do? Namely I want to define a vector of functions with elements: $$ f_1 = 1, f_2 = x, ..., f_6 = x^5 $$ Any help is appreciated.
f_1=1,f_2=x,...,f_6=x^5isn't maathematica syntax (or at least it's not what you want it to be) $\endgroup$vectors = Function /@ Table[#^k, {k, 0, 6}], etc., which directly answers the present question. $\endgroup$