0

What is a function's argument? I often see '$f(x,y)$ has two arguments $x$ and $y$, Is having two arguments either the fact that the function can take two numbers, or does it have two specific variables which are tied to it? It seems wrong to talk this way, as I can easily have $f(x)$ or $f(z)$ and that doesn't imply $x=z$.

Is, 'in the expression $f(x,y)$ $x$ and $y$ are the arguments (the number $x$ and the number $y$ are acting as the inputs).

  • 1
  • I don‘t really understand your question. The input is a pair $(x,y)$ and the output is $f(x,y)$. – Qi Zhu Sep 22 '22 at 09:05
  • This is more of a programming question. – Benjamin Wang Sep 22 '22 at 09:06
  • I interpret is as a purely terminological question. The answer is simple. Are you happy with saying "the input of a function"? Then "argument"="input". They are exact synonims – Giuseppe Negro Sep 22 '22 at 09:21
  • If I'm evaluating $f(x)$, then in that context I might say that $x$ is the "argument" to the function $f$. But more often I prefer the word "input", which sounds simpler and less fancy to me. So if I'm plugging $x$ into $f$ I'll say things like "$x$ is the input to the function $f$". – littleO Sep 22 '22 at 09:23
  • A function, its domain, and its codomain, are declared by the notation f: X→Y, and the value of a function f at an element x of X, denoted by f(x), is called the image of x under f, or the value of f applied to the argument x. – Ivan Kaznacheyeu Sep 22 '22 at 13:49
  • Argument is dumb variable which serves as function input. When the argument is ordered pair, triple et cet., components of the argument are also called arguments (first argument, second argument and so on). – Ivan Kaznacheyeu Sep 22 '22 at 13:51

2 Answers2

0

The notation $f(x,y)$ yields the name of the function $f$ with argument $(x,y)$ with named variables $x$ & $y$ where $(x,y)$ is an element of the function domain which here is left anonymous.

-1

We can start from a natural language example, the expression "The capital of France is Paris".

In it we have two names: "Paris" and "France". If we replace into this expression the name "France" with a different name, e.g. "Italy" what we get is a different expression with a different meaning. And the same if we replace the name "Paris" with "Rome".

Having performed this "operation", we may imagine that the expression is composed of a stable part: "The capital of... is___", expressing the relation between two objects (denoted by the names) standing in this relation.

We can describe this fact in an abstract way saying that the first component is a function and the latter its arguments.

Freely derived from G.Frege's Begriffsschrift (1879).

This is the ubiquitous use of functions in mathematics: the sine and cosine functions are trigonometric functions that, for a specified angle, express the ratio of the length of the side that is opposite that angle to the length of the longest side of the triangle (the hypotenuse) and the ratio of the length of the adjacent leg to that of the hypotenuse, respectively.

For an angle $\theta$, the sine and cosine functions are denoted simply as $\sin \theta$ and $\cos \theta$, where to be precise, $\sin$ and $\cos$ are the names of the two functions and $\theta$ is the name of the argument.

See also the post Concept of a function and idea of a formula as a function for the modern origin of the mathematical concept of function as a sort of "rule" [expressed symbolically] that, having received a value as “input” allows us to calculate a corresponding “output” value.


Regarding your misunderstanding: "I can easily have $f(x)$ or $f(z)$ and that doesn't imply $x=z$", you have to try to understand the abstract concept of function, that we can express in many ways.

A function, see the natural language above, can be described with the expression "Blah blah ..." where the dots denotes the argument place, i.e. the empty place to be filled with the name of the input value.

The customary usage is $f(x)$ but we can as well use $f( \ )$ or $f(\_)$. But we may have problems with functions of more than one argument, where we must write something like $f(\circ, \square)$ or $f(\__{1},\__{2})$.

Common practice is $f(x,y)$.