I want to plot two functions with different independent variables in one Plot.
The code below plots my functions in two different plots.
a = 0.67
b = 0.33
p=1
YB=(B* p)/a
YZ=(Z* p)/b
Plot[YB,{B,0,10}, PlotLabels ->"Y=(B* p)/0.67"]
Plot[YZ,{Z,0,10}, PlotLabels ->"Y=(Z* p)/0.33"]
How should I modify this code so that the plots be combined into one plot?

Clear[yb]; yb[b_] := b p / 67and do the same withyz[z_] := ...then plot them as function of the same variable. Or alternatively combine the two plots withShow[Plot[...], Plot[...]]. – MarcoB Dec 07 '21 at 13:54