Jak w temacie chciałabym umieścić na jednym wykresie kilka funkcji:
Kod: Zaznacz cały
f[x_] := x - 1
g[x_] := x/2
h[x_] := x
j[x_] := x/2 - 1
s1 = Plot [f[x], {x, -1, 2}, AxesLabel -> {"x", "y"}]
s2 = Plot[g[x], {x, -1, 2}, AxesLabel -> {"x", "y"}]
s3 = Plot[h[x], {x, 2, 4}, AxesLabel -> {"x", "y"}]
s4 = Plot[j[x], {x, 2, 4}, AxesLabel -> {"x", "y"}]
s5 = ListPlot[{{2, 1}, {2, 2}}]Kod: Zaznacz cały
Show[s1, s2, s3, s4, s5]Pomocy.

