How Many Types of Integrals Exist and Can They Be Classified?

  • Thread starter roger
  • Start date
  • Tags
    Function
In summary, functions cannot be one-to-many as they are defined to uniquely associate elements from the domain with an element of the image. They can be one-to-one or many-to-one, but never one-to-many. The inverse function of a many-to-one function is only possible if the function is a bijection. A bijection is a function that is one-to-one and onto. The difference between bijection and surjection is that a bijection is one-to-one, while a surjection maps every element in the codomain to at least one element in the domain. Generalizing a function means allowing it to be many-valued, which is usually done for convenience. The range of a function is the set of elements in the cod
  • #1
roger
318
0
why can't functions be one to many ? from reals to reals ?
 
Mathematics news on Phys.org
  • #2
Because we define a function otherwise, it uniquely associates elements from the domain with an element of the image.
They can be one-to-one or more generally, many-to-one but never one-to-many.
 
  • #3
so its a convention ?

how about the inverse function of a many to one function ?
 
  • #4
A function is only invertible iff it is a bijection (although you can generalize this for many-to-one functions such as sin(x) etc, by limiting the range to obtain the 'principle value').
 
Last edited:
  • #5
whats the differnce between bijection and surjection ?

what do you mean by generalise ?
 
  • #6
If f:A->B is a surjection, every element of B is the image of an element of A.
A bijection is one-to-one.

With generalize I meant that strictly, only bijections are invertible. We can however define inverse functions for many-to-one's such as sin(x), although we have to realize that this is no longer a many-to-one but a one-to-many then, which can be 'solved' in a way by using the principle value.
 
  • #7
by image do you mean range of function ?

but looking it up on mathworld, it shows two diagrams both of which are identical except there are a few points which are outside the range

Please could you make the differences clearer ?
 
  • #8
Properly a function is single valued, that is part of its definition. Some times we like to relax this to allow many valued things, usually for convenience, thus given f: X --> Y we may use the symbol f^{-1}(U) and call it the inverse image of U a *SUBSET* of Y and is the (possibly empty) set of elements in X mapped to U, this is called an abuse of notation, and it is thought of as acting on SUBSETS of the image.The range of a function is the set Y in the above, the image is the suibset of Y that f maps onto.

Occasionally one to many things are called correspondences instead of functions, we can make them functions by thinking of them as mapping subsets of X to subsets of Y instead of points to points.
 
  • #9
I just want to point out a small terminology annoyance.

If f is a function from X to Y, f:X-->Y, then

the domain is the set X
the codomain is the set Y
the image is the set of elements y in Y that have at least one x in X where f(x)=y

These three are pretty much universal (I've never seen them defined otherwise). On the other hand, range is sometimes used to refer to what I've called image above and sometimes to what I've called the codomain, so beware of how the writer has defined it.
 
Last edited:
  • #10
Very true, i think i tend to use whatever definition the course I'm teaching requires me to use. image and codomain certainly are universal.
 
  • #11
Right, thanks - it's a bit confusing to me since I'm not used to the Englisch terminilogy (in Dutch, we have domain, codomain and image, but nothing for 'range' afaik).
 
  • #12
As an addition to the list, preimage is generally used to talk about g-1(B) if the set B is in the image of the domain of g. Ie., the preimage of B under g. This is the same notation matt was referring to.
I find the term preimage more geometrically pleasing than inverse, especially when buried in layers of differential geometry.
 
  • #13
How many different types of integrals are there ?
by type, I mean the way they are to be evaluated OR integrals which are non existent

and can they be classified ?
 

FAQ: How Many Types of Integrals Exist and Can They Be Classified?

What is a function?

A function is a block of code that performs a specific task and can be reused multiple times throughout a program. It typically takes in input parameters, performs operations on those parameters, and returns a result.

What is the purpose of a function?

The purpose of a function is to break down a complex problem into smaller, more manageable pieces. By using functions, programmers can organize their code and make it easier to read, debug, and maintain. They also allow for code reusability, reducing the amount of duplicate code in a program.

How do you define a function?

In most programming languages, a function is defined using the function keyword, followed by the function name, a set of parentheses for any input parameters, and a set of curly braces that contain the code to be executed.

What is the difference between a function declaration and a function expression?

A function declaration is a statement that defines a function and is hoisted to the top of its scope, meaning it can be called before it is defined. A function expression, on the other hand, is a function that is assigned to a variable or passed as an argument to another function. It is not hoisted and can only be called after it has been defined.

How do you call a function?

To call a function, you simply use its name followed by a set of parentheses. If the function has any required parameters, you must pass in the appropriate arguments within the parentheses. The function will then execute and return a result if necessary.

Similar threads

Replies
1
Views
1K
Replies
7
Views
1K
Replies
8
Views
2K
4
Replies
108
Views
7K
Replies
5
Views
1K
Replies
3
Views
1K
Back
Top