Wondering if there is the study of mutable objects in math. A comment on Is There a Mathematical Symbol For Mutable & Immutable values? says:
In mathematics, it's extremely uncommon to have a mutable variable outside of a code/pseudocode block.
I am interested in mutable objects related to groups in group theory. An example is:
$$a \circ b = a'$$
If that was part of a larger equation, the first operation on $a$ would give $a'$, and then you can't use $a$ anymore.
$$x(a) = a \circ b \land a \circ c$$
would not be a thing necessarily since the first operation changed $a$.
If there isn't any, wondering why not.
This comes up in programming, where you are changing the memory. A simple add operation stores its result in memory, so the memory is changed. Wondering how that sort of stuff is modeled, and just generically mutable objects.