I'm thinking, what a variable actually is? It seems like x
is the same thing as identity(x)
in any context. Can we just change any statement that incudes variables to have identity functions of those variables (instead of variables).
For example, 4x + 3y
is the same as 4*identity(x) + 3*identity(y)
.
I have no idea why I need this, just trying to understan are there any flaws in my logic?
Thank you!
identity
a function in some programming language? – ViktorStein Mar 26 '22 at 13:02identity(x^2-4)
, which is not a "variable"? I propose that the answer to the question in the title is "no". – GEdgar Mar 26 '22 at 13:38