0

Can I move a constant out of a continuous function? When?

If I have $f(\frac{1}{k}g(x))$

Then is this (ever) same as

If I have $\frac{1}{k}f(g(x))$?

mavavilj
  • 7,270

2 Answers2

2

Try with $g(x) = x$ and $f(x) = x^2$.

The property of $f$ that decides whether you can do that or not, is homogeneity. For example, linear functions, such as $f(x) = 21 x$ are homogeneous (of degree one), but $f(x) = x^2$ is not.

Antoine
  • 3,439
1

No. For example take $f(x)=x^2$ and $g(x)=x.$

Then

$$f(\frac{1}{k}g(x))=\frac{1}{k^2}x,$$

but

$$\frac{1}{k}f(g(x))=\frac{1}{k}x.$$

Fred
  • 77,394