Task: Finding roots in loop
t = List[1, 2, 3, 4, 5]
fx[x_] := a*x^2 - 5
List[Do[Print[FindRoot[fx[k] == 1, {a, 1}]], {k, 0, 5}]]
Output: Currently the output is as follows:
{a-> 6}
{a-> 1.5}
and so forth
But I want to have the values of a in a List in order to perfom further tasks (Plotting root of f_a against a)

TableandMapare things you should get really comfortable with in general, so look them up in documentation center, and browse around here a bit: http://www.wolfram.com/support/learn/ – ssch Feb 11 '13 at 16:06Printto generate values that you want to process further on. ssch has good advice. TheListyou use doesn't make sense here either. Another advice: Generally you should not define functions that have more dependencies than shown by the variables in the call pattern. In your case, the function depends on a as well, but that is not made explicit. – Sjoerd C. de Vries Feb 11 '13 at 16:48