Why do both of the following plots appear empty in Mathematica? I tried evaluating the functions $\chi_+$ and $\chi_-$ at various points and it seems valid, so why does Mathematica not plot them?
λ[t_] := 1 + 2 t;
Subscript[t, final] = 2;
τ[u_] := Subscript[t, final] - u;
SubPlus[χ][t_, u_] := Piecewise[{{λ[t], t < τ[u]}, {λ[τ[u]], t > τ[u]}}];
SubMinus[χ][t_, u_] := Piecewise[{{λ[0], t < u}, {λ[t - u], t > u}}];
Plot[SubPlus[χ][t, .4] - SubMinus[χ][t, .4], {t, 0, Subscript[t, final]}]
Plot3D[SubPlus[χ][t, u] - SubMinus[χ][t, u], {t, 0, Subscript[t, final]}, {u, 0, 1}]
Evaluate
. – Jens yesterday