Let f(x,y) = x^n * y^m. If x is doubled and y is halved, the new value of f is:
A. 2^(n-m) * f
B. 2^(m-n) * f
C. 2(n-m) * f
D. 2(m-n) * f
GATE 2014 · General Aptitude · Numerical Computation · easy
Answer: The new value of f is 2^(n-m) * f.
- Substitute scaled values into f: = 2^n * x^n * y^m / 2^m = 2^n * 2^(-m) * x^n * y^m.
- Factor out in terms of f(x,y): New f = 2^(n-m) * f.