p1 = plot(exp(-1/2*x)*cos(2*pi*x),(x,0,6), rgbcolor=(1,0.75,0), legend_label='exp(-1/2*x)*cos(2*pi*x)')
p2 = plot(exp(-1/2*x),(x,0,6),rgbcolor=(1,0,0), legend_label='exp(-1/2*x)')
p = p1 + p2
p.set_legend_options(loc = 4, shadow=True)
p.axes_label_color((0,0,1))
p.axes_labels(['$x$','$y$'])
show (p)