I have such code:
f[x_] = x + 0.4;
x[t_] = Cos[t];
y[t_] = Sin[t];
Show[Plot[f[x], {x, 0, 1.2}, PlotRange -> {0, 1.5}, PlotStyle -> Red,
AxesOrigin -> {0, 0}, AspectRatio -> 0.75],
ParametricPlot[{x[t], y[t]}, {t, 0, 2*Pi},
PlotRange -> {{0, 1.2}, {0, 1.5}}, PlotStyle -> Blue,
AxesOrigin -> {0, 0}, AspectRatio -> 0.75]]
and obtain the graph:
Could you help me, how I can hide the small piece of the blue curve left of the ordinate axis?


{t, 0, Pi/2}as the limits. $\endgroup$Show, then only the first specification ofPlotRangeis active. Therefore, If you changePlotRange -> {0, 1.5}toPlotRange -> {{0, 1.2}, {0., 1.5}}in the first plot the superfluous part disappears. $\endgroup$Showuse the optionPlotRangePadding -> 0. Most of your options should be moved toShowto avoid unnecessary duplication, e.g.,Show[Plot[f[x], {x, 0, 1.2}, PlotStyle -> Red], ParametricPlot[{x[t], y[t]}, {t, 0, 2*Pi}, PlotStyle -> Blue], PlotRange -> {{0, 1.2}, {0, 1.5}}, AxesOrigin -> {0, 0}, AspectRatio -> 0.75, PlotRangePadding -> 0]$\endgroup$