Function Notation: Understanding h(t) & t(h)

  • Thread starter Thread starter Yuqing
  • Start date Start date
  • Tags Tags
    Function Notation
AI Thread Summary
The discussion centers on the notation and understanding of functions and their inverses, specifically h(t) and t(h). Participants clarify that while h denotes a function, in h(t), it represents the function's output for a specific input t. The confusion arises from using the same symbol for both the function and its input, which is common in mathematics but can lead to misunderstandings. The conversation emphasizes that h is a function, while h(t) is a numerical value derived from that function. Ultimately, the distinction between a function and its evaluated output is crucial for clarity in mathematical notation.
Yuqing
Messages
216
Reaction score
0
I have a simple problem here, some confusion on my part.

I've just started learning about functions and their inverses. We've used traditional f^(-1) to denote the inverse. But recently, after learning real life applications, we learned another form. Say we have h(t) as a function of hour in terms of temperature. The inverse is now t(h) for temperature in terms of hours. My confusion is, h is the name of the function in h(t) but became the input for t(h) and vice versa for t.

How can h serve both as the name of a function and a numerical variable at the same time?
 
Mathematics news on Phys.org
Clever question!

Answer:
With a nice bit of abuse of notation! :smile:

Let us be a bit "anal" about this, and look upon it the folllowing way:

Consider two sets of numbers, \mathcal{H},\mathcal{T}
(for concreteness, regard both as some interval)

For simplicity, we let an arbitrary member of \mathcal{H} be called "h", whereas an arbitrary member in \mathcal{T} be called "t".

Now, suppose you have a bi-jective mapping from \mathcal{H} to \mathcal{T} that we choose to call T(h).

Since T(h) is bijective, there exists an bijective mapping from \mathcal{T} to \mathcal{H}[/tex], H(t), that can be regarded as the INVERSE of T(h), i.e, we will have, for every h in \mathcal{H}[/tex], H(T(h))=h, and for every t in \mathcal{T}, T(H(t))=t.<br /> <br /> Instead of carefully distinguishing between different labels of the sets, the mappings and the elements of the set, we simplify the notation by using h and t both as element designations and as names of mappings, taking due care to the context in which it is framed to avoid misunderstandings..<img src="https://cdn.jsdelivr.net/joypixels/assets/8.0/png/unicode/64/1f642.png" class="smilie smilie--emoji" loading="lazy" width="64" height="64" alt=":smile:" title="Smile :smile:" data-smilie="1"data-shortname=":smile:" />
 
Just to confirm my understanding.

Basically the h in h(t) represent a set while the h in t(h) represents a member of that set. For simplicity reasons, we just choose to make them the same.

Thanks for clearing that up.
 
Yuqing said:
I have a simple problem here, some confusion on my part.

I've just started learning about functions and their inverses. We've used traditional f^(-1) to denote the inverse. But recently, after learning real life applications, we learned another form. Say we have h(t) as a function of hour in terms of temperature. The inverse is now t(h) for temperature in terms of hours. My confusion is, h is the name of the function in h(t) but became the input for t(h) and vice versa for t.

How can h serve both as the name of a function and a numerical variable at the same time?

This might work in physics and engineering, but it's not a very good way to think about it in math.

When you say something like h(t) = t^2 - 1, you're defining a function called h. After you have stated that, h is a mathematical object, just like 1, pi, or the empty set. The function is NOT h(t), even though it is often written that way. The notation h(t) means that h is evaluated with the input t. You can see the difference clearly by looking at the types involved.

h: R -> R (h is a function from real numbers to real numbers)
t: R (t is a real number)
h(t): R (h(t) is a real number)

The name of the parameter is meaningless after the definition. You just refer to the function as h. And in the definition, you could have used any name for the parameter. If you let h(t) = t^2 - 1, it's equivalent to h(x) = x^2 - 1.

There isn't a standard notation for it in mathematics, but in computer science, there is a handy notation for creating functions "literal". What I mean by this is when you define a function using h(t) = t^2 - 1, you really haven't isolated f on the left hand side. You are defining f when it is applied an argument x. But how would you isolate that f on the left hand side of the equation? Sometimes we use notation that looks like this:

f = t -> t^2 - 1

The "t ->" part indicates we are creating a function. This is similar to how we use { ... } to create a set. The "t" on the left hand side gives the name of the argument, which exists within the body of the function. This "t" variable now works very similarly to how the i, j, or k work in summation notation or dx, dy, dz work in an integral. They are dummy variables and you can change them at a whim as long as you change them everywhere inside.

Anyway, that's my little notation rant. I think it's nice and neat.

The f^-1 notation isn't the greatest, but it works very well when you think of functions as a group under composition. We notate function composition as if it were multiplication... so fg = f º g, and (fg)(x) = f(g(x). When we do this, the f^-1 notation makes perfect sense, because f * f^-1 = f / f = 1 (where 1 is the identity function and the identity element of the group).
 
Yuqing said:
Just to confirm my understanding.

Basically the h in h(t) represent a set while the h in t(h) represents a member of that set. For simplicity reasons, we just choose to make them the same.

Thanks for clearing that up.

Also, it's not right to think of h as a "set". It's a function. It's a different kind of creature entirely.

Set theoretically, you can model functions in terms of sets... a function is a set of pairs (x, y) where the x's are unique in the set, blah blah blah. But a function ISN'T just a set. For one thing, you can just as easily model sets in terms of functions. But these kinds of constructions are just to show that our intuitive notion of the concept of a function is well defined and valid in a formal setting.
 
Yuqing said:
I have a simple problem here, some confusion on my part.

I've just started learning about functions and their inverses. We've used traditional f^(-1) to denote the inverse. But recently, after learning real life applications, we learned another form. Say we have h(t) as a function of hour in terms of temperature. The inverse is now t(h) for temperature in terms of hours. My confusion is, h is the name of the function in h(t) but became the input for t(h) and vice versa for t.

How can h serve both as the name of a function and a numerical variable at the same time?

It doesn't. h is a function, h(t) is a number. "h" refers to the function, "h(t)" refers to the specific value h has at a specific value of t.

You can think of a function as a set of ordered pairs: h= {t, h(t)}. That is, every member of h is a pair, (t, h(t)) where t is a value of the independent variable and h(t) is the value h assigns to that t.
 
Thread 'Video on imaginary numbers and some queries'
Hi, I was watching the following video. I found some points confusing. Could you please help me to understand the gaps? Thanks, in advance! Question 1: Around 4:22, the video says the following. So for those mathematicians, negative numbers didn't exist. You could subtract, that is find the difference between two positive quantities, but you couldn't have a negative answer or negative coefficients. Mathematicians were so averse to negative numbers that there was no single quadratic...
Insights auto threads is broken atm, so I'm manually creating these for new Insight articles. In Dirac’s Principles of Quantum Mechanics published in 1930 he introduced a “convenient notation” he referred to as a “delta function” which he treated as a continuum analog to the discrete Kronecker delta. The Kronecker delta is simply the indexed components of the identity operator in matrix algebra Source: https://www.physicsforums.com/insights/what-exactly-is-diracs-delta-function/ by...
Suppose ,instead of the usual x,y coordinate system with an I basis vector along the x -axis and a corresponding j basis vector along the y-axis we instead have a different pair of basis vectors ,call them e and f along their respective axes. I have seen that this is an important subject in maths My question is what physical applications does such a model apply to? I am asking here because I have devoted quite a lot of time in the past to understanding convectors and the dual...
Back
Top