This is a followup to this question.
The following code Plot[{Sin[x], Sin[2 x], Sin[3 x]}, {x, 0, 2 Pi}] results in the following plot: 
The following code:
Plot [Table[Sin[i x], {i, 1, 3}], {x, 0, 2 Pi}]
Results in the following plot:
This is kind of strange, specifically since the output of Table[Sin[i x], {i, 1, 3}]
Equals {Sin[x], Sin[2 x], Sin[3 x]}
Are these not essentially identical expressions? Why is Mathematica not producing the same plot?

Tableis interpreted as one. Wrap theTableinEvaluate, it will look the same as the first plot. – Jan 11 '17 at 16:11Plothas theHoldAllattribute, so in the first case,Plotis fed something that is already a list of three expressions by the timePlotevaluates, while in the second case, theTablehas not yet evaluated into a list of three expressions. AddEvaluate@in front ofTableto circumvent theHoldAllattribute. – Marius Ladegård Meyer Jan 11 '17 at 16:13Plot[Table[Sin[i x], {i, 1, 3}], {x, 0, 2 Pi}, Evaluated -> True]– Carl Woll Jan 11 '17 at 17:51