Function
Also let us notate a state as a function of time. What’s a function?
Example:
if i let f be a function that accepts x as an argument, like
this
f(x)=4x
then
f(5)=4(5)=20
A function f, can also be thought of mapping numbers from a Set A to set B. It’s
written like this
f:A→B
A map just links a thing to another thing.
Example
Let q be a function
q:Z→Zq(x)=3x
q essentially maps all integers to another integer, which is three times
itself.
q(67)=201