Is it possible to write a function $f$ of the variable $x$ $f(x) = 2x$ in the following way? Imagine $u$ is a variable and $u = x + 3$. Can I write the function $f$ as $f(u - 3) = 2 \times (u - 3)$? I have seen this somewhere but I find it odd. For me, what's inside the brackets is the variable of the function, so I would write it like this: $f(u) = 2 \times (u - 3)$.
So $f(x = 1) = 2 \times 1 = 2$
$f(u = 4) = 2 \times (4 - 3) = 2$
Thanks. C.