Thank you very much!! I don't know how I could have divined this from the documentation. What is the last line (117 Ture) trying to tell me?
I would now like to integrate v[t]. Do I proceed in the same way?`
g[t_] := -9.8;
a[t_] := Piecewise[{{0, t < 0}, {12, 0 <= t < 1}, {25,
1 <= t < 3}, {11, 3 <= t < 8}, {0, t >= 8}}];
Plot[a[t], {t, 0, 10}]
v1 = Integrate[a[t], t];
v2[tj_] := v1 /. t -> tj
v2[t]
Plot[v2[t], {t, -1, 10}]
vt = Integrate[a[t], t];
v[ti_] := vt /. t -> ti;
v[t]
Plot [v[t], {t, 0, 10}]
Plot[g[t], {t, 0, 10}]
Attachments: