Hi Gaurav,
Manipulate
scopes local variables by default. To avoid that, add the option LocalizeVariables -> False
.

To show the actual values of k
, a
, phi
Manipulate[
Plot[{Sin[x], Evaluate[a Sin[k x + phi]]}
, {x, 0, 2 Pi}
, PlotLabels -> Placed["Expressions", Above]]
, {k, .1, 4}, {a, 1, 2}, {phi, 0, 2 Pi}
, LocalizeVariables -> False]
