One-to-One Function: Definition & Examples

AI Thread Summary
A one-to-one function, or injective function, is defined such that if F(x1) equals F(x2), then x1 must equal x2, ensuring distinct inputs map to distinct outputs. This means that no two different elements in the domain can produce the same element in the co-domain. An example provided illustrates that if f(x1) and f(x2) both equal 3, then x1 and x2 must both equal 1, demonstrating a lack of injectivity. The discussion also highlights that a function is not one-to-one if there exists distinct inputs x1 and x2 that yield the same output. Understanding these principles is crucial for grasping the concept of injective functions.
Nert
Messages
6
Reaction score
0
Hey I was reading Susanna Discrete book and I came across her definition of One-to-One function:

Let F be a function from a set X to a set Y. F is one-to-one (or injective) if, and only if, for all elements x1 and x2 in X,

if F(x1 ) = F(x2 ),then x1 = x2 ,
or, equivalently, if x1 ≠ x2 ,then F(x1) ≠ F(x2).

Symbolically,
F: X → Y is one-to-one ⇔ ∀x 1 ,x 2 ∈ X,if F(x1 ) = F(x2 ) then x1 = x2.

But I am not sure if I fully understand the definition. Here is my interpretation of the definition:

A function is said to be one-to-one if and only if,

if f(x1) and f(x2) are the same then x1=x2 ,

e.g if f(x1)=f(x2)=3, then
x1 = x2 = 1

Since, the co-domain 3 is being pointed by a two non-distinctive domain 1 then it said to be a one-to-one function.
 
Last edited:
Physics news on Phys.org
Nert said:
Hey I was reading Susanna Discrete book and I came across her definition of One-to-One function:

Let F be a function from a set X to a set Y. F is one-to-one (or injective) if, and only if, for all elements x1 and x2 in X,

if F(x1 ) = F(x2 ),then x1 = x2 ,
or, equivalently, if x1 ≠ x2 ,then F(x1) ≠ F(x2).

Symbolically,
F: X → Y is one-to-one ⇔ ∀x 1 ,x 2 ∈ X,if F(x1 ) = F(x2 ) then x1 = x2.

But I am not sure if I fully understand the definition. Here is my interpretation of the definition:

A function is said to be one-to-one if and only if,

if f(x1) and f(x2) are the same then x1=x2 ,

e.g if f(x1)=f(x2)=3, then
x1 = x2 = 1

Since, the co-domain 3 is being pointed by a single domain 1 then it said to be a one-to-one function.

Yes, I think you've got it. You can also think of what happens iff f is not 1-1:

##f \ \ is \ \ not \ \ 1-1 \ \ iff \ \ \exists x_1 \ne x_2 \ \ with \ \ f(x_1) = f(x_2)##

That's a useful way to look at it as well.
 
Yes! Thank you
 
I was reading documentation about the soundness and completeness of logic formal systems. Consider the following $$\vdash_S \phi$$ where ##S## is the proof-system making part the formal system and ##\phi## is a wff (well formed formula) of the formal language. Note the blank on left of the turnstile symbol ##\vdash_S##, as far as I can tell it actually represents the empty set. So what does it mean ? I guess it actually means ##\phi## is a theorem of the formal system, i.e. there is a...
Back
Top