What is the meaning of argument in the following phrase?

  • Thread starter Thread starter Femme_physics
  • Start date Start date
  • Tags Tags
    Argument
Click For Summary

Discussion Overview

The discussion centers around the meaning of the term "argument" as used in a specific phrase, with participants seeking clarification on its definition in mathematical and programming contexts.

Discussion Character

  • Conceptual clarification, Technical explanation

Main Points Raised

  • One participant asks for a definition of "argument" in the provided context, expressing confusion over its usage.
  • Another participant explains that in mathematics, the "argument" of a function refers to the value applied to the function, providing examples such as f(x) where x is the argument, and sin(3t) where 3t is the argument.
  • A different participant notes that in computer programming, "argument" describes the values passed to function parameters when a function is called, illustrating this with a C programming example.
  • Some participants acknowledge the clarification provided, indicating that the term "argument" is commonly used in these contexts.
  • One participant humorously recalls a past experience where students were confused by the term "product" in relation to multiplication.

Areas of Agreement / Disagreement

Participants generally agree on the definition of "argument" in both mathematical and programming contexts, though some express initial confusion about its usage.

Contextual Notes

The discussion does not explore potential nuances or variations in the use of "argument" across different fields or contexts beyond those mentioned.

Femme_physics
Gold Member
Messages
2,548
Reaction score
1
What is the meaning of "argument" in the following phrase?...

Can someone define "argument" in this context? (attached file)

I never heard it before so it confuses me...
 

Attachments

  • argument.JPG
    argument.JPG
    90.6 KB · Views: 808
Mathematics news on Phys.org


It looks like the "argument" of the function is just the value to which you apply the function.
If the previous frase sounded confusing: the argument of f(x) is x. So in this case: the argument of sin(3t) is 3t. So you see that there is a coefficient 3 in the argument.
 


The term "argument" is used heavily in computer programming to describe a value that a function parameter is given when the function is called.

For example, a function might be defined in C as
Code:
double power( double x, int exponent)
{
   .
   .
   .
}
In the function definition above, the function parameters are x and exponent. The function would be called like this:
Code:
result = power(7.0, 2)
The arguments to this function are 7.0 and 2.

In the attachment, "argument" is used in the same sense.
 


Ah...that clears it. Just the first time I hear it. Thanks :)
 


Femme_physics said:
Ah...that clears it. Just the first time I hear it. Thanks :)

Argument of a function in that context is quite a commonly used term.
 


I once had students ask about using the word "product" to mean the result of a multiplication!
 

Similar threads

  • · Replies 10 ·
Replies
10
Views
2K
  • · Replies 18 ·
Replies
18
Views
3K
  • · Replies 6 ·
Replies
6
Views
2K
  • · Replies 45 ·
2
Replies
45
Views
3K
  • · Replies 1 ·
Replies
1
Views
1K
  • · Replies 2 ·
Replies
2
Views
1K
  • · Replies 58 ·
2
Replies
58
Views
5K
  • · Replies 4 ·
Replies
4
Views
2K
  • · Replies 3 ·
Replies
3
Views
2K
Replies
9
Views
1K