I have defined two function like f[Rp_] := Sin[0.5 ArcSin[Sqrt[(3 Rp^2)/((2 - Rp)^2 + 3 Rp^2)]]]
and f[Rm_] := Sin[0.5 ArcSin[Sqrt[(3 Rm^2)/((2 + Rm)^2 + 3 Rm^2)]]]
.
Plotting them as Plot[(2/Sqrt[6]) f[Rp] (2/Sqrt[6]) f[Rp], {Rp, 0.0, 1.3},
PlotRange -> {{0, 1.3}, {0, .23}}, Frame -> True,
FrameLabel -> {d/a, Subscript[Sin\[Theta], 13]},
PlotStyle -> Directive[Red, Thick],
LabelStyle -> Directive[Black, Bold]]
and Plot[(2/Sqrt[6]) f[Rm], {Rm, 0.0, 1.3},
PlotRange -> {{0, 1.3}, {0, .23}}, Frame -> True,
FrameLabel -> {d/a, Subscript[Sin\[Theta], 13]},
PlotStyle -> Directive[Red, Thick],
LabelStyle -> Directive[Black, Bold]]
The outputs are as follows..... Mismatch between Axes -> True and Frame ->True
Now, How can I combine them, I've tried with Plot[{(2/Sqrt[6]) f[Rp], (2/Sqrt[6]) f[Rm]}, {Rm, Rp, 0.0, 1.3},
PlotRange -> {{0, 1.3}, {0, .23}}, Frame -> True,
FrameLabel -> {d/a, Subscript[Sin\[Theta], 13]},
PlotStyle -> Directive[Red, Thick],
LabelStyle -> Directive[Black, Bold]]
But I'm not getting properly. Probably I'm making mistake in {Rm, Rp, 0.0, 1.3}
.
Plot[{Sin[x], Sin[2 x], Sin[3 x]}, {x, 0, 2 Pi}, PlotLegends -> "Expressions"]
is the second example in the help ffile forPlot
. Mimic it. – bill s May 9 at 13:58f
twice. – bill s May 9 at 14:01