f = plot(e^(-1/2*x)*cos(2*pi*x), (x,0,6,), rgbcolor=(1,1,0), legend_label='e^(-1/2*x^2)*cos(2*pi*x)')
g = plot(e^(-1/2*x), (x,0,6), rgbcolor=(0,0,1), legend_label='e^(-1/2*x)')
h = g+f
h.axes_label_color((0,1,0))
h.axes_labels(['$X-Achse$','$Y-Achse$'])
h.set_legend_options(shadow=True)
h.set_legend_options(loc=(0.6,0.1))
show (h)