You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 

18 lines
515 B

  1. Maybe a mathematical example will make things clearer. Let's say we have the function:\\
  2. $f(x, y) = y / x$
  3. \vspace{\baselineskip}
  4. \\
  5. \pause
  6. In order to evaluate the function for $x = 2$ and $y = 3$ we would do:\\
  7. $f(2, 3) = 2 / 3$\\
  8. and be done.
  9. \vspace{\baselineskip}
  10. \\
  11. \pause
  12. However, how about we just put in x first and make a new function. Since x is gone, we can write:\\
  13. $g(y) = f(2, y) = y / 2$
  14. \vspace{\baselineskip}
  15. \\
  16. \pause
  17. And in a second step we solve the function $g(y)$:\\
  18. $g(3) = f (2, 3) = 3 / 2$