Advertisement
Guest User

Untitled

a guest
Apr 15th, 2013
56
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.53 KB | None | 0 0
  1. assume f''(x) = 0, prove k * f(x / k) = f(x)
  2.  
  3. f(x) = C_1 * x + C_2
  4.  
  5. assume C_2 is 0
  6.  
  7. k * f(x / k) = k * C_1 * x / k = C_1 * x = f(x)
  8.  
  9.  
  10.  
  11. assume k * f(x / k) = f(x), prove f''(x) = 0
  12.  
  13. assume f''(x) != 0
  14.  
  15. f(x) = C * g(x), where g != identity
  16.  
  17. k * f(x / k) = k * C * g(x / k)
  18.  
  19. As g != identity, the scalar of k is modified to some new value, k_2, where k_2 != 1 / k
  20.  
  21. k * f(x / k) = k * C * g_2(x) * k_2, where k_2 != 1/k
  22.  
  23. g_2 is not a function of k. Thus, k * f(x / k) != f(x), as k * k_2 does not cancel. Thus, f''(x) = 0
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement