I am trying to write a mathematical notation for a set of variables and their values over time.
A function $f$ should map each of $N$ variables to a value of $0$ or $1$ over time and the results are stored in a set $S$ in an accumulative manner.
For example:
- $N = 3$
- variables: $a, b, c ∈ [0, 5]$
- time($t$): $0...3$
time f(a),f(b),f(c) S
====== =============== ===================
0 0,0,0 {(a,0),(b,0),(c,0)}
1 0,1,0 {(a,0),(b,1),(c,0)}
2 1,0,0 {(a,1),(b,1),(c,0)}
3 1,0,1 {(a,1),(b,1),(c,1)}
How can I write a mathematical notation for set $S$?
Possibly you could use state notation as I proposed at this question, where your state = time.